Skip to content

Commit

Permalink
sdk: bump wormhole-sdk version
Browse files Browse the repository at this point in the history
  • Loading branch information
kev1n-peters committed Aug 9, 2024
1 parent dcd0ac3 commit 7c6ece0
Show file tree
Hide file tree
Showing 9 changed files with 207 additions and 208 deletions.
16 changes: 8 additions & 8 deletions evm/ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@
"test": "jest --config ./jest.config.ts"
},
"dependencies": {
"@wormhole-foundation/sdk-base": "^0.9.1",
"@wormhole-foundation/sdk-definitions": "^0.9.1",
"@wormhole-foundation/sdk-base": "^0.10.0",
"@wormhole-foundation/sdk-definitions": "^0.10.0",
"@wormhole-foundation/sdk-definitions-ntt": "0.1.0-beta.0",
"@wormhole-foundation/sdk-evm": "^0.9.1",
"@wormhole-foundation/sdk-evm-core": "^0.9.1",
"@wormhole-foundation/sdk-evm": "^0.10.0",
"@wormhole-foundation/sdk-evm-core": "^0.10.0",
"ethers": "^6.5.1"
},
"peerDependencies": {
"@wormhole-foundation/sdk-definitions-ntt": "0.1.0-beta.0",
"@wormhole-foundation/sdk-base": "^0.9.1",
"@wormhole-foundation/sdk-definitions": "^0.9.1",
"@wormhole-foundation/sdk-evm": "^0.9.1",
"@wormhole-foundation/sdk-evm-core": "^0.9.1"
"@wormhole-foundation/sdk-base": "^0.10.0",
"@wormhole-foundation/sdk-definitions": "^0.10.0",
"@wormhole-foundation/sdk-evm": "^0.10.0",
"@wormhole-foundation/sdk-evm-core": "^0.10.0"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
Expand Down
360 changes: 180 additions & 180 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": "tsx setSdkVersion.ts"
},
"devDependencies": {
"@wormhole-foundation/sdk": "^0.9.1",
"@wormhole-foundation/sdk": "^0.10.0",
"@solana/spl-token": "0.3.9",
"@solana/web3.js": "1.91.7",
"@types/jest": "^29.5.12",
Expand Down
8 changes: 4 additions & 4 deletions sdk/definitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@
"test": "jest --config ./jest.config.ts"
},
"dependencies": {
"@wormhole-foundation/sdk-base": "^0.9.1",
"@wormhole-foundation/sdk-definitions": "^0.9.1"
"@wormhole-foundation/sdk-base": "^0.10.0",
"@wormhole-foundation/sdk-definitions": "^0.10.0"
},
"peerDependencies": {
"@wormhole-foundation/sdk-base": "^0.9.1",
"@wormhole-foundation/sdk-definitions": "^0.9.1"
"@wormhole-foundation/sdk-base": "^0.10.0",
"@wormhole-foundation/sdk-definitions": "^0.10.0"
},
"type": "module"
}
2 changes: 1 addition & 1 deletion sdk/examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"tsx": "^4.7.2"
},
"dependencies": {
"@wormhole-foundation/sdk": "^0.9.1",
"@wormhole-foundation/sdk": "^0.10.0",
"@wormhole-foundation/sdk-definitions-ntt": "0.1.0-beta.0",
"@wormhole-foundation/sdk-evm-ntt": "0.1.0-beta.0",
"@wormhole-foundation/sdk-solana-ntt": "0.1.0-beta.0",
Expand Down
4 changes: 2 additions & 2 deletions sdk/route/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
"@wormhole-foundation/sdk-definitions-ntt": "0.1.0-beta.0",
"@wormhole-foundation/sdk-solana-ntt": "0.1.0-beta.0",
"@wormhole-foundation/sdk-evm-ntt": "0.1.0-beta.0",
"@wormhole-foundation/sdk-connect": "^0.9.1"
"@wormhole-foundation/sdk-connect": "^0.10.0"
},
"peerDependencies": {
"@wormhole-foundation/sdk-connect": "^0.9.1",
"@wormhole-foundation/sdk-connect": "^0.10.0",
"@wormhole-foundation/sdk-definitions-ntt": "0.1.0-beta.0",
"@wormhole-foundation/sdk-solana-ntt": "0.1.0-beta.0",
"@wormhole-foundation/sdk-evm-ntt": "0.1.0-beta.0"
Expand Down
3 changes: 1 addition & 2 deletions sdk/route/src/automatic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ export class NttAutomaticRoute<N extends Network>
extends routes.AutomaticRoute<N, Op, Vp, R>
implements routes.StaticRouteMethods<typeof NttAutomaticRoute>
{
override NATIVE_GAS_DROPOFF_SUPPORTED: boolean = true;
override IS_AUTOMATIC: boolean = true;
static NATIVE_GAS_DROPOFF_SUPPORTED: boolean = true;

// @ts-ignore
// Since we set the config on the static class, access it with this param
Expand Down
4 changes: 2 additions & 2 deletions sdk/route/src/manual.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export class NttManualRoute<N extends Network>
extends routes.FinalizableRoute<N, Op, Vp, R>
implements routes.StaticRouteMethods<typeof NttManualRoute>
{
override NATIVE_GAS_DROPOFF_SUPPORTED: boolean = false;
override IS_AUTOMATIC: boolean = false;
static NATIVE_GAS_DROPOFF_SUPPORTED: boolean = false;
static IS_AUTOMATIC: boolean = false;

// @ts-ignore
// Since we set the config on the static class, access it with this param
Expand Down
16 changes: 8 additions & 8 deletions solana/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,16 @@
"@solana/spl-token": "0.4.0",
"@solana/web3.js": "1.91.7",
"bn.js": "5.2.1",
"@wormhole-foundation/sdk-base": "^0.9.1",
"@wormhole-foundation/sdk-definitions": "^0.9.1",
"@wormhole-foundation/sdk-solana": "^0.9.1",
"@wormhole-foundation/sdk-solana-core": "^0.9.1"
"@wormhole-foundation/sdk-base": "^0.10.0",
"@wormhole-foundation/sdk-definitions": "^0.10.0",
"@wormhole-foundation/sdk-solana": "^0.10.0",
"@wormhole-foundation/sdk-solana-core": "^0.10.0"
},
"peerDependencies": {
"@wormhole-foundation/sdk-base": "^0.9.1",
"@wormhole-foundation/sdk-definitions": "^0.9.1",
"@wormhole-foundation/sdk-solana": "^0.9.1",
"@wormhole-foundation/sdk-solana-core": "^0.9.1",
"@wormhole-foundation/sdk-base": "^0.10.0",
"@wormhole-foundation/sdk-definitions": "^0.10.0",
"@wormhole-foundation/sdk-solana": "^0.10.0",
"@wormhole-foundation/sdk-solana-core": "^0.10.0",
"@wormhole-foundation/sdk-definitions-ntt": "0.1.0-beta.0"
},
"type": "module",
Expand Down

0 comments on commit 7c6ece0

Please sign in to comment.