Skip to content

Commit

Permalink
imp: enable wasm queries (#131)
Browse files Browse the repository at this point in the history
* imp: added wasm query type

* imp: added response deserialization

* deps: ran 'cargo update'

* rename: config -> config.toml

* docs: fix linter issues

* ci: updated rust version

* imp: changed test name

* test(e2e): refactored wasm test suite

* imp: ran 'cargo update'

* test: fix

* docs: updated

* deps: updated version to v0.6.1

* docs: updated releases doc

* imp: adding new test

* fix: increased wasmd version

* imp: generated messages

* e2e: test passing

* test: added more tests

* test: added more test case

* imp: removed CodeInfo support

* docs: updated docs
  • Loading branch information
srdtrk authored Jul 21, 2024
1 parent 4a137c4 commit 0c52793
Show file tree
Hide file tree
Showing 22 changed files with 1,516 additions and 1,187 deletions.
File renamed without changes.
3 changes: 2 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@ jobs:
- TestWithOwnerTestSuite/TestOwnerPredefinedAction
- TestWithContractTestSuite/TestSendCosmosMsgs_Ordered_Protobuf
- TestWithContractTestSuite/TestSendCosmosMsgs_Unordered_Protobuf
- TestWithContractTestSuite/TestSendWasmMsgsProtobufEncoding
- TestWithContractTestSuite/TestMigrateOrderedToUnordered
- TestWithContractTestSuite/TestCloseChannel_Protobuf_Unordered
- TestWithContractTestSuite/TestBankAndStargateQueries
- TestWithContractTestSuite/TestStakingQueries
- TestWithWasmTestSuite/TestSendWasmMsgs
- TestWithWasmTestSuite/TestSendWasmQueries
name: ${{ matrix.test }}
runs-on: ubuntu-latest
steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
toolchain: 1.79.0
target: wasm32-unknown-unknown
override: true

Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
toolchain: 1.79.0
override: true

- name: Run unit tests
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
toolchain: 1.79.0
override: true

- name: Run unit tests
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
toolchain: 1.79.0
override: true

- name: Run unit tests
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
toolchain: 1.79.0
override: true

- name: Run unit tests
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
toolchain: 1.79.0
override: true
components: rustfmt, clippy

Expand Down
Loading

0 comments on commit 0c52793

Please sign in to comment.