Skip to content

Commit 6d9b79e

Browse files
committed
feat: Stacks executor route
1 parent bf14e28 commit 6d9b79e

28 files changed

Lines changed: 1940 additions & 270 deletions

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
--workspace sdk/definitions \
4141
--workspace evm/ts \
4242
--workspace solana \
43+
--workspace stacks \
4344
--workspace sui \
4445
--workspace sdk/route
4546
# OIDC authentication is used automatically by npm CLI 11.5.1+

Dockerfile.cli

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ COPY solana/package.json solana/package.json
4848
COPY solana/ts solana/ts
4949
COPY evm/ts evm/ts
5050
COPY solana/tsconfig.*.json solana/
51+
COPY stacks/ts stacks/ts
5152
COPY sui/ts sui/ts
5253
COPY cli/package.json cli/package.json
5354
COPY cli/package-lock.json cli/package-lock.json

cli/package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,13 @@
4242
"@wormhole-foundation/sdk-solana": "^4.4.0",
4343
"@wormhole-foundation/sdk-solana-core": "^4.4.0"
4444
},
45-
"@wormhole-foundation/sdk-sui-ntt": {
45+
"@wormhole-foundation/sdk-stacks-ntt": {
46+
"@wormhole-foundation/sdk-base": "^4.4.0",
47+
"@wormhole-foundation/sdk-definitions": "^4.4.0",
48+
"@wormhole-foundation/sdk-stacks": "^4.4.0",
49+
"@wormhole-foundation/sdk-stacks-core": "^4.4.0"
50+
},
51+
"@wormhole-foundation/sdk-sui-ntt": {
4652
"@wormhole-foundation/sdk-base": "^4.4.0",
4753
"@wormhole-foundation/sdk-definitions": "^4.4.0",
4854
"@wormhole-foundation/sdk-sui": "^4.4.0",

evm/ts/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
Evm Ntt Implementation
22
----------------------
33

4-
5-
4+
> **Note:** These are low-level protocol classes. If you are trying to perform a transfer, use the higher-level Route abstractions such as [`NttExecutorRoute`](../../sdk/route/src/executor/executor.ts) instead.
65
76

87
# Building

evm/ts/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
}
6969
},
7070
"peerDependencies": {
71-
"@wormhole-foundation/sdk-base": "^4.4.0",
72-
"@wormhole-foundation/sdk-definitions": "^4.4.0",
73-
"@wormhole-foundation/sdk-evm": "^4.4.0",
74-
"@wormhole-foundation/sdk-evm-core": "^4.4.0"
71+
"@wormhole-foundation/sdk-base": "^4.6.0",
72+
"@wormhole-foundation/sdk-definitions": "^4.6.0",
73+
"@wormhole-foundation/sdk-evm": "^4.6.0",
74+
"@wormhole-foundation/sdk-evm-core": "^4.6.0"
7575
}
7676
}

0 commit comments

Comments
 (0)