@layerzerolabs/lz-definitions 3.0.139 → 3.0.141

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
@@ -240,7 +240,11 @@ declare enum EvmChain {
240
240
  GATE = "gate",
241
241
  ETHEREAL2 = "ethereal2",
242
242
  ETHEREALBURNED = "etherealburned",
243
- GATELAYER = "gatelayer"
243
+ GATELAYER = "gatelayer",
244
+ DOMA = "doma",
245
+ ZAMA = "zama",
246
+ INJECTIVEEVM = "injectiveevm",
247
+ NEXERA = "nexera"
244
248
  }
245
249
 
246
250
  /**
@@ -250,6 +254,13 @@ declare enum InitiaChain {
250
254
  INITIA = "initia"
251
255
  }
252
256
 
257
+ /**
258
+ * Enum representing different Iota-compatible chains.
259
+ */
260
+ declare enum IotamoveChain {
261
+ IOTAMOVE = "iotamove"
262
+ }
263
+
253
264
  /**
254
265
  * Enum representing different Solana-compatible chains.
255
266
  */
@@ -274,11 +285,12 @@ declare enum TonChain {
274
285
  /**
275
286
  * Type representing a union of all supported chains.
276
287
  */
277
- type Chain = EvmChain | AptosChain | SolanaChain | InitiaChain | TonChain | SuiChain;
288
+ type Chain = EvmChain | AptosChain | SolanaChain | InitiaChain | TonChain | SuiChain | IotamoveChain;
278
289
  /**
279
290
  * Object containing all supported chains.
280
291
  */
281
292
  declare const Chain: {
293
+ IOTAMOVE: IotamoveChain.IOTAMOVE;
282
294
  SUI: SuiChain.SUI;
283
295
  TON: TonChain.TON;
284
296
  INITIA: InitiaChain.INITIA;
@@ -516,6 +528,10 @@ declare const Chain: {
516
528
  ETHEREAL2: EvmChain.ETHEREAL2;
517
529
  ETHEREALBURNED: EvmChain.ETHEREALBURNED;
518
530
  GATELAYER: EvmChain.GATELAYER;
531
+ DOMA: EvmChain.DOMA;
532
+ ZAMA: EvmChain.ZAMA;
533
+ INJECTIVEEVM: EvmChain.INJECTIVEEVM;
534
+ NEXERA: EvmChain.NEXERA;
519
535
  };
520
536
 
521
537
  /**
@@ -528,7 +544,8 @@ declare enum ChainType {
528
544
  SOLANA = "solana",
529
545
  INITIA = "initia",
530
546
  TON = "ton",
531
- SUI = "sui"
547
+ SUI = "sui",
548
+ IOTAMOVE = "iotamove"
532
549
  }
533
550
 
534
551
  declare const EndpointV2IdBase = 30000;
@@ -688,7 +705,9 @@ declare enum MainnetEndpointId {
688
705
  GATELAYER_MAINNET = 389,
689
706
  MONAD_MAINNET = 390,
690
707
  ETHEREAL_MAINNET = 391,
691
- OPENLEDGER_MAINNET = 392
708
+ OPENLEDGER_MAINNET = 392,
709
+ DOMA_MAINNET = 393,
710
+ INJECTIVEEVM_MAINNET = 394
692
711
  }
693
712
  /**
694
713
  * Enum representing different endpoint ids on testnet. (Adapt Endpoint V1)
@@ -898,7 +917,10 @@ declare enum TestnetEndpointId {
898
917
  LZJK_TESTNET = 10418,
899
918
  OG_TESTNET = 10419,
900
919
  GATE_TESTNET = 10421,
901
- ETHEREAL2_TESTNET = 10422
920
+ ETHEREAL2_TESTNET = 10422,
921
+ DOMA_TESTNET = 10423,
922
+ ZAMA_TESTNET = 10424,
923
+ NEXERA_TESTNET = 10426
902
924
  }
903
925
  /**
904
926
  * Enum representing different endpoint ids on sandbox. (Adapt Endpoint V1)
@@ -1077,7 +1099,10 @@ declare enum MainnetV2EndpointId {
1077
1099
  GATELAYER_V2_MAINNET = 30389,
1078
1100
  MONAD_V2_MAINNET = 30390,
1079
1101
  ETHEREAL_V2_MAINNET = 30391,
1080
- OPENLEDGER_V2_MAINNET = 30392
1102
+ OPENLEDGER_V2_MAINNET = 30392,
1103
+ DOMA_V2_MAINNET = 30393,
1104
+ INJECTIVEEVM_V2_MAINNET = 30394,
1105
+ IOTAMOVE_V2_MAINNET = 30423
1081
1106
  }
1082
1107
  /**
1083
1108
  * Enum representing different endpoint ids on testnet. (Adapt Endpoint V2)
@@ -1289,7 +1314,11 @@ declare enum TestnetV2EndpointId {
1289
1314
  LZJK_V2_TESTNET = 40418,
1290
1315
  OG_V2_TESTNET = 40419,
1291
1316
  GATE_V2_TESTNET = 40421,
1292
- ETHEREAL2_V2_TESTNET = 40422
1317
+ ETHEREAL2_V2_TESTNET = 40422,
1318
+ DOMA_V2_TESTNET = 40425,
1319
+ ZAMA_V2_TESTNET = 40424,
1320
+ IOTAMOVE_V2_TESTNET = 40423,
1321
+ NEXERA_V2_TESTNET = 40426
1293
1322
  }
1294
1323
  /**
1295
1324
  * Enum representing different endpoint ids on sandbox. (Adapt Endpoint V2)
@@ -1310,7 +1339,8 @@ declare enum SandboxV2EndpointId {
1310
1339
  ARBITRUM_V2_SANDBOX = 50231,
1311
1340
  TON_V2_SANDBOX = 50343,
1312
1341
  SUI_V2_SANDBOX = 50378,
1313
- ZKSYNC_V2_SANDBOX = 50165
1342
+ ZKSYNC_V2_SANDBOX = 50165,
1343
+ IOTAMOVE_V2_SANDBOX = 50423
1314
1344
  }
1315
1345
  /**
1316
1346
  * Object containing all supported endpoint IDs.
@@ -1334,6 +1364,7 @@ declare const EndpointId: {
1334
1364
  TON_V2_SANDBOX: SandboxV2EndpointId.TON_V2_SANDBOX;
1335
1365
  SUI_V2_SANDBOX: SandboxV2EndpointId.SUI_V2_SANDBOX;
1336
1366
  ZKSYNC_V2_SANDBOX: SandboxV2EndpointId.ZKSYNC_V2_SANDBOX;
1367
+ IOTAMOVE_V2_SANDBOX: SandboxV2EndpointId.IOTAMOVE_V2_SANDBOX;
1337
1368
  AVALANCHE_V2_TESTNET: TestnetV2EndpointId.AVALANCHE_V2_TESTNET;
1338
1369
  POLYGON_V2_TESTNET: TestnetV2EndpointId.POLYGON_V2_TESTNET;
1339
1370
  ETHEREUM_V2_TESTNET: TestnetV2EndpointId.ETHEREUM_V2_TESTNET;
@@ -1541,6 +1572,10 @@ declare const EndpointId: {
1541
1572
  OG_V2_TESTNET: TestnetV2EndpointId.OG_V2_TESTNET;
1542
1573
  GATE_V2_TESTNET: TestnetV2EndpointId.GATE_V2_TESTNET;
1543
1574
  ETHEREAL2_V2_TESTNET: TestnetV2EndpointId.ETHEREAL2_V2_TESTNET;
1575
+ DOMA_V2_TESTNET: TestnetV2EndpointId.DOMA_V2_TESTNET;
1576
+ ZAMA_V2_TESTNET: TestnetV2EndpointId.ZAMA_V2_TESTNET;
1577
+ IOTAMOVE_V2_TESTNET: TestnetV2EndpointId.IOTAMOVE_V2_TESTNET;
1578
+ NEXERA_V2_TESTNET: TestnetV2EndpointId.NEXERA_V2_TESTNET;
1544
1579
  ETHEREUM_V2_MAINNET: MainnetV2EndpointId.ETHEREUM_V2_MAINNET;
1545
1580
  BSC_V2_MAINNET: MainnetV2EndpointId.BSC_V2_MAINNET;
1546
1581
  AVALANCHE_V2_MAINNET: MainnetV2EndpointId.AVALANCHE_V2_MAINNET;
@@ -1698,6 +1733,9 @@ declare const EndpointId: {
1698
1733
  MONAD_V2_MAINNET: MainnetV2EndpointId.MONAD_V2_MAINNET;
1699
1734
  ETHEREAL_V2_MAINNET: MainnetV2EndpointId.ETHEREAL_V2_MAINNET;
1700
1735
  OPENLEDGER_V2_MAINNET: MainnetV2EndpointId.OPENLEDGER_V2_MAINNET;
1736
+ DOMA_V2_MAINNET: MainnetV2EndpointId.DOMA_V2_MAINNET;
1737
+ INJECTIVEEVM_V2_MAINNET: MainnetV2EndpointId.INJECTIVEEVM_V2_MAINNET;
1738
+ IOTAMOVE_V2_MAINNET: MainnetV2EndpointId.IOTAMOVE_V2_MAINNET;
1701
1739
  BSC_SANDBOX: SandboxEndpointId.BSC_SANDBOX;
1702
1740
  AVALANCHE_SANDBOX: SandboxEndpointId.AVALANCHE_SANDBOX;
1703
1741
  POLYGON_SANDBOX: SandboxEndpointId.POLYGON_SANDBOX;
@@ -1915,6 +1953,9 @@ declare const EndpointId: {
1915
1953
  OG_TESTNET: TestnetEndpointId.OG_TESTNET;
1916
1954
  GATE_TESTNET: TestnetEndpointId.GATE_TESTNET;
1917
1955
  ETHEREAL2_TESTNET: TestnetEndpointId.ETHEREAL2_TESTNET;
1956
+ DOMA_TESTNET: TestnetEndpointId.DOMA_TESTNET;
1957
+ ZAMA_TESTNET: TestnetEndpointId.ZAMA_TESTNET;
1958
+ NEXERA_TESTNET: TestnetEndpointId.NEXERA_TESTNET;
1918
1959
  ETHEREUM_MAINNET: MainnetEndpointId.ETHEREUM_MAINNET;
1919
1960
  BSC_MAINNET: MainnetEndpointId.BSC_MAINNET;
1920
1961
  AVALANCHE_MAINNET: MainnetEndpointId.AVALANCHE_MAINNET;
@@ -2068,6 +2109,8 @@ declare const EndpointId: {
2068
2109
  MONAD_MAINNET: MainnetEndpointId.MONAD_MAINNET;
2069
2110
  ETHEREAL_MAINNET: MainnetEndpointId.ETHEREAL_MAINNET;
2070
2111
  OPENLEDGER_MAINNET: MainnetEndpointId.OPENLEDGER_MAINNET;
2112
+ DOMA_MAINNET: MainnetEndpointId.DOMA_MAINNET;
2113
+ INJECTIVEEVM_MAINNET: MainnetEndpointId.INJECTIVEEVM_MAINNET;
2071
2114
  };
2072
2115
  /**
2073
2116
  * Type representing a union of all supported endpoint IDs.
@@ -2322,6 +2365,7 @@ declare enum ChainKey {
2322
2365
  TON_SANDBOX = "ton-sandbox",
2323
2366
  ZKSYNC_SANDBOX = "zksync-sandbox",
2324
2367
  SUI_SANDBOX = "sui-sandbox",
2368
+ IOTAMOVE_SANDBOX = "iotamove-sandbox",
2325
2369
  BOTANIX_TESTNET = "botanix-testnet",
2326
2370
  EBI_TESTNET = "ebi-testnet",
2327
2371
  TRONDEV = "tron-dev",
@@ -2478,6 +2522,8 @@ declare enum ChainKey {
2478
2522
  BOTANIX = "botanix",
2479
2523
  SUI_TESTNET = "sui-testnet",
2480
2524
  SUI = "sui",
2525
+ IOTAMOVE_TESTNET = "iotamove-testnet",
2526
+ IOTAMOVE = "iotamove",
2481
2527
  TACSPB_TESTNET = "tacspb-testnet",
2482
2528
  TAC = "tac",
2483
2529
  SOMNIASHANNON_TESTNET = "somniashannon-testnet",
@@ -2511,7 +2557,12 @@ declare enum ChainKey {
2511
2557
  ETHEREAL = "ethereal",
2512
2558
  ETHEREAL2_TESTNET = "ethereal2-testnet",
2513
2559
  GATELAYER = "gatelayer",
2514
- MONAD = "monad"
2560
+ MONAD = "monad",
2561
+ DOMA_TESTNET = "doma-testnet",
2562
+ ZAMA_TESTNET = "zama-testnet",
2563
+ DOMA = "doma",
2564
+ INJECTIVEEVM = "injectiveevm",
2565
+ NEXERA_TESTNET = "nexera"
2515
2566
  }
2516
2567
 
2517
2568
  /**
@@ -2837,6 +2888,13 @@ declare function isInitiaChain(chain: Chain): boolean;
2837
2888
  * @returns {boolean} True if the chain is Placeholder based, false otherwise.
2838
2889
  */
2839
2890
  declare function isSuiChain(chain: Chain): boolean;
2891
+ /**
2892
+ * Determines if a chain is Iota Move based.
2893
+ *
2894
+ * @param {Chain} chain - The chain.
2895
+ * @returns {boolean} True if the chain is Iota Move based, false otherwise.
2896
+ */
2897
+ declare function isIotaMoveChain(chain: Chain): boolean;
2840
2898
  /**
2841
2899
  * Checks if the given value is a valid Chain. {@link Chain}
2842
2900
  *
@@ -2888,4 +2946,4 @@ declare class ChainSpecs {
2888
2946
  static getChainSpec(chainType: ChainType, chain: Chain | 'default'): ChainSpec;
2889
2947
  }
2890
2948
 
2891
- 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 };
2949
+ 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
@@ -240,7 +240,11 @@ declare enum EvmChain {
240
240
  GATE = "gate",
241
241
  ETHEREAL2 = "ethereal2",
242
242
  ETHEREALBURNED = "etherealburned",
243
- GATELAYER = "gatelayer"
243
+ GATELAYER = "gatelayer",
244
+ DOMA = "doma",
245
+ ZAMA = "zama",
246
+ INJECTIVEEVM = "injectiveevm",
247
+ NEXERA = "nexera"
244
248
  }
245
249
 
246
250
  /**
@@ -250,6 +254,13 @@ declare enum InitiaChain {
250
254
  INITIA = "initia"
251
255
  }
252
256
 
257
+ /**
258
+ * Enum representing different Iota-compatible chains.
259
+ */
260
+ declare enum IotamoveChain {
261
+ IOTAMOVE = "iotamove"
262
+ }
263
+
253
264
  /**
254
265
  * Enum representing different Solana-compatible chains.
255
266
  */
@@ -274,11 +285,12 @@ declare enum TonChain {
274
285
  /**
275
286
  * Type representing a union of all supported chains.
276
287
  */
277
- type Chain = EvmChain | AptosChain | SolanaChain | InitiaChain | TonChain | SuiChain;
288
+ type Chain = EvmChain | AptosChain | SolanaChain | InitiaChain | TonChain | SuiChain | IotamoveChain;
278
289
  /**
279
290
  * Object containing all supported chains.
280
291
  */
281
292
  declare const Chain: {
293
+ IOTAMOVE: IotamoveChain.IOTAMOVE;
282
294
  SUI: SuiChain.SUI;
283
295
  TON: TonChain.TON;
284
296
  INITIA: InitiaChain.INITIA;
@@ -516,6 +528,10 @@ declare const Chain: {
516
528
  ETHEREAL2: EvmChain.ETHEREAL2;
517
529
  ETHEREALBURNED: EvmChain.ETHEREALBURNED;
518
530
  GATELAYER: EvmChain.GATELAYER;
531
+ DOMA: EvmChain.DOMA;
532
+ ZAMA: EvmChain.ZAMA;
533
+ INJECTIVEEVM: EvmChain.INJECTIVEEVM;
534
+ NEXERA: EvmChain.NEXERA;
519
535
  };
520
536
 
521
537
  /**
@@ -528,7 +544,8 @@ declare enum ChainType {
528
544
  SOLANA = "solana",
529
545
  INITIA = "initia",
530
546
  TON = "ton",
531
- SUI = "sui"
547
+ SUI = "sui",
548
+ IOTAMOVE = "iotamove"
532
549
  }
533
550
 
534
551
  declare const EndpointV2IdBase = 30000;
@@ -688,7 +705,9 @@ declare enum MainnetEndpointId {
688
705
  GATELAYER_MAINNET = 389,
689
706
  MONAD_MAINNET = 390,
690
707
  ETHEREAL_MAINNET = 391,
691
- OPENLEDGER_MAINNET = 392
708
+ OPENLEDGER_MAINNET = 392,
709
+ DOMA_MAINNET = 393,
710
+ INJECTIVEEVM_MAINNET = 394
692
711
  }
693
712
  /**
694
713
  * Enum representing different endpoint ids on testnet. (Adapt Endpoint V1)
@@ -898,7 +917,10 @@ declare enum TestnetEndpointId {
898
917
  LZJK_TESTNET = 10418,
899
918
  OG_TESTNET = 10419,
900
919
  GATE_TESTNET = 10421,
901
- ETHEREAL2_TESTNET = 10422
920
+ ETHEREAL2_TESTNET = 10422,
921
+ DOMA_TESTNET = 10423,
922
+ ZAMA_TESTNET = 10424,
923
+ NEXERA_TESTNET = 10426
902
924
  }
903
925
  /**
904
926
  * Enum representing different endpoint ids on sandbox. (Adapt Endpoint V1)
@@ -1077,7 +1099,10 @@ declare enum MainnetV2EndpointId {
1077
1099
  GATELAYER_V2_MAINNET = 30389,
1078
1100
  MONAD_V2_MAINNET = 30390,
1079
1101
  ETHEREAL_V2_MAINNET = 30391,
1080
- OPENLEDGER_V2_MAINNET = 30392
1102
+ OPENLEDGER_V2_MAINNET = 30392,
1103
+ DOMA_V2_MAINNET = 30393,
1104
+ INJECTIVEEVM_V2_MAINNET = 30394,
1105
+ IOTAMOVE_V2_MAINNET = 30423
1081
1106
  }
1082
1107
  /**
1083
1108
  * Enum representing different endpoint ids on testnet. (Adapt Endpoint V2)
@@ -1289,7 +1314,11 @@ declare enum TestnetV2EndpointId {
1289
1314
  LZJK_V2_TESTNET = 40418,
1290
1315
  OG_V2_TESTNET = 40419,
1291
1316
  GATE_V2_TESTNET = 40421,
1292
- ETHEREAL2_V2_TESTNET = 40422
1317
+ ETHEREAL2_V2_TESTNET = 40422,
1318
+ DOMA_V2_TESTNET = 40425,
1319
+ ZAMA_V2_TESTNET = 40424,
1320
+ IOTAMOVE_V2_TESTNET = 40423,
1321
+ NEXERA_V2_TESTNET = 40426
1293
1322
  }
1294
1323
  /**
1295
1324
  * Enum representing different endpoint ids on sandbox. (Adapt Endpoint V2)
@@ -1310,7 +1339,8 @@ declare enum SandboxV2EndpointId {
1310
1339
  ARBITRUM_V2_SANDBOX = 50231,
1311
1340
  TON_V2_SANDBOX = 50343,
1312
1341
  SUI_V2_SANDBOX = 50378,
1313
- ZKSYNC_V2_SANDBOX = 50165
1342
+ ZKSYNC_V2_SANDBOX = 50165,
1343
+ IOTAMOVE_V2_SANDBOX = 50423
1314
1344
  }
1315
1345
  /**
1316
1346
  * Object containing all supported endpoint IDs.
@@ -1334,6 +1364,7 @@ declare const EndpointId: {
1334
1364
  TON_V2_SANDBOX: SandboxV2EndpointId.TON_V2_SANDBOX;
1335
1365
  SUI_V2_SANDBOX: SandboxV2EndpointId.SUI_V2_SANDBOX;
1336
1366
  ZKSYNC_V2_SANDBOX: SandboxV2EndpointId.ZKSYNC_V2_SANDBOX;
1367
+ IOTAMOVE_V2_SANDBOX: SandboxV2EndpointId.IOTAMOVE_V2_SANDBOX;
1337
1368
  AVALANCHE_V2_TESTNET: TestnetV2EndpointId.AVALANCHE_V2_TESTNET;
1338
1369
  POLYGON_V2_TESTNET: TestnetV2EndpointId.POLYGON_V2_TESTNET;
1339
1370
  ETHEREUM_V2_TESTNET: TestnetV2EndpointId.ETHEREUM_V2_TESTNET;
@@ -1541,6 +1572,10 @@ declare const EndpointId: {
1541
1572
  OG_V2_TESTNET: TestnetV2EndpointId.OG_V2_TESTNET;
1542
1573
  GATE_V2_TESTNET: TestnetV2EndpointId.GATE_V2_TESTNET;
1543
1574
  ETHEREAL2_V2_TESTNET: TestnetV2EndpointId.ETHEREAL2_V2_TESTNET;
1575
+ DOMA_V2_TESTNET: TestnetV2EndpointId.DOMA_V2_TESTNET;
1576
+ ZAMA_V2_TESTNET: TestnetV2EndpointId.ZAMA_V2_TESTNET;
1577
+ IOTAMOVE_V2_TESTNET: TestnetV2EndpointId.IOTAMOVE_V2_TESTNET;
1578
+ NEXERA_V2_TESTNET: TestnetV2EndpointId.NEXERA_V2_TESTNET;
1544
1579
  ETHEREUM_V2_MAINNET: MainnetV2EndpointId.ETHEREUM_V2_MAINNET;
1545
1580
  BSC_V2_MAINNET: MainnetV2EndpointId.BSC_V2_MAINNET;
1546
1581
  AVALANCHE_V2_MAINNET: MainnetV2EndpointId.AVALANCHE_V2_MAINNET;
@@ -1698,6 +1733,9 @@ declare const EndpointId: {
1698
1733
  MONAD_V2_MAINNET: MainnetV2EndpointId.MONAD_V2_MAINNET;
1699
1734
  ETHEREAL_V2_MAINNET: MainnetV2EndpointId.ETHEREAL_V2_MAINNET;
1700
1735
  OPENLEDGER_V2_MAINNET: MainnetV2EndpointId.OPENLEDGER_V2_MAINNET;
1736
+ DOMA_V2_MAINNET: MainnetV2EndpointId.DOMA_V2_MAINNET;
1737
+ INJECTIVEEVM_V2_MAINNET: MainnetV2EndpointId.INJECTIVEEVM_V2_MAINNET;
1738
+ IOTAMOVE_V2_MAINNET: MainnetV2EndpointId.IOTAMOVE_V2_MAINNET;
1701
1739
  BSC_SANDBOX: SandboxEndpointId.BSC_SANDBOX;
1702
1740
  AVALANCHE_SANDBOX: SandboxEndpointId.AVALANCHE_SANDBOX;
1703
1741
  POLYGON_SANDBOX: SandboxEndpointId.POLYGON_SANDBOX;
@@ -1915,6 +1953,9 @@ declare const EndpointId: {
1915
1953
  OG_TESTNET: TestnetEndpointId.OG_TESTNET;
1916
1954
  GATE_TESTNET: TestnetEndpointId.GATE_TESTNET;
1917
1955
  ETHEREAL2_TESTNET: TestnetEndpointId.ETHEREAL2_TESTNET;
1956
+ DOMA_TESTNET: TestnetEndpointId.DOMA_TESTNET;
1957
+ ZAMA_TESTNET: TestnetEndpointId.ZAMA_TESTNET;
1958
+ NEXERA_TESTNET: TestnetEndpointId.NEXERA_TESTNET;
1918
1959
  ETHEREUM_MAINNET: MainnetEndpointId.ETHEREUM_MAINNET;
1919
1960
  BSC_MAINNET: MainnetEndpointId.BSC_MAINNET;
1920
1961
  AVALANCHE_MAINNET: MainnetEndpointId.AVALANCHE_MAINNET;
@@ -2068,6 +2109,8 @@ declare const EndpointId: {
2068
2109
  MONAD_MAINNET: MainnetEndpointId.MONAD_MAINNET;
2069
2110
  ETHEREAL_MAINNET: MainnetEndpointId.ETHEREAL_MAINNET;
2070
2111
  OPENLEDGER_MAINNET: MainnetEndpointId.OPENLEDGER_MAINNET;
2112
+ DOMA_MAINNET: MainnetEndpointId.DOMA_MAINNET;
2113
+ INJECTIVEEVM_MAINNET: MainnetEndpointId.INJECTIVEEVM_MAINNET;
2071
2114
  };
2072
2115
  /**
2073
2116
  * Type representing a union of all supported endpoint IDs.
@@ -2322,6 +2365,7 @@ declare enum ChainKey {
2322
2365
  TON_SANDBOX = "ton-sandbox",
2323
2366
  ZKSYNC_SANDBOX = "zksync-sandbox",
2324
2367
  SUI_SANDBOX = "sui-sandbox",
2368
+ IOTAMOVE_SANDBOX = "iotamove-sandbox",
2325
2369
  BOTANIX_TESTNET = "botanix-testnet",
2326
2370
  EBI_TESTNET = "ebi-testnet",
2327
2371
  TRONDEV = "tron-dev",
@@ -2478,6 +2522,8 @@ declare enum ChainKey {
2478
2522
  BOTANIX = "botanix",
2479
2523
  SUI_TESTNET = "sui-testnet",
2480
2524
  SUI = "sui",
2525
+ IOTAMOVE_TESTNET = "iotamove-testnet",
2526
+ IOTAMOVE = "iotamove",
2481
2527
  TACSPB_TESTNET = "tacspb-testnet",
2482
2528
  TAC = "tac",
2483
2529
  SOMNIASHANNON_TESTNET = "somniashannon-testnet",
@@ -2511,7 +2557,12 @@ declare enum ChainKey {
2511
2557
  ETHEREAL = "ethereal",
2512
2558
  ETHEREAL2_TESTNET = "ethereal2-testnet",
2513
2559
  GATELAYER = "gatelayer",
2514
- MONAD = "monad"
2560
+ MONAD = "monad",
2561
+ DOMA_TESTNET = "doma-testnet",
2562
+ ZAMA_TESTNET = "zama-testnet",
2563
+ DOMA = "doma",
2564
+ INJECTIVEEVM = "injectiveevm",
2565
+ NEXERA_TESTNET = "nexera"
2515
2566
  }
2516
2567
 
2517
2568
  /**
@@ -2837,6 +2888,13 @@ declare function isInitiaChain(chain: Chain): boolean;
2837
2888
  * @returns {boolean} True if the chain is Placeholder based, false otherwise.
2838
2889
  */
2839
2890
  declare function isSuiChain(chain: Chain): boolean;
2891
+ /**
2892
+ * Determines if a chain is Iota Move based.
2893
+ *
2894
+ * @param {Chain} chain - The chain.
2895
+ * @returns {boolean} True if the chain is Iota Move based, false otherwise.
2896
+ */
2897
+ declare function isIotaMoveChain(chain: Chain): boolean;
2840
2898
  /**
2841
2899
  * Checks if the given value is a valid Chain. {@link Chain}
2842
2900
  *
@@ -2888,4 +2946,4 @@ declare class ChainSpecs {
2888
2946
  static getChainSpec(chainType: ChainType, chain: Chain | 'default'): ChainSpec;
2889
2947
  }
2890
2948
 
2891
- 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 };
2949
+ 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 };