@layerzerolabs/layerzero-definitions 0.0.67 → 0.0.74
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/.turbo/turbo-build.log +40 -40
- package/dist/{BIUA6AHL.js → BC5IWL7K.js} +3 -3
- package/dist/{BIUA6AHL.js.map → BC5IWL7K.js.map} +1 -1
- package/dist/{MFUEMSCL.cjs → ED6MIXUS.cjs} +4 -4
- package/dist/{MFUEMSCL.cjs.map → ED6MIXUS.cjs.map} +1 -1
- package/dist/{PU3P7SKG.cjs → EM7SYGVT.cjs} +2 -3
- package/dist/EM7SYGVT.cjs.map +1 -0
- package/dist/{LNHJSJH4.cjs → GGQLSERZ.cjs} +10 -10
- package/dist/{LNHJSJH4.cjs.map → GGQLSERZ.cjs.map} +1 -1
- package/dist/{N3L6LN2F.js → ISLV7AET.js} +3 -3
- package/dist/{N3L6LN2F.js.map → ISLV7AET.js.map} +1 -1
- package/dist/JIA53YQ6.cjs +15 -0
- package/dist/JIA53YQ6.cjs.map +1 -0
- package/dist/NBXEVBHY.js +12 -0
- package/dist/NBXEVBHY.js.map +1 -0
- package/dist/NHAN7T24.cjs +3240 -0
- package/dist/NHAN7T24.cjs.map +1 -0
- package/dist/{7UR53S5C.js → P4NTZLJI.js} +2 -3
- package/dist/P4NTZLJI.js.map +1 -0
- package/dist/{CM7FDHS6.cjs → TJ7OLAPU.cjs} +98 -8
- package/dist/TJ7OLAPU.cjs.map +1 -0
- package/dist/{Z34Q7EKP.js → UWLCME3Y.js} +98 -8
- package/dist/UWLCME3Y.js.map +1 -0
- package/dist/{LF4GUX4V.js → ZL2HQZXJ.js} +429 -10
- package/dist/ZL2HQZXJ.js.map +1 -0
- package/dist/address.d.ts +3 -2
- package/dist/address.d.ts.map +1 -1
- package/dist/chainKeys.cjs +8 -4
- package/dist/chainKeys.d.ts +319 -6
- package/dist/chainKeys.d.ts.map +1 -1
- package/dist/chainKeys.js +2 -2
- package/dist/enums.cjs +11 -11
- package/dist/enums.d.ts +97 -7
- package/dist/enums.d.ts.map +1 -1
- package/dist/enums.js +1 -1
- package/dist/environmentDefinition.cjs +5 -5
- package/dist/environmentDefinition.js +3 -3
- package/dist/environmentInstanceDefinition.cjs +8 -4
- package/dist/environmentInstanceDefinition.d.ts +5 -1
- package/dist/environmentInstanceDefinition.d.ts.map +1 -1
- package/dist/environmentInstanceDefinition.js +3 -3
- package/dist/index.cjs +40 -32
- package/dist/index.js +6 -6
- package/dist/protocol.cjs +6 -6
- package/dist/protocol.d.ts +0 -1
- package/dist/protocol.d.ts.map +1 -1
- package/dist/protocol.js +1 -1
- package/dist/schema.cjs +8 -8
- package/dist/schema.d.ts +40 -2
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +2 -2
- package/package.json +5 -5
- package/src/address.ts +3 -2
- package/src/chainKeys.ts +429 -6
- package/src/enums.ts +122 -6
- package/src/environmentInstanceDefinition.ts +8 -1
- package/src/protocol.ts +0 -1
- package/dist/6B6GOGG5.cjs +0 -2820
- package/dist/6B6GOGG5.cjs.map +0 -1
- package/dist/7UR53S5C.js.map +0 -1
- package/dist/CM7FDHS6.cjs.map +0 -1
- package/dist/I5CS4LBS.cjs +0 -13
- package/dist/I5CS4LBS.cjs.map +0 -1
- package/dist/LF4GUX4V.js.map +0 -1
- package/dist/PU3P7SKG.cjs.map +0 -1
- package/dist/XUCZZFAC.js +0 -11
- package/dist/XUCZZFAC.js.map +0 -1
- package/dist/Z34Q7EKP.js.map +0 -1
package/dist/chainKeys.d.ts
CHANGED
|
@@ -207,6 +207,12 @@ export declare const CHAIN_KEY_ALIAS_CONFIG: {
|
|
|
207
207
|
readonly name: ChainName.POLYGON;
|
|
208
208
|
}];
|
|
209
209
|
};
|
|
210
|
+
readonly "polygon-sandbox": {
|
|
211
|
+
readonly aliases: [{
|
|
212
|
+
readonly environment: Environment.SANDBOX;
|
|
213
|
+
readonly name: ChainName.POLYGON;
|
|
214
|
+
}];
|
|
215
|
+
};
|
|
210
216
|
readonly optimism: {
|
|
211
217
|
readonly aliases: [{
|
|
212
218
|
readonly environment: Environment.MAINNET;
|
|
@@ -219,6 +225,12 @@ export declare const CHAIN_KEY_ALIAS_CONFIG: {
|
|
|
219
225
|
readonly name: ChainName.OPTIMISM;
|
|
220
226
|
}];
|
|
221
227
|
};
|
|
228
|
+
readonly "optimism-sandbox": {
|
|
229
|
+
readonly aliases: [{
|
|
230
|
+
readonly environment: Environment.SANDBOX;
|
|
231
|
+
readonly name: ChainName.OPTIMISM;
|
|
232
|
+
}];
|
|
233
|
+
};
|
|
222
234
|
readonly fantom: {
|
|
223
235
|
readonly aliases: [{
|
|
224
236
|
readonly environment: Environment.MAINNET;
|
|
@@ -1158,6 +1170,12 @@ export declare const CHAIN_KEY_ALIAS_CONFIG: {
|
|
|
1158
1170
|
readonly name: ChainName.HOMEVERSE;
|
|
1159
1171
|
}];
|
|
1160
1172
|
};
|
|
1173
|
+
readonly "homeverse-testnet": {
|
|
1174
|
+
readonly aliases: [{
|
|
1175
|
+
readonly environment: Environment.TESTNET;
|
|
1176
|
+
readonly name: ChainName.HOMEVERSE;
|
|
1177
|
+
}];
|
|
1178
|
+
};
|
|
1161
1179
|
readonly "zkastar-testnet": {
|
|
1162
1180
|
readonly aliases: [{
|
|
1163
1181
|
readonly environment: Environment.TESTNET;
|
|
@@ -2052,6 +2070,12 @@ export declare const CHAIN_KEY_ALIAS_CONFIG: {
|
|
|
2052
2070
|
readonly name: ChainName.INJECTIVE1439;
|
|
2053
2071
|
}];
|
|
2054
2072
|
};
|
|
2073
|
+
readonly plasma3: {
|
|
2074
|
+
readonly aliases: [{
|
|
2075
|
+
readonly environment: Environment.MAINNET;
|
|
2076
|
+
readonly name: ChainName.PLASMA3;
|
|
2077
|
+
}];
|
|
2078
|
+
};
|
|
2055
2079
|
readonly "plasma3-testnet": {
|
|
2056
2080
|
readonly aliases: [{
|
|
2057
2081
|
readonly environment: Environment.TESTNET;
|
|
@@ -2064,6 +2088,12 @@ export declare const CHAIN_KEY_ALIAS_CONFIG: {
|
|
|
2064
2088
|
readonly name: ChainName.PLASMA;
|
|
2065
2089
|
}];
|
|
2066
2090
|
};
|
|
2091
|
+
readonly "plasma-testnet": {
|
|
2092
|
+
readonly aliases: [{
|
|
2093
|
+
readonly environment: Environment.TESTNET;
|
|
2094
|
+
readonly name: ChainName.PLASMA;
|
|
2095
|
+
}];
|
|
2096
|
+
};
|
|
2067
2097
|
readonly sui: {
|
|
2068
2098
|
readonly aliases: [{
|
|
2069
2099
|
readonly environment: Environment.MAINNET;
|
|
@@ -2082,24 +2112,307 @@ export declare const CHAIN_KEY_ALIAS_CONFIG: {
|
|
|
2082
2112
|
readonly name: ChainName.SUI;
|
|
2083
2113
|
}];
|
|
2084
2114
|
};
|
|
2085
|
-
readonly
|
|
2115
|
+
readonly iotal1: {
|
|
2116
|
+
readonly aliases: [{
|
|
2117
|
+
readonly environment: Environment.MAINNET;
|
|
2118
|
+
readonly name: ChainName.IOTAL1;
|
|
2119
|
+
}];
|
|
2120
|
+
};
|
|
2121
|
+
readonly "iotal1-testnet": {
|
|
2122
|
+
readonly aliases: [{
|
|
2123
|
+
readonly environment: Environment.TESTNET;
|
|
2124
|
+
readonly name: ChainName.IOTAL1;
|
|
2125
|
+
}];
|
|
2126
|
+
};
|
|
2127
|
+
readonly zklink: {
|
|
2128
|
+
readonly aliases: [{
|
|
2129
|
+
readonly environment: Environment.MAINNET;
|
|
2130
|
+
readonly name: ChainName.ZKLINK;
|
|
2131
|
+
}];
|
|
2132
|
+
};
|
|
2133
|
+
readonly reya: {
|
|
2134
|
+
readonly aliases: [{
|
|
2135
|
+
readonly environment: Environment.MAINNET;
|
|
2136
|
+
readonly name: ChainName.REYA;
|
|
2137
|
+
}];
|
|
2138
|
+
};
|
|
2139
|
+
readonly bahamut: {
|
|
2086
2140
|
readonly aliases: [{
|
|
2087
2141
|
readonly environment: Environment.MAINNET;
|
|
2088
|
-
readonly name: ChainName.
|
|
2142
|
+
readonly name: ChainName.BAHAMUT;
|
|
2089
2143
|
}];
|
|
2090
2144
|
};
|
|
2091
|
-
readonly
|
|
2145
|
+
readonly movement: {
|
|
2146
|
+
readonly aliases: [{
|
|
2147
|
+
readonly environment: Environment.MAINNET;
|
|
2148
|
+
readonly name: ChainName.MOVEMENT;
|
|
2149
|
+
}];
|
|
2150
|
+
};
|
|
2151
|
+
readonly "movement-testnet": {
|
|
2092
2152
|
readonly aliases: [{
|
|
2093
2153
|
readonly environment: Environment.TESTNET;
|
|
2094
|
-
readonly name: ChainName.
|
|
2154
|
+
readonly name: ChainName.MOVEMENT;
|
|
2095
2155
|
}];
|
|
2096
2156
|
};
|
|
2097
|
-
readonly "
|
|
2157
|
+
readonly "movement-sandbox": {
|
|
2098
2158
|
readonly aliases: [{
|
|
2099
2159
|
readonly environment: Environment.SANDBOX;
|
|
2100
|
-
readonly name: ChainName.
|
|
2160
|
+
readonly name: ChainName.MOVEMENT;
|
|
2161
|
+
}];
|
|
2162
|
+
};
|
|
2163
|
+
readonly botanix: {
|
|
2164
|
+
readonly aliases: [{
|
|
2165
|
+
readonly environment: Environment.MAINNET;
|
|
2166
|
+
readonly name: ChainName.BOTANIX;
|
|
2167
|
+
}];
|
|
2168
|
+
};
|
|
2169
|
+
readonly katana: {
|
|
2170
|
+
readonly aliases: [{
|
|
2171
|
+
readonly environment: Environment.MAINNET;
|
|
2172
|
+
readonly name: ChainName.KATANA;
|
|
2173
|
+
}];
|
|
2174
|
+
};
|
|
2175
|
+
readonly humanity: {
|
|
2176
|
+
readonly aliases: [{
|
|
2177
|
+
readonly environment: Environment.MAINNET;
|
|
2178
|
+
readonly name: ChainName.HUMANITY;
|
|
2179
|
+
}];
|
|
2180
|
+
};
|
|
2181
|
+
readonly "humanity-testnet": {
|
|
2182
|
+
readonly aliases: [{
|
|
2183
|
+
readonly environment: Environment.TESTNET;
|
|
2184
|
+
readonly name: ChainName.HUMANITY;
|
|
2185
|
+
}];
|
|
2186
|
+
};
|
|
2187
|
+
readonly apexfusionnexus: {
|
|
2188
|
+
readonly aliases: [{
|
|
2189
|
+
readonly environment: Environment.MAINNET;
|
|
2190
|
+
readonly name: ChainName.APEXFUSIONNEXUS;
|
|
2191
|
+
}];
|
|
2192
|
+
};
|
|
2193
|
+
readonly dinari: {
|
|
2194
|
+
readonly aliases: [{
|
|
2195
|
+
readonly environment: Environment.MAINNET;
|
|
2196
|
+
readonly name: ChainName.DINARI;
|
|
2197
|
+
}];
|
|
2198
|
+
};
|
|
2199
|
+
readonly "dinari-testnet": {
|
|
2200
|
+
readonly aliases: [{
|
|
2201
|
+
readonly environment: Environment.TESTNET;
|
|
2202
|
+
readonly name: ChainName.DINARI;
|
|
2203
|
+
}];
|
|
2204
|
+
};
|
|
2205
|
+
readonly og: {
|
|
2206
|
+
readonly aliases: [{
|
|
2207
|
+
readonly environment: Environment.MAINNET;
|
|
2208
|
+
readonly name: ChainName.OG;
|
|
2209
|
+
}];
|
|
2210
|
+
};
|
|
2211
|
+
readonly "og-testnet": {
|
|
2212
|
+
readonly aliases: [{
|
|
2213
|
+
readonly environment: Environment.TESTNET;
|
|
2214
|
+
readonly name: ChainName.OG;
|
|
2215
|
+
}];
|
|
2216
|
+
};
|
|
2217
|
+
readonly ethereal: {
|
|
2218
|
+
readonly aliases: [{
|
|
2219
|
+
readonly environment: Environment.MAINNET;
|
|
2220
|
+
readonly name: ChainName.ETHEREAL;
|
|
2221
|
+
}];
|
|
2222
|
+
};
|
|
2223
|
+
readonly ethereal2: {
|
|
2224
|
+
readonly aliases: [{
|
|
2225
|
+
readonly environment: Environment.MAINNET;
|
|
2226
|
+
readonly name: ChainName.ETHEREAL2;
|
|
2227
|
+
}];
|
|
2228
|
+
};
|
|
2229
|
+
readonly "ethereal2-testnet": {
|
|
2230
|
+
readonly aliases: [{
|
|
2231
|
+
readonly environment: Environment.TESTNET;
|
|
2232
|
+
readonly name: ChainName.ETHEREAL2;
|
|
2233
|
+
}];
|
|
2234
|
+
};
|
|
2235
|
+
readonly zkverify: {
|
|
2236
|
+
readonly aliases: [{
|
|
2237
|
+
readonly environment: Environment.MAINNET;
|
|
2238
|
+
readonly name: ChainName.ZKVERIFY;
|
|
2239
|
+
}];
|
|
2240
|
+
};
|
|
2241
|
+
readonly "zkverify-testnet": {
|
|
2242
|
+
readonly aliases: [{
|
|
2243
|
+
readonly environment: Environment.TESTNET;
|
|
2244
|
+
readonly name: ChainName.ZKVERIFY;
|
|
2245
|
+
}];
|
|
2246
|
+
};
|
|
2247
|
+
readonly gatelayer: {
|
|
2248
|
+
readonly aliases: [{
|
|
2249
|
+
readonly environment: Environment.MAINNET;
|
|
2250
|
+
readonly name: ChainName.GATELAYER;
|
|
2251
|
+
}];
|
|
2252
|
+
};
|
|
2253
|
+
readonly "gatelayer-testnet": {
|
|
2254
|
+
readonly aliases: [{
|
|
2255
|
+
readonly environment: Environment.TESTNET;
|
|
2256
|
+
readonly name: ChainName.GATELAYER;
|
|
2257
|
+
}];
|
|
2258
|
+
};
|
|
2259
|
+
readonly monad: {
|
|
2260
|
+
readonly aliases: [{
|
|
2261
|
+
readonly environment: Environment.MAINNET;
|
|
2262
|
+
readonly name: ChainName.MONAD;
|
|
2263
|
+
}];
|
|
2264
|
+
};
|
|
2265
|
+
readonly openledger: {
|
|
2266
|
+
readonly aliases: [{
|
|
2267
|
+
readonly environment: Environment.MAINNET;
|
|
2268
|
+
readonly name: ChainName.OPENLEDGER;
|
|
2269
|
+
}];
|
|
2270
|
+
};
|
|
2271
|
+
readonly "openledger-testnet": {
|
|
2272
|
+
readonly aliases: [{
|
|
2273
|
+
readonly environment: Environment.TESTNET;
|
|
2274
|
+
readonly name: ChainName.OPENLEDGER;
|
|
2275
|
+
}];
|
|
2276
|
+
};
|
|
2277
|
+
readonly doma: {
|
|
2278
|
+
readonly aliases: [{
|
|
2279
|
+
readonly environment: Environment.MAINNET;
|
|
2280
|
+
readonly name: ChainName.DOMA;
|
|
2281
|
+
}];
|
|
2282
|
+
};
|
|
2283
|
+
readonly "doma-testnet": {
|
|
2284
|
+
readonly aliases: [{
|
|
2285
|
+
readonly environment: Environment.TESTNET;
|
|
2286
|
+
readonly name: ChainName.DOMA;
|
|
2287
|
+
}];
|
|
2288
|
+
};
|
|
2289
|
+
readonly injectiveevm: {
|
|
2290
|
+
readonly aliases: [{
|
|
2291
|
+
readonly environment: Environment.MAINNET;
|
|
2292
|
+
readonly name: ChainName.INJECTIVEEVM;
|
|
2293
|
+
}];
|
|
2294
|
+
};
|
|
2295
|
+
readonly "injectiveevm-testnet": {
|
|
2296
|
+
readonly aliases: [{
|
|
2297
|
+
readonly environment: Environment.TESTNET;
|
|
2298
|
+
readonly name: ChainName.INJECTIVEEVM;
|
|
2299
|
+
}];
|
|
2300
|
+
};
|
|
2301
|
+
readonly stable: {
|
|
2302
|
+
readonly aliases: [{
|
|
2303
|
+
readonly environment: Environment.MAINNET;
|
|
2304
|
+
readonly name: ChainName.STABLE;
|
|
2305
|
+
}];
|
|
2306
|
+
};
|
|
2307
|
+
readonly nexera: {
|
|
2308
|
+
readonly aliases: [{
|
|
2309
|
+
readonly environment: Environment.MAINNET;
|
|
2310
|
+
readonly name: ChainName.NEXERA;
|
|
2311
|
+
}];
|
|
2312
|
+
};
|
|
2313
|
+
readonly "nexera-testnet": {
|
|
2314
|
+
readonly aliases: [{
|
|
2315
|
+
readonly environment: Environment.TESTNET;
|
|
2316
|
+
readonly name: ChainName.NEXERA;
|
|
2317
|
+
}];
|
|
2318
|
+
};
|
|
2319
|
+
readonly plasma2: {
|
|
2320
|
+
readonly aliases: [{
|
|
2321
|
+
readonly environment: Environment.MAINNET;
|
|
2322
|
+
readonly name: ChainName.PLASMA2;
|
|
2323
|
+
}];
|
|
2324
|
+
};
|
|
2325
|
+
readonly "plasma2-testnet": {
|
|
2326
|
+
readonly aliases: [{
|
|
2327
|
+
readonly environment: Environment.TESTNET;
|
|
2328
|
+
readonly name: ChainName.PLASMA2;
|
|
2329
|
+
}];
|
|
2330
|
+
};
|
|
2331
|
+
readonly kite: {
|
|
2332
|
+
readonly aliases: [{
|
|
2333
|
+
readonly environment: Environment.MAINNET;
|
|
2334
|
+
readonly name: ChainName.KITE;
|
|
2335
|
+
}];
|
|
2336
|
+
};
|
|
2337
|
+
readonly "kite-testnet": {
|
|
2338
|
+
readonly aliases: [{
|
|
2339
|
+
readonly environment: Environment.TESTNET;
|
|
2340
|
+
readonly name: ChainName.KITE;
|
|
2341
|
+
}];
|
|
2342
|
+
};
|
|
2343
|
+
readonly lzjk: {
|
|
2344
|
+
readonly aliases: [{
|
|
2345
|
+
readonly environment: Environment.MAINNET;
|
|
2346
|
+
readonly name: ChainName.LZJK;
|
|
2347
|
+
}];
|
|
2348
|
+
};
|
|
2349
|
+
readonly "lzjk-testnet": {
|
|
2350
|
+
readonly aliases: [{
|
|
2351
|
+
readonly environment: Environment.TESTNET;
|
|
2352
|
+
readonly name: ChainName.LZJK;
|
|
2353
|
+
}];
|
|
2354
|
+
};
|
|
2355
|
+
readonly xlayer2: {
|
|
2356
|
+
readonly aliases: [{
|
|
2357
|
+
readonly environment: Environment.MAINNET;
|
|
2358
|
+
readonly name: ChainName.XLAYER2;
|
|
2359
|
+
}];
|
|
2360
|
+
};
|
|
2361
|
+
readonly "xlayer2-testnet": {
|
|
2362
|
+
readonly aliases: [{
|
|
2363
|
+
readonly environment: Environment.TESTNET;
|
|
2364
|
+
readonly name: ChainName.XLAYER2;
|
|
2365
|
+
}];
|
|
2366
|
+
};
|
|
2367
|
+
readonly megaeth2: {
|
|
2368
|
+
readonly aliases: [{
|
|
2369
|
+
readonly environment: Environment.MAINNET;
|
|
2370
|
+
readonly name: ChainName.MEGAETH2;
|
|
2371
|
+
}];
|
|
2372
|
+
};
|
|
2373
|
+
readonly "megaeth2-testnet": {
|
|
2374
|
+
readonly aliases: [{
|
|
2375
|
+
readonly environment: Environment.TESTNET;
|
|
2376
|
+
readonly name: ChainName.MEGAETH2;
|
|
2377
|
+
}];
|
|
2378
|
+
};
|
|
2379
|
+
readonly oggalileo: {
|
|
2380
|
+
readonly aliases: [{
|
|
2381
|
+
readonly environment: Environment.MAINNET;
|
|
2382
|
+
readonly name: ChainName.OGGALILEO;
|
|
2383
|
+
}];
|
|
2384
|
+
};
|
|
2385
|
+
readonly "oggalileo-testnet": {
|
|
2386
|
+
readonly aliases: [{
|
|
2387
|
+
readonly environment: Environment.TESTNET;
|
|
2388
|
+
readonly name: ChainName.OGGALILEO;
|
|
2389
|
+
}];
|
|
2390
|
+
};
|
|
2391
|
+
readonly gate: {
|
|
2392
|
+
readonly aliases: [{
|
|
2393
|
+
readonly environment: Environment.MAINNET;
|
|
2394
|
+
readonly name: ChainName.GATE;
|
|
2395
|
+
}];
|
|
2396
|
+
};
|
|
2397
|
+
readonly "gate-testnet": {
|
|
2398
|
+
readonly aliases: [{
|
|
2399
|
+
readonly environment: Environment.TESTNET;
|
|
2400
|
+
readonly name: ChainName.GATE;
|
|
2401
|
+
}];
|
|
2402
|
+
};
|
|
2403
|
+
readonly zama: {
|
|
2404
|
+
readonly aliases: [{
|
|
2405
|
+
readonly environment: Environment.MAINNET;
|
|
2406
|
+
readonly name: ChainName.ZAMA;
|
|
2407
|
+
}];
|
|
2408
|
+
};
|
|
2409
|
+
readonly "zama-testnet": {
|
|
2410
|
+
readonly aliases: [{
|
|
2411
|
+
readonly environment: Environment.TESTNET;
|
|
2412
|
+
readonly name: ChainName.ZAMA;
|
|
2101
2413
|
}];
|
|
2102
2414
|
};
|
|
2103
2415
|
};
|
|
2104
2416
|
export declare const resolveChainKey: (chainName: ChainName, environment: Environment) => ChainKey;
|
|
2417
|
+
export declare const getChainNamesByEnvironment: (environment: Environment) => ChainName[];
|
|
2105
2418
|
//# sourceMappingURL=chainKeys.d.ts.map
|
package/dist/chainKeys.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chainKeys.d.ts","sourceRoot":"","sources":["../src/chainKeys.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3D,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"chainKeys.d.ts","sourceRoot":"","sources":["../src/chainKeys.ts"],"names":[],"mappings":"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"}
|
package/dist/chainKeys.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { CHAIN_KEY_ALIAS_CONFIG, resolveChainKey } from './
|
|
2
|
-
import './
|
|
1
|
+
export { CHAIN_KEY_ALIAS_CONFIG, getChainNamesByEnvironment, resolveChainKey } from './ZL2HQZXJ.js';
|
|
2
|
+
import './UWLCME3Y.js';
|
|
3
3
|
import './VUOMXK5T.js';
|
|
4
4
|
//# sourceMappingURL=chainKeys.js.map
|
|
5
5
|
//# sourceMappingURL=chainKeys.js.map
|
package/dist/enums.cjs
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var TJ7OLAPU_cjs = require('./TJ7OLAPU.cjs');
|
|
4
4
|
require('./YJF4D23A.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Object.defineProperty(exports, "CHAIN_NAME_TO_CHAIN_TYPE", {
|
|
9
9
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
10
|
+
get: function () { return TJ7OLAPU_cjs.CHAIN_NAME_TO_CHAIN_TYPE; }
|
|
11
11
|
});
|
|
12
12
|
Object.defineProperty(exports, "CHAIN_TYPE_TO_CHAIN_NAME", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return TJ7OLAPU_cjs.CHAIN_TYPE_TO_CHAIN_NAME; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "ChainKey", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return TJ7OLAPU_cjs.ChainKey; }
|
|
19
19
|
});
|
|
20
20
|
Object.defineProperty(exports, "ChainName", {
|
|
21
21
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
22
|
+
get: function () { return TJ7OLAPU_cjs.ChainName; }
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "ChainType", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return TJ7OLAPU_cjs.ChainType; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "Environment", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return TJ7OLAPU_cjs.Environment; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "EnvironmentInstance", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return TJ7OLAPU_cjs.EnvironmentInstance; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "getChainNamesForChainType", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return TJ7OLAPU_cjs.getChainNamesForChainType; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "getChainTypeForChainName", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return TJ7OLAPU_cjs.getChainTypeForChainName; }
|
|
43
43
|
});
|
|
44
44
|
Object.defineProperty(exports, "getChainTypesForChainNames", {
|
|
45
45
|
enumerable: true,
|
|
46
|
-
get: function () { return
|
|
46
|
+
get: function () { return TJ7OLAPU_cjs.getChainTypesForChainNames; }
|
|
47
47
|
});
|
|
48
48
|
//# sourceMappingURL=enums.cjs.map
|
|
49
49
|
//# sourceMappingURL=enums.cjs.map
|