Skip to content

Commit

Permalink
chore: upgrading cosmjs (#352) (#353)
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 ad5e4bb commit 2f119c5
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

1 comment on commit 2f119c5

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines Statements Branches Functions
Coverage: 88%
90.29% (1014/1123) 72.2% (304/421) 76.48% (244/319)

Please sign in to comment.