Skip to content

Commit c1365d7

Browse files
authored
Packaging: export tokens in conditional export (#457)
1 parent 0a690b1 commit c1365d7

File tree

12 files changed

+183
-1168
lines changed

12 files changed

+183
-1168
lines changed

connect/package.json

+7
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
}
3131
}
3232
},
33+
"typesVersions": {
34+
"*": {
35+
"*": [
36+
"./dist/cjs/index.d.ts"
37+
]
38+
}
39+
},
3340
"files": [
3441
"dist/esm",
3542
"dist/cjs"

connect/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ export * as routes from "./routes/index.js";
1616

1717
// Re-export from core packages
1818
export * from "@wormhole-foundation/sdk-base";
19+
export * as tokens from "@wormhole-foundation/sdk-base/tokens";
20+
1921
export * from "@wormhole-foundation/sdk-definitions";
2022
export * as testing from "@wormhole-foundation/sdk-definitions/testing";

connect/src/routes/portico/automatic.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
import type { StaticRouteMethods } from "../route.js";
2+
import { AutomaticRoute } from "../route.js";
3+
import type {
4+
Quote,
5+
QuoteResult,
6+
Receipt,
7+
TransferParams,
8+
ValidatedTransferParams,
9+
ValidationResult,
10+
} from "../types.js";
111
import type {
212
AttestationReceipt,
313
Chain,
@@ -13,6 +23,7 @@ import {
1323
TokenTransfer,
1424
TransferState,
1525
Wormhole,
26+
amount,
1627
canonicalAddress,
1728
chainToPlatform,
1829
contracts,
@@ -22,18 +33,7 @@ import {
2233
resolveWrappedToken,
2334
signSendWait,
2435
tokens,
25-
amount,
2636
} from "./../../index.js";
27-
import type { StaticRouteMethods } from "../route.js";
28-
import { AutomaticRoute } from "../route.js";
29-
import type {
30-
Quote,
31-
QuoteResult,
32-
Receipt,
33-
TransferParams,
34-
ValidatedTransferParams,
35-
ValidationResult,
36-
} from "../types.js";
3737

3838
export const SLIPPAGE_BPS = 15n; // 0.15%
3939
export const BPS_PER_HUNDRED_PERCENT = 10000n;

connect/src/routes/token.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import type { Chain, Network } from "@wormhole-foundation/sdk-base";
2-
import { tokens } from "@wormhole-foundation/sdk-base";
2+
import { filters } from "@wormhole-foundation/sdk-base/tokens";
3+
import { type TokenSymbol } from "@wormhole-foundation/sdk-base/tokens";
34
import type { ChainContext, TokenId } from "@wormhole-foundation/sdk-definitions";
45
import { canonicalAddress, isNative } from "@wormhole-foundation/sdk-definitions";
56
import { Wormhole } from "../wormhole.js";
67

78
export interface TokenDetails {
89
id: TokenId;
910
decimals: number;
10-
symbol?: tokens.TokenSymbol;
11+
symbol?: TokenSymbol;
1112
wrapped?: TokenId;
1213
}
1314

@@ -34,7 +35,7 @@ export async function getTokenDetails<N extends Network>(
3435
const address = canonicalAddress(token);
3536

3637
const details = chain.config.tokenMap
37-
? tokens.filters.byAddress(chain.config.tokenMap!, address)
38+
? filters.byAddress(chain.config.tokenMap!, address)
3839
: undefined;
3940

4041
const symbol = details ? details.symbol : undefined;

core/base/package.json

+37
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,43 @@
2626
"types": "./dist/cjs/index.d.ts",
2727
"default": "./dist/cjs/index.js"
2828
}
29+
},
30+
"./constants":{
31+
"import": {
32+
"types": "./dist/esm/constants/index.d.ts",
33+
"default": "./dist/esm/constants/index.js"
34+
},
35+
"require": {
36+
"types": "./dist/cjs/constants/index.d.ts",
37+
"default": "./dist/cjs/constants/index.js"
38+
}
39+
},
40+
"./tokens":{
41+
"import": {
42+
"types": "./dist/esm/constants/tokens/index.d.ts",
43+
"default": "./dist/esm/constants/tokens/index.js"
44+
},
45+
"require": {
46+
"types": "./dist/cjs/constants/tokens/index.d.ts",
47+
"default": "./dist/cjs/constants/tokens/index.js"
48+
}
49+
},
50+
"./contracts":{
51+
"import": {
52+
"types": "./dist/esm/constants/contracts/index.d.ts",
53+
"default": "./dist/esm/constants/contracts/index.js"
54+
},
55+
"require": {
56+
"types": "./dist/cjs/constants/contracts/index.d.ts",
57+
"default": "./dist/cjs/constants/contracts/index.js"
58+
}
59+
}
60+
},
61+
"typesVersions": {
62+
"*": {
63+
"*": [
64+
"./dist/cjs/index.d.ts"
65+
]
2966
}
3067
},
3168
"files": [

core/base/src/constants/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ export * from "./networks.js";
22
export * from "./chains.js";
33
export * from "./platforms.js";
44

5-
export * as tokens from "./tokens/index.js";
6-
75
export * as platform from "./platforms.js";
86
export * as chain from "./chains.js";
97
export * as network from "./networks.js";

core/base/src/constants/tokens/index.ts

+15-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
import type { Chain } from '../chains.js';
2-
import type { Network } from '../networks.js';
3-
4-
//import { mainnetTokenDetails } from './mainnetTokenDetails.js';
5-
//import { testnetTokenDetails } from './testnetTokenDetails.js';
6-
7-
import { mainnetChainTokens } from './mainnet.js';
8-
import { testnetChainTokens } from './testnet.js';
9-
import type { TokenSymbol, TokenKey, ChainTokens, Token } from './types.js';
10-
11-
export type {TokenKey, TokenSymbol, ChainTokens, Token, TokenConst, TokenExtraDetails} from './types.js';
1+
import type { Chain } from "../chains.js";
2+
import type { Network } from "../networks.js";
3+
4+
import { mainnetChainTokens } from "./mainnet.js";
5+
import { testnetChainTokens } from "./testnet.js";
6+
import type { TokenSymbol, TokenKey, ChainTokens, Token } from "./types.js";
7+
8+
export type {
9+
TokenKey,
10+
TokenSymbol,
11+
ChainTokens,
12+
Token,
13+
TokenConst,
14+
TokenExtraDetails,
15+
} from "./types.js";
1216

1317
export function getTokenMap<N extends Network, C extends Chain>(
1418
network: N,

0 commit comments

Comments
 (0)