Skip to content

Commit

Permalink
Update dependencies for metamask
Browse files Browse the repository at this point in the history
  • Loading branch information
schnetzlerjoe committed May 29, 2024
1 parent 131d136 commit 2202b00
Show file tree
Hide file tree
Showing 7 changed files with 1,515 additions and 1,480 deletions.
2,971 changes: 1,503 additions & 1,468 deletions deploy-web/package-lock.json

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions deploy-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@
"@akashnetwork/akash-api": "^1.3.0",
"@akashnetwork/akashjs": "^0.10.0",
"@auth0/nextjs-auth0": "^3.5.0",
"@cosmjs/encoding": "^0.29.5",
"@cosmjs/stargate": "^0.29.5",
"@cosmos-kit/cosmostation-extension": "^2.6.4",
"@cosmos-kit/keplr": "^2.5.4",
"@cosmos-kit/leap-extension": "^2.6.4",
"@cosmjs/encoding": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@cosmjs/proto-signing": "^0.32.3",
"@cosmos-kit/cosmostation-extension": "^2.11.0",
"@cosmos-kit/keplr": "^2.10.1",
"@cosmos-kit/leap-extension": "^2.11.0",
"@cosmos-kit/cosmos-extension-metamask": "^0.8.0",
"@cosmos-kit/react": "^2.9.20",
"@cosmos-kit/react": "^2.14.1",
"@emotion/cache": "^11.7.1",
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.11.0",
Expand Down
2 changes: 1 addition & 1 deletion deploy-web/public/sw.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion deploy-web/public/sw.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions deploy-web/src/utils/TransactionMessageData.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { networkVersion, networkVersionMarket } from "./constants";
import { BidDto } from "@src/types/deployment";
import { BasicAllowance, MsgGrantAllowance, MsgRevoke, MsgRevokeAllowance } from "./proto/grant";
import { longify } from "@cosmjs/stargate/build/queryclient";
import { protoTypes } from "./proto";
import Long from "long";

Expand Down Expand Up @@ -221,7 +220,7 @@ export class TransactionMessageData {
],
expiration: expiration
? {
seconds: longify(Math.floor(expiration.getTime() / 1_000)),
seconds: Long.fromValue(Math.floor(expiration.getTime() / 1_000)),
nanos: Math.floor((expiration.getTime() % 1_000) * 1_000_000)
}
: undefined
Expand Down

0 comments on commit 2202b00

Please sign in to comment.