Skip to content

Commit

Permalink
chore: upgrading cosmjs (#352)
Browse files Browse the repository at this point in the history
* chore: upgrading cosmjs

* fix: bigint error type
  • Loading branch information
CalicoNino authored May 13, 2024
1 parent c7b1150 commit 32739a7
Show file tree
Hide file tree
Showing 3 changed files with 162 additions and 124 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,20 @@
"prepare": "husky install"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.31.0",
"@cosmjs/proto-signing": "^0.31.0",
"@cosmjs/stargate": "^0.31.0",
"@cosmjs/tendermint-rpc": "^0.31.0",
"@cosmjs/cosmwasm-stargate": "^0.32.3",
"@cosmjs/proto-signing": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@cosmjs/tendermint-rpc": "^0.32.3",
"bignumber.js": "^9.1.1",
"cross-fetch": "4.0.0",
"graphql": "^16.7.1",
"graphql-ws": "^5.14.0"
},
"peerDependencies": {
"@cosmjs/cosmwasm-stargate": "^0.31.0",
"@cosmjs/proto-signing": "^0.31.0",
"@cosmjs/stargate": "^0.31.0",
"@cosmjs/tendermint-rpc": "^0.31.0",
"@cosmjs/cosmwasm-stargate": "^0.32.3",
"@cosmjs/proto-signing": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@cosmjs/tendermint-rpc": "^0.32.3",
"graphql": "^16.7.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/sdk/tx/event.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ describe("event tests", () => {
transactionHash: "",
txIndex: 0,
code: 0,
gasUsed: 0,
gasWanted: 0,
gasUsed: BigInt(0),
gasWanted: BigInt(0),
msgResponses: [],
})
expect(result).toEqual([eventToMap(wasmEvent)])
Expand Down
Loading

0 comments on commit 32739a7

Please sign in to comment.