@layerzerolabs/lz-definitions 3.0.138 → 3.0.139-iota.1

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.cts CHANGED
@@ -229,7 +229,8 @@ declare enum EvmChain {
229
229
  PLASMA2 = "plasma2",
230
230
  HUMANITY = "humanity",
231
231
  DINARI = "dinari",
232
- OEPNLEDGER = "openledger",
232
+ OEPNLEDGER = "oepnledger",// typo'd leaving this constant though
233
+ OPENLEDGER = "openledger",
233
234
  ZKVERIFY = "zkverify",
234
235
  KITE = "kite",
235
236
  XLAYER2 = "xlayer2",
@@ -239,7 +240,10 @@ declare enum EvmChain {
239
240
  GATE = "gate",
240
241
  ETHEREAL2 = "ethereal2",
241
242
  ETHEREALBURNED = "etherealburned",
242
- GATELAYER = "gatelayer"
243
+ GATELAYER = "gatelayer",
244
+ DOMA = "doma",
245
+ ZAMA = "zama",
246
+ INJECTIVEEVM = "injectiveevm"
243
247
  }
244
248
 
245
249
  /**
@@ -249,6 +253,13 @@ declare enum InitiaChain {
249
253
  INITIA = "initia"
250
254
  }
251
255
 
256
+ /**
257
+ * Enum representing different Iota-compatible chains.
258
+ */
259
+ declare enum IotamoveChain {
260
+ IOTAMOVE = "iotamove"
261
+ }
262
+
252
263
  /**
253
264
  * Enum representing different Solana-compatible chains.
254
265
  */
@@ -273,11 +284,12 @@ declare enum TonChain {
273
284
  /**
274
285
  * Type representing a union of all supported chains.
275
286
  */
276
- type Chain = EvmChain | AptosChain | SolanaChain | InitiaChain | TonChain | SuiChain;
287
+ type Chain = EvmChain | AptosChain | SolanaChain | InitiaChain | TonChain | SuiChain | IotamoveChain;
277
288
  /**
278
289
  * Object containing all supported chains.
279
290
  */
280
291
  declare const Chain: {
292
+ IOTAMOVE: IotamoveChain.IOTAMOVE;
281
293
  SUI: SuiChain.SUI;
282
294
  TON: TonChain.TON;
283
295
  INITIA: InitiaChain.INITIA;
@@ -504,6 +516,7 @@ declare const Chain: {
504
516
  HUMANITY: EvmChain.HUMANITY;
505
517
  DINARI: EvmChain.DINARI;
506
518
  OEPNLEDGER: EvmChain.OEPNLEDGER;
519
+ OPENLEDGER: EvmChain.OPENLEDGER;
507
520
  ZKVERIFY: EvmChain.ZKVERIFY;
508
521
  KITE: EvmChain.KITE;
509
522
  XLAYER2: EvmChain.XLAYER2;
@@ -514,6 +527,9 @@ declare const Chain: {
514
527
  ETHEREAL2: EvmChain.ETHEREAL2;
515
528
  ETHEREALBURNED: EvmChain.ETHEREALBURNED;
516
529
  GATELAYER: EvmChain.GATELAYER;
530
+ DOMA: EvmChain.DOMA;
531
+ ZAMA: EvmChain.ZAMA;
532
+ INJECTIVEEVM: EvmChain.INJECTIVEEVM;
517
533
  };
518
534
 
519
535
  /**
@@ -526,7 +542,8 @@ declare enum ChainType {
526
542
  SOLANA = "solana",
527
543
  INITIA = "initia",
528
544
  TON = "ton",
529
- SUI = "sui"
545
+ SUI = "sui",
546
+ IOTAMOVE = "iotamove"
530
547
  }
531
548
 
532
549
  declare const EndpointV2IdBase = 30000;
@@ -685,7 +702,10 @@ declare enum MainnetEndpointId {
685
702
  OG_MAINNET = 388,
686
703
  GATELAYER_MAINNET = 389,
687
704
  MONAD_MAINNET = 390,
688
- ETHEREAL_MAINNET = 391
705
+ ETHEREAL_MAINNET = 391,
706
+ OPENLEDGER_MAINNET = 392,
707
+ DOMA_MAINNET = 393,
708
+ INJECTIVEEVM_MAINNET = 394
689
709
  }
690
710
  /**
691
711
  * Enum representing different endpoint ids on testnet. (Adapt Endpoint V1)
@@ -895,7 +915,9 @@ declare enum TestnetEndpointId {
895
915
  LZJK_TESTNET = 10418,
896
916
  OG_TESTNET = 10419,
897
917
  GATE_TESTNET = 10421,
898
- ETHEREAL2_TESTNET = 10422
918
+ ETHEREAL2_TESTNET = 10422,
919
+ DOMA_TESTNET = 10423,
920
+ ZAMA_TESTNET = 10424
899
921
  }
900
922
  /**
901
923
  * Enum representing different endpoint ids on sandbox. (Adapt Endpoint V1)
@@ -1073,7 +1095,11 @@ declare enum MainnetV2EndpointId {
1073
1095
  OG_V2_MAINNET = 30388,
1074
1096
  GATELAYER_V2_MAINNET = 30389,
1075
1097
  MONAD_V2_MAINNET = 30390,
1076
- ETHEREAL_V2_MAINNET = 30391
1098
+ ETHEREAL_V2_MAINNET = 30391,
1099
+ OPENLEDGER_V2_MAINNET = 30392,
1100
+ DOMA_V2_MAINNET = 30393,
1101
+ INJECTIVEEVM_V2_MAINNET = 30394,
1102
+ IOTAMOVE_V2_MAINNET = 30423
1077
1103
  }
1078
1104
  /**
1079
1105
  * Enum representing different endpoint ids on testnet. (Adapt Endpoint V2)
@@ -1285,7 +1311,10 @@ declare enum TestnetV2EndpointId {
1285
1311
  LZJK_V2_TESTNET = 40418,
1286
1312
  OG_V2_TESTNET = 40419,
1287
1313
  GATE_V2_TESTNET = 40421,
1288
- ETHEREAL2_V2_TESTNET = 40422
1314
+ ETHEREAL2_V2_TESTNET = 40422,
1315
+ DOMA_V2_TESTNET = 40425,
1316
+ ZAMA_V2_TESTNET = 40424,
1317
+ IOTAMOVE_V2_TESTNET = 40423
1289
1318
  }
1290
1319
  /**
1291
1320
  * Enum representing different endpoint ids on sandbox. (Adapt Endpoint V2)
@@ -1306,7 +1335,8 @@ declare enum SandboxV2EndpointId {
1306
1335
  ARBITRUM_V2_SANDBOX = 50231,
1307
1336
  TON_V2_SANDBOX = 50343,
1308
1337
  SUI_V2_SANDBOX = 50378,
1309
- ZKSYNC_V2_SANDBOX = 50165
1338
+ ZKSYNC_V2_SANDBOX = 50165,
1339
+ IOTAMOVE_V2_SANDBOX = 50423
1310
1340
  }
1311
1341
  /**
1312
1342
  * Object containing all supported endpoint IDs.
@@ -1330,6 +1360,7 @@ declare const EndpointId: {
1330
1360
  TON_V2_SANDBOX: SandboxV2EndpointId.TON_V2_SANDBOX;
1331
1361
  SUI_V2_SANDBOX: SandboxV2EndpointId.SUI_V2_SANDBOX;
1332
1362
  ZKSYNC_V2_SANDBOX: SandboxV2EndpointId.ZKSYNC_V2_SANDBOX;
1363
+ IOTAMOVE_V2_SANDBOX: SandboxV2EndpointId.IOTAMOVE_V2_SANDBOX;
1333
1364
  AVALANCHE_V2_TESTNET: TestnetV2EndpointId.AVALANCHE_V2_TESTNET;
1334
1365
  POLYGON_V2_TESTNET: TestnetV2EndpointId.POLYGON_V2_TESTNET;
1335
1366
  ETHEREUM_V2_TESTNET: TestnetV2EndpointId.ETHEREUM_V2_TESTNET;
@@ -1537,6 +1568,9 @@ declare const EndpointId: {
1537
1568
  OG_V2_TESTNET: TestnetV2EndpointId.OG_V2_TESTNET;
1538
1569
  GATE_V2_TESTNET: TestnetV2EndpointId.GATE_V2_TESTNET;
1539
1570
  ETHEREAL2_V2_TESTNET: TestnetV2EndpointId.ETHEREAL2_V2_TESTNET;
1571
+ DOMA_V2_TESTNET: TestnetV2EndpointId.DOMA_V2_TESTNET;
1572
+ ZAMA_V2_TESTNET: TestnetV2EndpointId.ZAMA_V2_TESTNET;
1573
+ IOTAMOVE_V2_TESTNET: TestnetV2EndpointId.IOTAMOVE_V2_TESTNET;
1540
1574
  ETHEREUM_V2_MAINNET: MainnetV2EndpointId.ETHEREUM_V2_MAINNET;
1541
1575
  BSC_V2_MAINNET: MainnetV2EndpointId.BSC_V2_MAINNET;
1542
1576
  AVALANCHE_V2_MAINNET: MainnetV2EndpointId.AVALANCHE_V2_MAINNET;
@@ -1693,6 +1727,10 @@ declare const EndpointId: {
1693
1727
  GATELAYER_V2_MAINNET: MainnetV2EndpointId.GATELAYER_V2_MAINNET;
1694
1728
  MONAD_V2_MAINNET: MainnetV2EndpointId.MONAD_V2_MAINNET;
1695
1729
  ETHEREAL_V2_MAINNET: MainnetV2EndpointId.ETHEREAL_V2_MAINNET;
1730
+ OPENLEDGER_V2_MAINNET: MainnetV2EndpointId.OPENLEDGER_V2_MAINNET;
1731
+ DOMA_V2_MAINNET: MainnetV2EndpointId.DOMA_V2_MAINNET;
1732
+ INJECTIVEEVM_V2_MAINNET: MainnetV2EndpointId.INJECTIVEEVM_V2_MAINNET;
1733
+ IOTAMOVE_V2_MAINNET: MainnetV2EndpointId.IOTAMOVE_V2_MAINNET;
1696
1734
  BSC_SANDBOX: SandboxEndpointId.BSC_SANDBOX;
1697
1735
  AVALANCHE_SANDBOX: SandboxEndpointId.AVALANCHE_SANDBOX;
1698
1736
  POLYGON_SANDBOX: SandboxEndpointId.POLYGON_SANDBOX;
@@ -1910,6 +1948,8 @@ declare const EndpointId: {
1910
1948
  OG_TESTNET: TestnetEndpointId.OG_TESTNET;
1911
1949
  GATE_TESTNET: TestnetEndpointId.GATE_TESTNET;
1912
1950
  ETHEREAL2_TESTNET: TestnetEndpointId.ETHEREAL2_TESTNET;
1951
+ DOMA_TESTNET: TestnetEndpointId.DOMA_TESTNET;
1952
+ ZAMA_TESTNET: TestnetEndpointId.ZAMA_TESTNET;
1913
1953
  ETHEREUM_MAINNET: MainnetEndpointId.ETHEREUM_MAINNET;
1914
1954
  BSC_MAINNET: MainnetEndpointId.BSC_MAINNET;
1915
1955
  AVALANCHE_MAINNET: MainnetEndpointId.AVALANCHE_MAINNET;
@@ -2062,6 +2102,9 @@ declare const EndpointId: {
2062
2102
  GATELAYER_MAINNET: MainnetEndpointId.GATELAYER_MAINNET;
2063
2103
  MONAD_MAINNET: MainnetEndpointId.MONAD_MAINNET;
2064
2104
  ETHEREAL_MAINNET: MainnetEndpointId.ETHEREAL_MAINNET;
2105
+ OPENLEDGER_MAINNET: MainnetEndpointId.OPENLEDGER_MAINNET;
2106
+ DOMA_MAINNET: MainnetEndpointId.DOMA_MAINNET;
2107
+ INJECTIVEEVM_MAINNET: MainnetEndpointId.INJECTIVEEVM_MAINNET;
2065
2108
  };
2066
2109
  /**
2067
2110
  * Type representing a union of all supported endpoint IDs.
@@ -2316,6 +2359,7 @@ declare enum ChainKey {
2316
2359
  TON_SANDBOX = "ton-sandbox",
2317
2360
  ZKSYNC_SANDBOX = "zksync-sandbox",
2318
2361
  SUI_SANDBOX = "sui-sandbox",
2362
+ IOTAMOVE_SANDBOX = "iotamove-sandbox",
2319
2363
  BOTANIX_TESTNET = "botanix-testnet",
2320
2364
  EBI_TESTNET = "ebi-testnet",
2321
2365
  TRONDEV = "tron-dev",
@@ -2472,6 +2516,8 @@ declare enum ChainKey {
2472
2516
  BOTANIX = "botanix",
2473
2517
  SUI_TESTNET = "sui-testnet",
2474
2518
  SUI = "sui",
2519
+ IOTAMOVE_TESTNET = "iotamove-testnet",
2520
+ IOTAMOVE = "iotamove",
2475
2521
  TACSPB_TESTNET = "tacspb-testnet",
2476
2522
  TAC = "tac",
2477
2523
  SOMNIASHANNON_TESTNET = "somniashannon-testnet",
@@ -2489,6 +2535,7 @@ declare enum ChainKey {
2489
2535
  DINARI = "dinari",
2490
2536
  DINARI_TESTNET = "dinari-testnet",
2491
2537
  OPENLEDGER_TESTNET = "openledger-testnet",
2538
+ OPENLEDGER = "openledger",
2492
2539
  APEXFUSIONNEXUS_TESTNET = "apexfusionnexus-testnet",
2493
2540
  APEXFUSIONNEXUS = "apexfusionnexus",
2494
2541
  PLASMA = "plasma",
@@ -2504,7 +2551,11 @@ declare enum ChainKey {
2504
2551
  ETHEREAL = "ethereal",
2505
2552
  ETHEREAL2_TESTNET = "ethereal2-testnet",
2506
2553
  GATELAYER = "gatelayer",
2507
- MONAD = "monad"
2554
+ MONAD = "monad",
2555
+ DOMA_TESTNET = "doma-testnet",
2556
+ ZAMA_TESTNET = "zama-testnet",
2557
+ DOMA = "doma",
2558
+ INJECTIVEEVM = "injectiveevm"
2508
2559
  }
2509
2560
 
2510
2561
  /**
@@ -2830,6 +2881,13 @@ declare function isInitiaChain(chain: Chain): boolean;
2830
2881
  * @returns {boolean} True if the chain is Placeholder based, false otherwise.
2831
2882
  */
2832
2883
  declare function isSuiChain(chain: Chain): boolean;
2884
+ /**
2885
+ * Determines if a chain is Iota Move based.
2886
+ *
2887
+ * @param {Chain} chain - The chain.
2888
+ * @returns {boolean} True if the chain is Iota Move based, false otherwise.
2889
+ */
2890
+ declare function isIotaMoveChain(chain: Chain): boolean;
2833
2891
  /**
2834
2892
  * Checks if the given value is a valid Chain. {@link Chain}
2835
2893
  *
@@ -2881,4 +2939,4 @@ declare class ChainSpecs {
2881
2939
  static getChainSpec(chainType: ChainType, chain: Chain | 'default'): ChainSpec;
2882
2940
  }
2883
2941
 
2884
- export { AptosChain, CHAIN_KEY, Chain, ChainKey, type ChainSpec, ChainSpecs, ChainType, ChannelId, ENVIRONMENT, EndpointId, type EndpointSpec, EndpointV2IdBase, EndpointVersion, Environment, EvmChain, InitiaChain, MainnetEndpointId, MainnetV2EndpointId, MessageLibCmdRead, type MessageLibVersion, MessageLibVersionV1, MessageLibVersionV2, type Network, SandboxEndpointId, SandboxV2EndpointId, SolanaChain, Stage, SuiChain, TestnetEndpointId, TestnetV2EndpointId, TonChain, ULN_V1_CHAINS, UlnVersion, chainAndStageToEndpointId, chainAndStageToNetwork, chainToChainType, endpointIdToChain, endpointIdToChainKey, endpointIdToChainType, endpointIdToEndpointSpec, endpointIdToNetwork, endpointIdToStage, endpointIdToVersion, endpointSpecToEndpointId, endpointSpecToEnv, endpointSpecToNetwork, getChainIdForNetwork, getChainType, getEndpointVersionForUlnVersion, getNetworkForChainId, getNetworksForStage, isAptosChain, isChain, isEvmChain, isInitiaChain, isNetworkEndpointIdSupported, isSolanaChain, isSuiChain, isTronChain, isZKSyncBasedChain, networkToChain, networkToChainType, networkToEndpointId, networkToEnv, networkToStage };
2942
+ export { AptosChain, CHAIN_KEY, Chain, ChainKey, type ChainSpec, ChainSpecs, ChainType, ChannelId, ENVIRONMENT, EndpointId, type EndpointSpec, EndpointV2IdBase, EndpointVersion, Environment, EvmChain, InitiaChain, IotamoveChain, MainnetEndpointId, MainnetV2EndpointId, MessageLibCmdRead, type MessageLibVersion, MessageLibVersionV1, MessageLibVersionV2, type Network, SandboxEndpointId, SandboxV2EndpointId, SolanaChain, Stage, SuiChain, TestnetEndpointId, TestnetV2EndpointId, TonChain, ULN_V1_CHAINS, UlnVersion, chainAndStageToEndpointId, chainAndStageToNetwork, chainToChainType, endpointIdToChain, endpointIdToChainKey, endpointIdToChainType, endpointIdToEndpointSpec, endpointIdToNetwork, endpointIdToStage, endpointIdToVersion, endpointSpecToEndpointId, endpointSpecToEnv, endpointSpecToNetwork, getChainIdForNetwork, getChainType, getEndpointVersionForUlnVersion, getNetworkForChainId, getNetworksForStage, isAptosChain, isChain, isEvmChain, isInitiaChain, isIotaMoveChain, isNetworkEndpointIdSupported, isSolanaChain, isSuiChain, isTronChain, isZKSyncBasedChain, networkToChain, networkToChainType, networkToEndpointId, networkToEnv, networkToStage };
package/dist/index.d.ts CHANGED
@@ -229,7 +229,8 @@ declare enum EvmChain {
229
229
  PLASMA2 = "plasma2",
230
230
  HUMANITY = "humanity",
231
231
  DINARI = "dinari",
232
- OEPNLEDGER = "openledger",
232
+ OEPNLEDGER = "oepnledger",// typo'd leaving this constant though
233
+ OPENLEDGER = "openledger",
233
234
  ZKVERIFY = "zkverify",
234
235
  KITE = "kite",
235
236
  XLAYER2 = "xlayer2",
@@ -239,7 +240,10 @@ declare enum EvmChain {
239
240
  GATE = "gate",
240
241
  ETHEREAL2 = "ethereal2",
241
242
  ETHEREALBURNED = "etherealburned",
242
- GATELAYER = "gatelayer"
243
+ GATELAYER = "gatelayer",
244
+ DOMA = "doma",
245
+ ZAMA = "zama",
246
+ INJECTIVEEVM = "injectiveevm"
243
247
  }
244
248
 
245
249
  /**
@@ -249,6 +253,13 @@ declare enum InitiaChain {
249
253
  INITIA = "initia"
250
254
  }
251
255
 
256
+ /**
257
+ * Enum representing different Iota-compatible chains.
258
+ */
259
+ declare enum IotamoveChain {
260
+ IOTAMOVE = "iotamove"
261
+ }
262
+
252
263
  /**
253
264
  * Enum representing different Solana-compatible chains.
254
265
  */
@@ -273,11 +284,12 @@ declare enum TonChain {
273
284
  /**
274
285
  * Type representing a union of all supported chains.
275
286
  */
276
- type Chain = EvmChain | AptosChain | SolanaChain | InitiaChain | TonChain | SuiChain;
287
+ type Chain = EvmChain | AptosChain | SolanaChain | InitiaChain | TonChain | SuiChain | IotamoveChain;
277
288
  /**
278
289
  * Object containing all supported chains.
279
290
  */
280
291
  declare const Chain: {
292
+ IOTAMOVE: IotamoveChain.IOTAMOVE;
281
293
  SUI: SuiChain.SUI;
282
294
  TON: TonChain.TON;
283
295
  INITIA: InitiaChain.INITIA;
@@ -504,6 +516,7 @@ declare const Chain: {
504
516
  HUMANITY: EvmChain.HUMANITY;
505
517
  DINARI: EvmChain.DINARI;
506
518
  OEPNLEDGER: EvmChain.OEPNLEDGER;
519
+ OPENLEDGER: EvmChain.OPENLEDGER;
507
520
  ZKVERIFY: EvmChain.ZKVERIFY;
508
521
  KITE: EvmChain.KITE;
509
522
  XLAYER2: EvmChain.XLAYER2;
@@ -514,6 +527,9 @@ declare const Chain: {
514
527
  ETHEREAL2: EvmChain.ETHEREAL2;
515
528
  ETHEREALBURNED: EvmChain.ETHEREALBURNED;
516
529
  GATELAYER: EvmChain.GATELAYER;
530
+ DOMA: EvmChain.DOMA;
531
+ ZAMA: EvmChain.ZAMA;
532
+ INJECTIVEEVM: EvmChain.INJECTIVEEVM;
517
533
  };
518
534
 
519
535
  /**
@@ -526,7 +542,8 @@ declare enum ChainType {
526
542
  SOLANA = "solana",
527
543
  INITIA = "initia",
528
544
  TON = "ton",
529
- SUI = "sui"
545
+ SUI = "sui",
546
+ IOTAMOVE = "iotamove"
530
547
  }
531
548
 
532
549
  declare const EndpointV2IdBase = 30000;
@@ -685,7 +702,10 @@ declare enum MainnetEndpointId {
685
702
  OG_MAINNET = 388,
686
703
  GATELAYER_MAINNET = 389,
687
704
  MONAD_MAINNET = 390,
688
- ETHEREAL_MAINNET = 391
705
+ ETHEREAL_MAINNET = 391,
706
+ OPENLEDGER_MAINNET = 392,
707
+ DOMA_MAINNET = 393,
708
+ INJECTIVEEVM_MAINNET = 394
689
709
  }
690
710
  /**
691
711
  * Enum representing different endpoint ids on testnet. (Adapt Endpoint V1)
@@ -895,7 +915,9 @@ declare enum TestnetEndpointId {
895
915
  LZJK_TESTNET = 10418,
896
916
  OG_TESTNET = 10419,
897
917
  GATE_TESTNET = 10421,
898
- ETHEREAL2_TESTNET = 10422
918
+ ETHEREAL2_TESTNET = 10422,
919
+ DOMA_TESTNET = 10423,
920
+ ZAMA_TESTNET = 10424
899
921
  }
900
922
  /**
901
923
  * Enum representing different endpoint ids on sandbox. (Adapt Endpoint V1)
@@ -1073,7 +1095,11 @@ declare enum MainnetV2EndpointId {
1073
1095
  OG_V2_MAINNET = 30388,
1074
1096
  GATELAYER_V2_MAINNET = 30389,
1075
1097
  MONAD_V2_MAINNET = 30390,
1076
- ETHEREAL_V2_MAINNET = 30391
1098
+ ETHEREAL_V2_MAINNET = 30391,
1099
+ OPENLEDGER_V2_MAINNET = 30392,
1100
+ DOMA_V2_MAINNET = 30393,
1101
+ INJECTIVEEVM_V2_MAINNET = 30394,
1102
+ IOTAMOVE_V2_MAINNET = 30423
1077
1103
  }
1078
1104
  /**
1079
1105
  * Enum representing different endpoint ids on testnet. (Adapt Endpoint V2)
@@ -1285,7 +1311,10 @@ declare enum TestnetV2EndpointId {
1285
1311
  LZJK_V2_TESTNET = 40418,
1286
1312
  OG_V2_TESTNET = 40419,
1287
1313
  GATE_V2_TESTNET = 40421,
1288
- ETHEREAL2_V2_TESTNET = 40422
1314
+ ETHEREAL2_V2_TESTNET = 40422,
1315
+ DOMA_V2_TESTNET = 40425,
1316
+ ZAMA_V2_TESTNET = 40424,
1317
+ IOTAMOVE_V2_TESTNET = 40423
1289
1318
  }
1290
1319
  /**
1291
1320
  * Enum representing different endpoint ids on sandbox. (Adapt Endpoint V2)
@@ -1306,7 +1335,8 @@ declare enum SandboxV2EndpointId {
1306
1335
  ARBITRUM_V2_SANDBOX = 50231,
1307
1336
  TON_V2_SANDBOX = 50343,
1308
1337
  SUI_V2_SANDBOX = 50378,
1309
- ZKSYNC_V2_SANDBOX = 50165
1338
+ ZKSYNC_V2_SANDBOX = 50165,
1339
+ IOTAMOVE_V2_SANDBOX = 50423
1310
1340
  }
1311
1341
  /**
1312
1342
  * Object containing all supported endpoint IDs.
@@ -1330,6 +1360,7 @@ declare const EndpointId: {
1330
1360
  TON_V2_SANDBOX: SandboxV2EndpointId.TON_V2_SANDBOX;
1331
1361
  SUI_V2_SANDBOX: SandboxV2EndpointId.SUI_V2_SANDBOX;
1332
1362
  ZKSYNC_V2_SANDBOX: SandboxV2EndpointId.ZKSYNC_V2_SANDBOX;
1363
+ IOTAMOVE_V2_SANDBOX: SandboxV2EndpointId.IOTAMOVE_V2_SANDBOX;
1333
1364
  AVALANCHE_V2_TESTNET: TestnetV2EndpointId.AVALANCHE_V2_TESTNET;
1334
1365
  POLYGON_V2_TESTNET: TestnetV2EndpointId.POLYGON_V2_TESTNET;
1335
1366
  ETHEREUM_V2_TESTNET: TestnetV2EndpointId.ETHEREUM_V2_TESTNET;
@@ -1537,6 +1568,9 @@ declare const EndpointId: {
1537
1568
  OG_V2_TESTNET: TestnetV2EndpointId.OG_V2_TESTNET;
1538
1569
  GATE_V2_TESTNET: TestnetV2EndpointId.GATE_V2_TESTNET;
1539
1570
  ETHEREAL2_V2_TESTNET: TestnetV2EndpointId.ETHEREAL2_V2_TESTNET;
1571
+ DOMA_V2_TESTNET: TestnetV2EndpointId.DOMA_V2_TESTNET;
1572
+ ZAMA_V2_TESTNET: TestnetV2EndpointId.ZAMA_V2_TESTNET;
1573
+ IOTAMOVE_V2_TESTNET: TestnetV2EndpointId.IOTAMOVE_V2_TESTNET;
1540
1574
  ETHEREUM_V2_MAINNET: MainnetV2EndpointId.ETHEREUM_V2_MAINNET;
1541
1575
  BSC_V2_MAINNET: MainnetV2EndpointId.BSC_V2_MAINNET;
1542
1576
  AVALANCHE_V2_MAINNET: MainnetV2EndpointId.AVALANCHE_V2_MAINNET;
@@ -1693,6 +1727,10 @@ declare const EndpointId: {
1693
1727
  GATELAYER_V2_MAINNET: MainnetV2EndpointId.GATELAYER_V2_MAINNET;
1694
1728
  MONAD_V2_MAINNET: MainnetV2EndpointId.MONAD_V2_MAINNET;
1695
1729
  ETHEREAL_V2_MAINNET: MainnetV2EndpointId.ETHEREAL_V2_MAINNET;
1730
+ OPENLEDGER_V2_MAINNET: MainnetV2EndpointId.OPENLEDGER_V2_MAINNET;
1731
+ DOMA_V2_MAINNET: MainnetV2EndpointId.DOMA_V2_MAINNET;
1732
+ INJECTIVEEVM_V2_MAINNET: MainnetV2EndpointId.INJECTIVEEVM_V2_MAINNET;
1733
+ IOTAMOVE_V2_MAINNET: MainnetV2EndpointId.IOTAMOVE_V2_MAINNET;
1696
1734
  BSC_SANDBOX: SandboxEndpointId.BSC_SANDBOX;
1697
1735
  AVALANCHE_SANDBOX: SandboxEndpointId.AVALANCHE_SANDBOX;
1698
1736
  POLYGON_SANDBOX: SandboxEndpointId.POLYGON_SANDBOX;
@@ -1910,6 +1948,8 @@ declare const EndpointId: {
1910
1948
  OG_TESTNET: TestnetEndpointId.OG_TESTNET;
1911
1949
  GATE_TESTNET: TestnetEndpointId.GATE_TESTNET;
1912
1950
  ETHEREAL2_TESTNET: TestnetEndpointId.ETHEREAL2_TESTNET;
1951
+ DOMA_TESTNET: TestnetEndpointId.DOMA_TESTNET;
1952
+ ZAMA_TESTNET: TestnetEndpointId.ZAMA_TESTNET;
1913
1953
  ETHEREUM_MAINNET: MainnetEndpointId.ETHEREUM_MAINNET;
1914
1954
  BSC_MAINNET: MainnetEndpointId.BSC_MAINNET;
1915
1955
  AVALANCHE_MAINNET: MainnetEndpointId.AVALANCHE_MAINNET;
@@ -2062,6 +2102,9 @@ declare const EndpointId: {
2062
2102
  GATELAYER_MAINNET: MainnetEndpointId.GATELAYER_MAINNET;
2063
2103
  MONAD_MAINNET: MainnetEndpointId.MONAD_MAINNET;
2064
2104
  ETHEREAL_MAINNET: MainnetEndpointId.ETHEREAL_MAINNET;
2105
+ OPENLEDGER_MAINNET: MainnetEndpointId.OPENLEDGER_MAINNET;
2106
+ DOMA_MAINNET: MainnetEndpointId.DOMA_MAINNET;
2107
+ INJECTIVEEVM_MAINNET: MainnetEndpointId.INJECTIVEEVM_MAINNET;
2065
2108
  };
2066
2109
  /**
2067
2110
  * Type representing a union of all supported endpoint IDs.
@@ -2316,6 +2359,7 @@ declare enum ChainKey {
2316
2359
  TON_SANDBOX = "ton-sandbox",
2317
2360
  ZKSYNC_SANDBOX = "zksync-sandbox",
2318
2361
  SUI_SANDBOX = "sui-sandbox",
2362
+ IOTAMOVE_SANDBOX = "iotamove-sandbox",
2319
2363
  BOTANIX_TESTNET = "botanix-testnet",
2320
2364
  EBI_TESTNET = "ebi-testnet",
2321
2365
  TRONDEV = "tron-dev",
@@ -2472,6 +2516,8 @@ declare enum ChainKey {
2472
2516
  BOTANIX = "botanix",
2473
2517
  SUI_TESTNET = "sui-testnet",
2474
2518
  SUI = "sui",
2519
+ IOTAMOVE_TESTNET = "iotamove-testnet",
2520
+ IOTAMOVE = "iotamove",
2475
2521
  TACSPB_TESTNET = "tacspb-testnet",
2476
2522
  TAC = "tac",
2477
2523
  SOMNIASHANNON_TESTNET = "somniashannon-testnet",
@@ -2489,6 +2535,7 @@ declare enum ChainKey {
2489
2535
  DINARI = "dinari",
2490
2536
  DINARI_TESTNET = "dinari-testnet",
2491
2537
  OPENLEDGER_TESTNET = "openledger-testnet",
2538
+ OPENLEDGER = "openledger",
2492
2539
  APEXFUSIONNEXUS_TESTNET = "apexfusionnexus-testnet",
2493
2540
  APEXFUSIONNEXUS = "apexfusionnexus",
2494
2541
  PLASMA = "plasma",
@@ -2504,7 +2551,11 @@ declare enum ChainKey {
2504
2551
  ETHEREAL = "ethereal",
2505
2552
  ETHEREAL2_TESTNET = "ethereal2-testnet",
2506
2553
  GATELAYER = "gatelayer",
2507
- MONAD = "monad"
2554
+ MONAD = "monad",
2555
+ DOMA_TESTNET = "doma-testnet",
2556
+ ZAMA_TESTNET = "zama-testnet",
2557
+ DOMA = "doma",
2558
+ INJECTIVEEVM = "injectiveevm"
2508
2559
  }
2509
2560
 
2510
2561
  /**
@@ -2830,6 +2881,13 @@ declare function isInitiaChain(chain: Chain): boolean;
2830
2881
  * @returns {boolean} True if the chain is Placeholder based, false otherwise.
2831
2882
  */
2832
2883
  declare function isSuiChain(chain: Chain): boolean;
2884
+ /**
2885
+ * Determines if a chain is Iota Move based.
2886
+ *
2887
+ * @param {Chain} chain - The chain.
2888
+ * @returns {boolean} True if the chain is Iota Move based, false otherwise.
2889
+ */
2890
+ declare function isIotaMoveChain(chain: Chain): boolean;
2833
2891
  /**
2834
2892
  * Checks if the given value is a valid Chain. {@link Chain}
2835
2893
  *
@@ -2881,4 +2939,4 @@ declare class ChainSpecs {
2881
2939
  static getChainSpec(chainType: ChainType, chain: Chain | 'default'): ChainSpec;
2882
2940
  }
2883
2941
 
2884
- export { AptosChain, CHAIN_KEY, Chain, ChainKey, type ChainSpec, ChainSpecs, ChainType, ChannelId, ENVIRONMENT, EndpointId, type EndpointSpec, EndpointV2IdBase, EndpointVersion, Environment, EvmChain, InitiaChain, MainnetEndpointId, MainnetV2EndpointId, MessageLibCmdRead, type MessageLibVersion, MessageLibVersionV1, MessageLibVersionV2, type Network, SandboxEndpointId, SandboxV2EndpointId, SolanaChain, Stage, SuiChain, TestnetEndpointId, TestnetV2EndpointId, TonChain, ULN_V1_CHAINS, UlnVersion, chainAndStageToEndpointId, chainAndStageToNetwork, chainToChainType, endpointIdToChain, endpointIdToChainKey, endpointIdToChainType, endpointIdToEndpointSpec, endpointIdToNetwork, endpointIdToStage, endpointIdToVersion, endpointSpecToEndpointId, endpointSpecToEnv, endpointSpecToNetwork, getChainIdForNetwork, getChainType, getEndpointVersionForUlnVersion, getNetworkForChainId, getNetworksForStage, isAptosChain, isChain, isEvmChain, isInitiaChain, isNetworkEndpointIdSupported, isSolanaChain, isSuiChain, isTronChain, isZKSyncBasedChain, networkToChain, networkToChainType, networkToEndpointId, networkToEnv, networkToStage };
2942
+ export { AptosChain, CHAIN_KEY, Chain, ChainKey, type ChainSpec, ChainSpecs, ChainType, ChannelId, ENVIRONMENT, EndpointId, type EndpointSpec, EndpointV2IdBase, EndpointVersion, Environment, EvmChain, InitiaChain, IotamoveChain, MainnetEndpointId, MainnetV2EndpointId, MessageLibCmdRead, type MessageLibVersion, MessageLibVersionV1, MessageLibVersionV2, type Network, SandboxEndpointId, SandboxV2EndpointId, SolanaChain, Stage, SuiChain, TestnetEndpointId, TestnetV2EndpointId, TonChain, ULN_V1_CHAINS, UlnVersion, chainAndStageToEndpointId, chainAndStageToNetwork, chainToChainType, endpointIdToChain, endpointIdToChainKey, endpointIdToChainType, endpointIdToEndpointSpec, endpointIdToNetwork, endpointIdToStage, endpointIdToVersion, endpointSpecToEndpointId, endpointSpecToEnv, endpointSpecToNetwork, getChainIdForNetwork, getChainType, getEndpointVersionForUlnVersion, getNetworkForChainId, getNetworksForStage, isAptosChain, isChain, isEvmChain, isInitiaChain, isIotaMoveChain, isNetworkEndpointIdSupported, isSolanaChain, isSuiChain, isTronChain, isZKSyncBasedChain, networkToChain, networkToChainType, networkToEndpointId, networkToEnv, networkToStage };