@funkit/chains 1.1.0 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,301 +1,2 @@
1
- import { type Chain } from 'viem/chains';
2
- import { ETHEREAL_CHAIN_ID, HYPERCORE_CHAIN_ID, HYPER_EVM_CHAIN_ID, LIGHTER_CHAIN_ID, MONAD_CHAIN_ID, SOLANA_MAINNET_CHAIN_ID } from './chainId';
3
- export * from './chainId';
4
- export declare const hyperEvmChain: {
5
- id: typeof HYPER_EVM_CHAIN_ID;
6
- name: string;
7
- nativeCurrency: {
8
- name: string;
9
- symbol: string;
10
- decimals: number;
11
- };
12
- rpcUrls: {
13
- default: {
14
- http: string[];
15
- wss: string[];
16
- };
17
- };
18
- blockExplorers: {
19
- default: {
20
- name: string;
21
- url: string;
22
- apiUrl: string;
23
- };
24
- };
25
- contracts: {
26
- ensRegistry: {
27
- address: `0x${string}`;
28
- };
29
- ensUniversalResolver: {
30
- address: `0x${string}`;
31
- blockCreated: number;
32
- };
33
- multicall3: {
34
- address: `0x${string}`;
35
- blockCreated: number;
36
- };
37
- };
38
- };
39
- export declare const etherealChain: {
40
- id: typeof ETHEREAL_CHAIN_ID;
41
- name: string;
42
- nativeCurrency: {
43
- name: string;
44
- symbol: string;
45
- decimals: number;
46
- };
47
- rpcUrls: {
48
- default: {
49
- http: string[];
50
- };
51
- };
52
- blockExplorers: {
53
- default: {
54
- name: string;
55
- url: string;
56
- };
57
- };
58
- contracts: {
59
- ensRegistry: {
60
- address: `0x${string}`;
61
- };
62
- ensUniversalResolver: {
63
- address: `0x${string}`;
64
- blockCreated: number;
65
- };
66
- multicall3: {
67
- address: `0x${string}`;
68
- blockCreated: number;
69
- };
70
- };
71
- };
72
- export declare const lighterChain: {
73
- id: typeof LIGHTER_CHAIN_ID;
74
- name: string;
75
- nativeCurrency: {
76
- name: string;
77
- symbol: string;
78
- decimals: number;
79
- };
80
- rpcUrls: {
81
- default: {
82
- http: string[];
83
- };
84
- };
85
- blockExplorers: {
86
- default: {
87
- name: string;
88
- url: string;
89
- path: {
90
- tx: string;
91
- address: string;
92
- block: string;
93
- transfer: string;
94
- };
95
- };
96
- };
97
- contracts: {
98
- ensRegistry: {
99
- address: `0x${string}`;
100
- };
101
- ensUniversalResolver: {
102
- address: `0x${string}`;
103
- blockCreated: number;
104
- };
105
- multicall3: {
106
- address: `0x${string}`;
107
- blockCreated: number;
108
- };
109
- };
110
- };
111
- export declare const monadChain: {
112
- id: typeof MONAD_CHAIN_ID;
113
- name: string;
114
- nativeCurrency: {
115
- name: string;
116
- symbol: string;
117
- decimals: number;
118
- };
119
- rpcUrls: {
120
- default: {
121
- http: string[];
122
- };
123
- };
124
- blockExplorers: {
125
- default: {
126
- name: string;
127
- url: string;
128
- };
129
- };
130
- contracts: {
131
- ensRegistry: {
132
- address: `0x${string}`;
133
- };
134
- ensUniversalResolver: {
135
- address: `0x${string}`;
136
- blockCreated: number;
137
- };
138
- multicall3: {
139
- address: `0x${string}`;
140
- blockCreated: number;
141
- };
142
- };
143
- };
144
- export declare const solanaChain: {
145
- id: typeof SOLANA_MAINNET_CHAIN_ID;
146
- name: string;
147
- nativeCurrency: {
148
- symbol: string;
149
- decimals: number;
150
- name: string;
151
- };
152
- rpcUrls: {
153
- default: {
154
- http: string[];
155
- };
156
- };
157
- blockExplorers: {
158
- default: {
159
- name: string;
160
- url: string;
161
- apiUrl: string;
162
- };
163
- };
164
- contracts: {
165
- ensRegistry: {
166
- address: `0x${string}`;
167
- };
168
- ensUniversalResolver: {
169
- address: `0x${string}`;
170
- blockCreated: number;
171
- };
172
- multicall3: {
173
- address: `0x${string}`;
174
- blockCreated: number;
175
- };
176
- };
177
- };
178
- export declare const hyperCoreChain: {
179
- id: typeof HYPERCORE_CHAIN_ID;
180
- name: string;
181
- nativeCurrency: {
182
- symbol: string;
183
- decimals: number;
184
- name: string;
185
- };
186
- rpcUrls: {
187
- default: {
188
- http: string[];
189
- };
190
- };
191
- blockExplorers: {
192
- default: {
193
- name: string;
194
- url: string;
195
- };
196
- };
197
- contracts: {
198
- ensRegistry: {
199
- address: `0x${string}`;
200
- };
201
- ensUniversalResolver: {
202
- address: `0x${string}`;
203
- blockCreated: number;
204
- };
205
- multicall3: {
206
- address: `0x${string}`;
207
- blockCreated: number;
208
- };
209
- };
210
- };
211
- export declare const bitcoinChain: {
212
- id: number;
213
- name: string;
214
- nativeCurrency: {
215
- symbol: string;
216
- decimals: number;
217
- name: string;
218
- };
219
- rpcUrls: {
220
- default: {
221
- http: string[];
222
- };
223
- };
224
- blockExplorers: {
225
- default: {
226
- name: string;
227
- url: string;
228
- };
229
- };
230
- contracts: {};
231
- };
232
- export declare const tronChain: {
233
- id: number;
234
- name: string;
235
- nativeCurrency: {
236
- symbol: string;
237
- decimals: number;
238
- name: string;
239
- };
240
- rpcUrls: {
241
- default: {
242
- http: string[];
243
- };
244
- };
245
- blockExplorers: {
246
- default: {
247
- name: string;
248
- url: string;
249
- path: {
250
- tx: string;
251
- transfer: string;
252
- };
253
- };
254
- };
255
- contracts: {};
256
- };
257
- export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_ID_LIST: readonly [1, 8453, 137, 42161, 10, 56, 324, 5000, 1151111081099710, 534352, 999, 1337, 2741, number, 5064014, 143, 3586256, number, 5, 421614];
258
- type FunKitConnectSupportedChainId = (typeof FUNKIT_CONNECT_SUPPORTED_CHAINS_ID_LIST)[number];
259
- interface FunTokenInfo {
260
- symbol: string;
261
- decimals: number;
262
- name: string;
263
- }
264
- export type ExplorerInfoUrlPath = {
265
- path?: {
266
- tx?: string;
267
- address?: string;
268
- block?: string;
269
- transfer?: string;
270
- };
271
- };
272
- export interface FunChainInfo {
273
- name: string;
274
- nativeCurrency: FunTokenInfo;
275
- coreToken?: FunTokenInfo;
276
- chainInfo: Chain;
277
- explorerInfo: NonNullable<NonNullable<Chain['blockExplorers']>['default']> & ExplorerInfoUrlPath;
278
- isCheckoutSupported: boolean;
279
- isFunWalletSupported: boolean;
280
- isMainnet: boolean;
281
- pickPriority: number;
282
- fallbackRpcUrls: string[];
283
- }
284
- /** this type is used to mock `noUncheckedIndexedAccess` */
285
- type SupportedChainInfos = {
286
- [key in FunKitConnectSupportedChainId]: FunChainInfo;
287
- } & {
288
- [k: string]: FunChainInfo | undefined;
289
- };
290
- /**
291
- * Info on the supported chains of FunkitConnect
292
- * Added into coresdk because it is used in here too.
293
- *
294
- * fallbackRpcUrl: see https://chainlist.org/ for more public RPC endpoints
295
- */
296
- export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: SupportedChainInfos;
297
- export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: [Chain, ...Chain[]];
298
- export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: [Chain, ...Chain[]];
299
- export declare const FUNKIT_CONNECT_CHECKOUT_NATIVE_CURRENCY_ADDRESS = "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee";
300
- export * from './chainMetadata';
1
+ export * from './src/const';
301
2
  //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,9 @@
