Skip to content

Commit fc8e5a4

Browse files
authored
sdk/sui: fix for rpc returning Currency<T> instead of CoinMedata<T> (#714)
* sdk/sui: fix for rpc returning Currency<T> instead of CoinMedata<T> The sui rpc now returns Currency<T> instead of CoinMetadata<T>. Sui NTT contracts still require us to pass the CoinMetadata object ID. * fix: resolve @types/jest version conflict in CI * sdk/sui: fix tests
1 parent 8c73598 commit fc8e5a4

File tree

13 files changed

+791
-1161
lines changed

13 files changed

+791
-1161
lines changed

cli/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,29 @@
2424
},
2525
"overrides": {
2626
"@wormhole-foundation/sdk-definitions-ntt": {
27-
"@wormhole-foundation/sdk-base": "^3.8.5",
28-
"@wormhole-foundation/sdk-definitions": "^3.8.5"
27+
"@wormhole-foundation/sdk-base": "^3.8.8",
28+
"@wormhole-foundation/sdk-definitions": "^3.8.8"
2929
},
3030
"@wormhole-foundation/sdk-evm-ntt": {
31-
"@wormhole-foundation/sdk-base": "^3.8.5",
32-
"@wormhole-foundation/sdk-definitions": "^3.8.5",
33-
"@wormhole-foundation/sdk-evm": "^3.8.5",
34-
"@wormhole-foundation/sdk-evm-core": "^3.8.5"
31+
"@wormhole-foundation/sdk-base": "^3.8.8",
32+
"@wormhole-foundation/sdk-definitions": "^3.8.8",
33+
"@wormhole-foundation/sdk-evm": "^3.8.8",
34+
"@wormhole-foundation/sdk-evm-core": "^3.8.8"
3535
},
3636
"@wormhole-foundation/sdk-route-ntt": {
37-
"@wormhole-foundation/sdk-connect": "^3.8.5"
37+
"@wormhole-foundation/sdk-connect": "^3.8.8"
3838
},
3939
"@wormhole-foundation/sdk-solana-ntt": {
40-
"@wormhole-foundation/sdk-base": "^3.8.5",
41-
"@wormhole-foundation/sdk-definitions": "^3.8.5",
42-
"@wormhole-foundation/sdk-solana": "^3.8.5",
43-
"@wormhole-foundation/sdk-solana-core": "^3.8.5"
40+
"@wormhole-foundation/sdk-base": "^3.8.8",
41+
"@wormhole-foundation/sdk-definitions": "^3.8.8",
42+
"@wormhole-foundation/sdk-solana": "^3.8.8",
43+
"@wormhole-foundation/sdk-solana-core": "^3.8.8"
4444
},
4545
"@wormhole-foundation/sdk-sui-ntt": {
46-
"@wormhole-foundation/sdk-base": "^3.8.5",
47-
"@wormhole-foundation/sdk-definitions": "^3.8.5",
48-
"@wormhole-foundation/sdk-sui": "^3.8.5",
49-
"@wormhole-foundation/sdk-sui-core": "^3.8.5"
46+
"@wormhole-foundation/sdk-base": "^3.8.8",
47+
"@wormhole-foundation/sdk-definitions": "^3.8.8",
48+
"@wormhole-foundation/sdk-sui": "^3.8.8",
49+
"@wormhole-foundation/sdk-sui-core": "^3.8.8"
5050
}
5151
}
5252
}

evm/ts/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@
4848
"ethers": "^6.5.1"
4949
},
5050
"peerDependencies": {
51-
"@wormhole-foundation/sdk-base": "^3.8.5",
52-
"@wormhole-foundation/sdk-definitions": "^3.8.5",
53-
"@wormhole-foundation/sdk-evm": "^3.8.5",
54-
"@wormhole-foundation/sdk-evm-core": "^3.8.5"
51+
"@wormhole-foundation/sdk-base": "^3.8.8",
52+
"@wormhole-foundation/sdk-definitions": "^3.8.8",
53+
"@wormhole-foundation/sdk-evm": "^3.8.8",
54+
"@wormhole-foundation/sdk-evm-core": "^3.8.8"
5555
},
5656
"devDependencies": {
5757
"@typechain/ethers-v6": "^0.5.1",

0 commit comments

Comments
 (0)