Skip to content

Commit ecb8b3f

Browse files
committed
Feature: Native Token Transfers (NTT) integration
Addresses #1585
1 parent 3bc7931 commit ecb8b3f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+14613
-86
lines changed

builder/src/consts.ts

+14
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,20 @@ export const ROUTE_INFOS: RouteInfo[] = [
253253
title: "wstETH Bridge",
254254
description: "Permissionlessly transfer wstETH cross-chain with Wormhole.",
255255
},
256+
{
257+
key: "nttManual",
258+
title: "Native Token Transfer",
259+
description:
260+
"Permissionlessly transfer native tokens cross-chain with Wormhole.",
261+
link: "https://github.com/wormhole-foundation/example-native-token-transfers/blob/main/README.md",
262+
},
263+
{
264+
key: "nttRelay",
265+
title: "Native Token Transfer Automatic Redeems",
266+
description:
267+
"Automatic redeems for Native Token Transfers powered by xLabs.",
268+
link: "https://github.com/wormhole-foundation/example-native-token-transfers/blob/main/README.md",
269+
},
256270
];
257271
export const ROUTES = ROUTE_INFOS.map((r) => r.key);
258272

package-lock.json

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

sdk/src/config/TESTNET.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ const TESTNET_CONFIG: WormholeConfig = {
397397
klaytn: 'https://rpc.ankr.com/klaytn_testnet',
398398
sepolia: 'https://rpc.ankr.com/eth_sepolia',
399399
arbitrum_sepolia: 'https://sepolia-rollup.arbitrum.io/rpc',
400-
base_sepolia: 'https://sepolia.base.org',
400+
base_sepolia: 'https://base-sepolia-rpc.publicnode.com',
401401
optimism_sepolia: 'https://sepolia.optimism.io',
402402
},
403403
rest: {

wormhole-connect/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
],
1818
"dependencies": {
1919
"@certusone/wormhole-sdk": "^0.10.10",
20+
"@coral-xyz/anchor": "^0.29.0",
2021
"@cosmjs/cosmwasm-stargate": "^0.31.3",
2122
"@cosmjs/stargate": "^0.31.3",
2223
"@cosmjs/tendermint-rpc": "^0.31.3",
@@ -66,7 +67,8 @@
6667
"prettier": "prettier --write ./src",
6768
"analyze": "NODE_ENV=production NODE_OPTIONS=--max-old-space-size=6144 vite-bundle-visualizer",
6869
"test": "jest ./tests/*.test.ts --detectOpenHandles",
69-
"checksdn": "npx tsx scripts/ofac/checkSdnListForUpdates.ts"
70+
"checksdn": "npx tsx scripts/ofac/checkSdnListForUpdates.ts",
71+
"preview": "vite preview"
7072
},
7173
"eslintConfig": {
7274
"extends": [

wormhole-connect/src/AppRouter.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import { setRoute } from './store/router';
1919
import { clearWallets } from './store/wallet';
2020
import { clearPorticoBridge } from 'store/porticoBridge';
2121
import { useExternalSearch } from 'hooks/useExternalSearch';
22+
import { clearNtt } from 'store/ntt';
23+
import internalConfig from 'config';
2224

2325
const useStyles = makeStyles()((theme: any) => ({
2426
appContent: {
@@ -71,6 +73,8 @@ function AppRouter({ config }: Props) {
7173
if (prevRoute === redeemRoute && route !== redeemRoute) {
7274
dispatch(clearRedeem());
7375
dispatch(clearWallets());
76+
dispatch(clearNtt());
77+
internalConfig.wh.registerProviders(); // reset providers that may have been set during transfer
7478
}
7579
// reset transfer state on leave
7680
if (prevRoute === bridgeRoute && route !== bridgeRoute) {

wormhole-connect/src/config/routes.ts

+16
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,20 @@ export const RoutesConfig: {
9191
icon: WormholeIcon,
9292
pendingMessage: 'Waiting for Wormhole network consensus . . .',
9393
},
94+
[Route.NttManual]: {
95+
route: Route.NttManual,
96+
name: 'Native Token Transfer',
97+
providedBy: 'Wormhole',
98+
link: 'https://wormhole.com/',
99+
icon: WormholeIcon,
100+
pendingMessage: 'Waiting for Wormhole network consensus . . .',
101+
},
102+
[Route.NttRelay]: {
103+
route: Route.NttRelay,
104+
name: 'Native Token Transfer',
105+
providedBy: 'xLabs',
106+
link: 'https://xlabs.xyz',
107+
icon: XLabsIcon,
108+
pendingMessage: 'Waiting for Wormhole network consensus . . .',
109+
},
94110
};

wormhole-connect/src/config/testnet/gasEstimates.ts

+35
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,13 @@ export const TESTNET_GAS_ESTIMATES: GasEstimates = {
118118
sendToken: 5000,
119119
claim: 5000,
120120
},
121+
[Route.NttManual]: {
122+
sendToken: 15000,
123+
claim: 25000,
124+
},
125+
[Route.NttRelay]: {
126+
sendToken: 15000,
127+
},
121128
},
122129
sui: {
123130
[Route.Bridge]: {
@@ -248,27 +255,55 @@ export const TESTNET_GAS_ESTIMATES: GasEstimates = {
248255
sendToken: 150000,
249256
claim: 200000,
250257
},
258+
[Route.NttManual]: {
259+
sendToken: 200000,
260+
claim: 250000,
261+
},
262+
[Route.NttRelay]: {
263+
sendToken: 450000,
264+
},
251265
},
252266
arbitrum_sepolia: {
253267
[Route.Bridge]: {
254268
sendNative: 100000,
255269
sendToken: 150000,
256270
claim: 200000,
257271
},
272+
[Route.NttManual]: {
273+
sendToken: 200000,
274+
claim: 250000,
275+
},
276+
[Route.NttRelay]: {
277+
sendToken: 450000,
278+
},
258279
},
259280
base_sepolia: {
260281
[Route.Bridge]: {
261282
sendNative: 100000,
262283
sendToken: 150000,
263284
claim: 200000,
264285
},
286+
[Route.NttManual]: {
287+
sendToken: 200000,
288+
claim: 250000,
289+
},
290+
[Route.NttRelay]: {
291+
sendToken: 450000,
292+
},
265293
},
266294
optimism_sepolia: {
267295
[Route.Bridge]: {
268296
sendNative: 100000,
269297
sendToken: 150000,
270298
claim: 200000,
271299
},
300+
[Route.NttManual]: {
301+
sendToken: 200000,
302+
claim: 250000,
303+
},
304+
[Route.NttRelay]: {
305+
sendToken: 450000,
306+
},
272307
},
273308
injective: {
274309
[Route.Bridge]: {

wormhole-connect/src/config/testnet/tokens.ts

+109
Original file line numberDiff line numberDiff line change
@@ -2232,4 +2232,113 @@ export const TESTNET_TOKENS: TokensConfig = {
22322232
default: 18,
22332233
},
22342234
},
2235+
TEST_NTTsepolia: {
2236+
key: 'TEST_NTTsepolia',
2237+
symbol: 'TEST_NTT',
2238+
nativeChain: 'sepolia',
2239+
icon: Icon.NTT,
2240+
tokenId: {
2241+
chain: 'sepolia',
2242+
address: '0x1d30E78B7C7fbbcef87ae6e97B5389b2e470CA4a',
2243+
},
2244+
coinGeckoId: '',
2245+
color: '#2774CA',
2246+
decimals: {
2247+
Ethereum: 18,
2248+
default: 8,
2249+
},
2250+
ntt: {
2251+
groupId: 'test_ntt',
2252+
nttManager: '0xB231aD95f2301bc82eA44c515001F0F746D637e0',
2253+
wormholeTransceiver: '0x1fDC902e30b188FD2BA976B421Cb179943F57896',
2254+
},
2255+
},
2256+
TEST_NTTarbitrum_sepolia: {
2257+
key: 'TEST_NTTarbitrum_sepolia',
2258+
symbol: 'TEST_NTT',
2259+
nativeChain: 'arbitrum_sepolia',
2260+
icon: Icon.NTT,
2261+
tokenId: {
2262+
chain: 'arbitrum_sepolia',
2263+
address: '0x84A1Cb660B19eB0063EE5FD377eC14AAe3364d74',
2264+
},
2265+
coinGeckoId: '',
2266+
color: '#2774CA',
2267+
decimals: {
2268+
Ethereum: 18,
2269+
default: 8,
2270+
},
2271+
ntt: {
2272+
groupId: 'test_ntt',
2273+
nttManager: '0xEec94CD3083e067398256a79CcA7e740C5c8ef81',
2274+
wormholeTransceiver: '0x0E24D17D7467467b39Bf64A9DFf88776Bd6c74d7',
2275+
},
2276+
},
2277+
TEST_NTTbase_sepolia: {
2278+
key: 'TEST_NTTbase_sepolia',
2279+
symbol: 'TEST_NTT',
2280+
nativeChain: 'base_sepolia',
2281+
icon: Icon.NTT,
2282+
tokenId: {
2283+
chain: 'base_sepolia',
2284+
address: '0x7f430D4e7939D994C0955A01FC75D9DE33F12D11',
2285+
},
2286+
coinGeckoId: '',
2287+
color: '#2774CA',
2288+
decimals: {
2289+
Ethereum: 18,
2290+
default: 8,
2291+
},
2292+
ntt: {
2293+
groupId: 'test_ntt',
2294+
nttManager: '0xB03b030b2f5B40819Df76467d67eD1C85Ff66fAD',
2295+
wormholeTransceiver: '0x1e072169541f1171e427Aa44B5fd8924BEE71b0e',
2296+
},
2297+
},
2298+
TEST_NTToptimism_sepolia: {
2299+
key: 'TEST_NTToptimism_sepolia',
2300+
symbol: 'TEST_NTT',
2301+
nativeChain: 'optimism_sepolia',
2302+
icon: Icon.NTT,
2303+
tokenId: {
2304+
chain: 'optimism_sepolia',
2305+
address: '0x0e15979a7a1eFAEf20312CA45A59eb141bF7E340',
2306+
},
2307+
coinGeckoId: '',
2308+
color: '#2774CA',
2309+
decimals: {
2310+
Ethereum: 18,
2311+
default: 8,
2312+
},
2313+
ntt: {
2314+
groupId: 'test_ntt',
2315+
nttManager: '0x7f430D4e7939D994C0955A01FC75D9DE33F12D11',
2316+
wormholeTransceiver: '0x41265eb2863bf0238081F6AeefeF73549C82C3DD',
2317+
},
2318+
},
2319+
TEST_NTTsolana: {
2320+
key: 'TEST_NTTsolana',
2321+
symbol: 'TEST_NTT',
2322+
nativeChain: 'solana',
2323+
icon: Icon.NTT,
2324+
tokenId: {
2325+
chain: 'solana',
2326+
address: '87r5ZS91Q2pQbFTvvneqs7y7mbtegtqMt4LDAS4g23Ax',
2327+
},
2328+
coinGeckoId: '',
2329+
color: '#2774CA',
2330+
decimals: {
2331+
Solana: 9,
2332+
default: 8,
2333+
},
2334+
ntt: {
2335+
groupId: 'test_ntt',
2336+
nttManager: 'nTTh3bZ5Aer6xboWZe39RDEft4MeVxSQ8D1EYAVLZw9',
2337+
// The wormhole transceiver is baked into the Solana NTT contract.
2338+
// If the transceiver is split into a separate contract, this address
2339+
// and route code should be updated to support the new structure.
2340+
wormholeTransceiver: 'nTTh3bZ5Aer6xboWZe39RDEft4MeVxSQ8D1EYAVLZw9',
2341+
solanaQuoter: 'NqTdGLLL6b6bFo7YESNEezocgF8onH5cst5EdH791en',
2342+
},
2343+
},
22352344
};

wormhole-connect/src/config/types.ts

+9
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export enum Icon {
4141
'PYTH',
4242
'INJ',
4343
'KLAY',
44+
'NTT',
4445
}
4546

4647
export enum Route {
@@ -53,6 +54,8 @@ export enum Route {
5354
TBTC = 'tbtc',
5455
ETHBridge = 'ethBridge',
5556
wstETHBridge = 'wstETHBridge',
57+
NttManual = 'nttManual',
58+
NttRelay = 'nttRelay',
5659
}
5760

5861
export type SupportedRoutes = keyof typeof Route;
@@ -230,6 +233,12 @@ export type TokenConfig = {
230233
decimals: number;
231234
};
232235
};
236+
ntt?: {
237+
groupId: string;
238+
nttManager: string;
239+
wormholeTransceiver: string;
240+
solanaQuoter?: string;
241+
};
233242
};
234243

235244
export type TokensConfig = { [key: string]: TokenConfig };

0 commit comments

Comments
 (0)