1
+ export declare const HYPER_EVM_CHAIN_ID = 999;
2
+ export declare const ETHEREAL_CHAIN_ID = 5064014;
3
+ export declare const LIGHTER_CHAIN_ID = 3586256;
4
+ export declare const MONAD_CHAIN_ID = 143;
5
+ export declare const SOLANA_MAINNET_CHAIN_ID = 1151111081099710;
6
+ export declare const HYPERCORE_CHAIN_ID = 1337;
7
+ export declare const BITCOIN_MAINNET_CHAIN_ID = 8253038;
8
+ export declare const TRON_MAINNET_CHAIN_ID = 728126428;
9
+ //# sourceMappingURL=chainId.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chainId.d.ts","sourceRoot":"","sources":["../../../src/const/chainId.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,MAAM,CAAA;AACrC,eAAO,MAAM,iBAAiB,UAAU,CAAA;AACxC,eAAO,MAAM,gBAAgB,UAAU,CAAA;AACvC,eAAO,MAAM,cAAc,MAAM,CAAA;AACjC,eAAO,MAAM,uBAAuB,mBAAmB,CAAA;AACvD,eAAO,MAAM,kBAAkB,OAAO,CAAA;AACtC,eAAO,MAAM,wBAAwB,UAAU,CAAA;AAC/C,eAAO,MAAM,qBAAqB,YAAY,CAAA"}
@@ -0,0 +1,8 @@
1
+ export declare const chainMetadataById: {
2
+ [k: string]: {
3
+ name?: string;
4
+ iconUrl: string;
5
+ iconBackground: string;
6
+ };
7
+ };
8
+ //# sourceMappingURL=chainMetadata.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chainMetadata.d.ts","sourceRoot":"","sources":["../../../src/const/chainMetadata.ts"],"names":[],"mappings":"AA6TA,eAAO,MAAM,iBAAiB;;eA5OrB,MAAM;iBANJ,MAAM;wBACC,MAAM;;CAqPvB,CAAA"}
@@ -0,0 +1,301 @@
1
+ import { type Chain } from 'viem/chains';
2
+ import { ETHEREAL_CHAIN_ID, HYPERCORE_CHAIN_ID, HYPER_EVM_CHAIN_ID, LIGHTER_CHAIN_ID, MONAD_CHAIN_ID, SOLANA_MAINNET_CHAIN_ID } from './chainId';
3
+ export * from './chainId';
4
+ export declare const hyperEvmChain: {
5
+ id: typeof HYPER_EVM_CHAIN_ID;
6
+ name: string;
7
+ nativeCurrency: {
8
+ name: string;
9
+ symbol: string;
10
+ decimals: number;
11
+ };
12
+ rpcUrls: {
13
+ default: {
14
+ http: string[];
15
+ wss: string[];
16
+ };
17
+ };
18
+ blockExplorers: {
19
+ default: {
20
+ name: string;
21
+ url: string;
22
+ apiUrl: string;
23
+ };
24
+ };
25
+ contracts: {
26
+ ensRegistry: {
27
+ address: `0x${string}`;
28
+ };
29
+ ensUniversalResolver: {
30
+ address: `0x${string}`;
31
+ blockCreated: number;
32
+ };
33
+ multicall3: {
34
+ address: `0x${string}`;
35
+ blockCreated: number;
36
+ };
37
+ };
38
+ };
39
+ export declare const etherealChain: {
40
+ id: typeof ETHEREAL_CHAIN_ID;
41
+ name: string;
42
+ nativeCurrency: {
43
+ name: string;
44
+ symbol: string;
45
+ decimals: number;
46
+ };
47
+ rpcUrls: {
48
+ default: {
49
+ http: string[];
50
+ };
51
+ };
52
+ blockExplorers: {
53
+ default: {
54
+ name: string;
55
+ url: string;
56
+ };
57
+ };
58
+ contracts: {
59
+ ensRegistry: {
60
+ address: `0x${string}`;
61
+ };
62
+ ensUniversalResolver: {
63
+ address: `0x${string}`;
64
+ blockCreated: number;
65
+ };
66
+ multicall3: {
67
+ address: `0x${string}`;
68
+ blockCreated: number;
69
+ };
70
+ };
71
+ };
72
+ export declare const lighterChain: {
73
+ id: typeof LIGHTER_CHAIN_ID;
74
+ name: string;
75
+ nativeCurrency: {
76
+ name: string;
77
+ symbol: string;
78
+ decimals: number;
79
+ };
80
+ rpcUrls: {
81
+ default: {
82
+ http: string[];
83
+ };
84
+ };
85
+ blockExplorers: {
86
+ default: {
87
+ name: string;
88
+ url: string;
89
+ path: {
90
+ tx: string;
91
+ address: string;
92
+ block: string;
93
+ transfer: string;
94
+ };
95
+ };
96
+ };
97
+ contracts: {
98
+ ensRegistry: {
99
+ address: `0x${string}`;
100
+ };
101
+ ensUniversalResolver: {
102
+ address: `0x${string}`;
103
+ blockCreated: number;
104
+ };
105
+ multicall3: {
106
+ address: `0x${string}`;
107
+ blockCreated: number;
108
+ };
109
+ };
110
+ };
111
+ export declare const monadChain: {
112
+ id: typeof MONAD_CHAIN_ID;
113
+ name: string;
114
+ nativeCurrency: {
115
+ name: string;
116
+ symbol: string;
117
+ decimals: number;
118
+ };
119
+ rpcUrls: {
120
+ default: {
121
+ http: string[];
122
+ };
123
+ };
124
+ blockExplorers: {
125
+ default: {
126
+ name: string;
127
+ url: string;
128
+ };
129
+ };
130
+ contracts: {
131
+ ensRegistry: {
132
+ address: `0x${string}`;
133
+ };
134
+ ensUniversalResolver: {
135
+ address: `0x${string}`;
136
+ blockCreated: number;
137
+ };
138
+ multicall3: {
139
+ address: `0x${string}`;
140
+ blockCreated: number;
141
+ };
142
+ };
143
+ };
144
+ export declare const solanaChain: {
145
+ id: typeof SOLANA_MAINNET_CHAIN_ID;
146
+ name: string;
147
+ nativeCurrency: {
148
+ symbol: string;
149
+ decimals: number;
150
+ name: string;
151
+ };
152
+ rpcUrls: {
153
+ default: {
154
+ http: string[];
155
+ };
156
+ };
157
+ blockExplorers: {
158
+ default: {
159
+ name: string;
160
+ url: string;
161
+ apiUrl: string;
162
+ };
163
+ };
164
+ contracts: {
165
+ ensRegistry: {
166
+ address: `0x${string}`;
167
+ };
168
+ ensUniversalResolver: {
169
+ address: `0x${string}`;
170
+ blockCreated: number;
171
+ };
172
+ multicall3: {
173
+ address: `0x${string}`;
174
+ blockCreated: number;
175
+ };
176
+ };
177
+ };
178
+ export declare const hyperCoreChain: {
179
+ id: typeof HYPERCORE_CHAIN_ID;
180
+ name: string;
181
+ nativeCurrency: {
182
+ symbol: string;
183
+ decimals: number;
184
+ name: string;
185
+ };
186
+ rpcUrls: {
187
+ default: {
188
+ http: string[];
189
+ };
190
+ };
191
+ blockExplorers: {
192
+ default: {
193
+ name: string;
194
+ url: string;
195
+ };
196
+ };
197
+ contracts: {
198
+ ensRegistry: {
199
+ address: `0x${string}`;
200
+ };
201
+ ensUniversalResolver: {
202
+ address: `0x${string}`;
203
+ blockCreated: number;
204
+ };
205
+ multicall3: {
206
+ address: `0x${string}`;
207
+ blockCreated: number;
208
+ };
209
+ };
210
+ };
211
+ export declare const bitcoinChain: {
212
+ id: number;
213
+ name: string;
214
+ nativeCurrency: {
215
+ symbol: string;
216
+ decimals: number;
217
+ name: string;
218
+ };
219
+ rpcUrls: {
220
+ default: {
221
+ http: string[];
222
+ };
223
+ };
224
+ blockExplorers: {
225
+ default: {
226
+ name: string;
227
+ url: string;
228
+ };
229
+ };
230
+ contracts: {};
231
+ };
232
+ export declare const tronChain: {
233
+ id: number;
234
+ name: string;
235
+ nativeCurrency: {
236
+ symbol: string;
237
+ decimals: number;
238
+ name: string;
239
+ };
240
+ rpcUrls: {
241
+ default: {
242
+ http: string[];
243
+ };
244
+ };
245
+ blockExplorers: {
246
+ default: {
247
+ name: string;
248
+ url: string;
249
+ path: {
250
+ tx: string;
251
+ transfer: string;
252
+ };
253
+ };
254
+ };
255
+ contracts: {};
256
+ };
257
+ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_ID_LIST: readonly [1, 8453, 137, 42161, 10, 56, 324, 5000, 1151111081099710, 534352, 999, 1337, 2741, number, 5064014, 143, 3586256, number, 5, 421614];
258
+ type FunKitConnectSupportedChainId = (typeof FUNKIT_CONNECT_SUPPORTED_CHAINS_ID_LIST)[number];
259
+ interface FunTokenInfo {
260
+ symbol: string;
261
+ decimals: number;
262
+ name: string;
263
+ }
264
+ export type ExplorerInfoUrlPath = {
265
+ path?: {
266
+ tx?: string;
267
+ address?: string;
268
+ block?: string;
269
+ transfer?: string;
270
+ };
271
+ };
272
+ export interface FunChainInfo {
273
+ name: string;
274
+ nativeCurrency: FunTokenInfo;
275
+ coreToken?: FunTokenInfo;
276
+ chainInfo: Chain;
277
+ explorerInfo: NonNullable<NonNullable<Chain['blockExplorers']>['default']> & ExplorerInfoUrlPath;
278
+ isCheckoutSupported: boolean;
279
+ isFunWalletSupported: boolean;
280
+ isMainnet: boolean;
281
+ pickPriority: number;
282
+ fallbackRpcUrls: string[];
283
+ }
284
+ /** this type is used to mock `noUncheckedIndexedAccess` */
285
+ type SupportedChainInfos = {
286
+ [key in FunKitConnectSupportedChainId]: FunChainInfo;
287
+ } & {
288
+ [k: string]: FunChainInfo | undefined;
289
+ };
290
+ /**
291
+ * Info on the supported chains of FunkitConnect
292
+ * Added into coresdk because it is used in here too.
293
+ *
294
+ * fallbackRpcUrl: see https://chainlist.org/ for more public RPC endpoints
295
+ */
296
+ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: SupportedChainInfos;
297
+ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: [Chain, ...Chain[]];
298
+ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: [Chain, ...Chain[]];
299
+ export declare const FUNKIT_CONNECT_CHECKOUT_NATIVE_CURRENCY_ADDRESS = "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee";
300
+ export * from './chainMetadata';
301
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/const/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/chains",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Funkit Chains SDK centralizes chain information across all funkit apps and packages.",
5
5
  "files": [
6
6
  "dist/src",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "devDependencies": {
31
31
  "jsdom": "^26.1.0",
32
- "vitest": "^3.0.9"
32
+ "vitest": "^4.0.18"
33
33
  },
34
34
  "repository": {
35
35
  "type": "git",
@@ -42,8 +42,8 @@
42
42
  "build:watch": "node build.js --watch",
43
43
  "dev": "pnpm build:watch & pnpm typegen:watch",
44
44
  "prebuild": "pnpm typegen",
45
- "typecheck": "pnpm tsc --project tsconfig.test.json --noEmit",
46
- "typegen": "tsc --emitDeclarationOnly || true",
45
+ "typecheck": "pnpm tsc --noEmit",
46
+ "typegen": "tsc --emitDeclarationOnly",
47
47
  "typegen:watch": "tsc --emitDeclarationOnly --watch",
48
48
  "lint": "biome check",
49
49
  "lint:fix": "biome check --fix"