Skip to content

Commit 66c6de8

Browse files
committed
fix sdk version
1 parent 9b3791e commit 66c6de8

File tree

8 files changed

+186
-180
lines changed

8 files changed

+186
-180
lines changed

evm/ts/package.json

+4-4
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": "^1.0.2-alpha.0",
52-
"@wormhole-foundation/sdk-definitions": "^1.0.2-alpha.0",
53-
"@wormhole-foundation/sdk-evm": "^1.0.2-alpha.0",
54-
"@wormhole-foundation/sdk-evm-core": "^1.0.2-alpha.0"
51+
"@wormhole-foundation/sdk-base": "^1.1.2-alpha.0",
52+
"@wormhole-foundation/sdk-definitions": "^1.1.2-alpha.0",
53+
"@wormhole-foundation/sdk-evm": "^1.1.2-alpha.0",
54+
"@wormhole-foundation/sdk-evm-core": "^1.1.2-alpha.0"
5555
},
5656
"devDependencies": {
5757
"@typechain/ethers-v6": "^0.5.1",

package-lock.json

+172-165
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@solana/web3.js": "^1.95.2",
2222
"@types/jest": "^29.5.12",
2323
"@types/node": "^20.12.2",
24-
"@wormhole-foundation/sdk": "^1.0.2-alpha.0",
24+
"@wormhole-foundation/sdk": "^1.1.2-alpha.0",
2525
"@wormhole-foundation/wormchain-sdk": "^0.0.1",
2626
"ethers": "^6.5.1",
2727
"ts-jest": "^29.1.2",

sdk/definitions/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
"test": "jest --config ./jest.config.ts"
5050
},
5151
"peerDependencies": {
52-
"@wormhole-foundation/sdk-base": "^1.0.2-alpha.0",
53-
"@wormhole-foundation/sdk-definitions": "^1.0.2-alpha.0"
52+
"@wormhole-foundation/sdk-base": "^1.1.2-alpha.0",
53+
"@wormhole-foundation/sdk-definitions": "^1.1.2-alpha.0"
5454
},
5555
"type": "module"
5656
}

sdk/definitions/src/layouts/transfer.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import {
22
CustomConversion,
33
Layout,
4-
LayoutItem,
54
LayoutToType,
65
} from "@wormhole-foundation/sdk-base";
76
import { layoutItems } from "@wormhole-foundation/sdk-definitions";
@@ -47,7 +46,7 @@ const optionalAdditionalPayloadItem = {
4746
return new Uint8Array();
4847
},
4948
} satisfies CustomConversion<Uint8Array, Uint8Array>,
50-
} as const satisfies LayoutItem;
49+
} as const satisfies Layout;
5150

5251
export type NativeTokenTransfer = LayoutToType<
5352
typeof nativeTokenTransferLayout

sdk/examples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"tsx": "^4.7.2"
3333
},
3434
"dependencies": {
35-
"@wormhole-foundation/sdk": "^1.0.2-alpha.0",
35+
"@wormhole-foundation/sdk": "^1.1.2-alpha.0",
3636
"@wormhole-foundation/sdk-definitions-ntt": "0.5.0",
3737
"@wormhole-foundation/sdk-evm-ntt": "0.5.0",
3838
"@wormhole-foundation/sdk-solana-ntt": "0.5.0",

sdk/route/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@wormhole-foundation/sdk-evm-ntt": "0.5.0"
5151
},
5252
"peerDependencies": {
53-
"@wormhole-foundation/sdk-connect": "^1.0.2-alpha.0"
53+
"@wormhole-foundation/sdk-connect": "^1.1.2-alpha.0"
5454
},
5555
"type": "module",
5656
"exports": {

solana/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
"@wormhole-foundation/sdk-definitions-ntt": "0.5.0"
5858
},
5959
"peerDependencies": {
60-
"@wormhole-foundation/sdk-base": "^1.0.2-alpha.0",
61-
"@wormhole-foundation/sdk-definitions": "^1.0.2-alpha.0",
62-
"@wormhole-foundation/sdk-solana": "^1.0.2-alpha.0",
63-
"@wormhole-foundation/sdk-solana-core": "^1.0.2-alpha.0"
60+
"@wormhole-foundation/sdk-base": "^1.1.2-alpha.0",
61+
"@wormhole-foundation/sdk-definitions": "^1.1.2-alpha.0",
62+
"@wormhole-foundation/sdk-solana": "^1.1.2-alpha.0",
63+
"@wormhole-foundation/sdk-solana-core": "^1.1.2-alpha.0"
6464
},
6565
"type": "module",
6666
"exports": {

0 commit comments

Comments
 (0)