@circle-fin/app-kit 1.0.1 → 1.1.0
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/README.md +4 -4
- package/chains.cjs +184 -0
- package/chains.d.ts +4 -0
- package/chains.mjs +184 -0
- package/index.cjs +195 -3
- package/index.d.ts +192 -0
- package/index.mjs +195 -3
- package/package.json +3 -3
package/index.cjs
CHANGED
|
@@ -3225,6 +3225,8 @@ exports.Blockchain = void 0;
|
|
|
3225
3225
|
Blockchain["Celo_Alfajores_Testnet"] = "Celo_Alfajores_Testnet";
|
|
3226
3226
|
Blockchain["Codex"] = "Codex";
|
|
3227
3227
|
Blockchain["Codex_Testnet"] = "Codex_Testnet";
|
|
3228
|
+
Blockchain["Edge"] = "Edge";
|
|
3229
|
+
Blockchain["Edge_Testnet"] = "Edge_Testnet";
|
|
3228
3230
|
Blockchain["Ethereum"] = "Ethereum";
|
|
3229
3231
|
Blockchain["Ethereum_Sepolia"] = "Ethereum_Sepolia";
|
|
3230
3232
|
Blockchain["Hedera"] = "Hedera";
|
|
@@ -3237,6 +3239,8 @@ exports.Blockchain = void 0;
|
|
|
3237
3239
|
Blockchain["Linea_Sepolia"] = "Linea_Sepolia";
|
|
3238
3240
|
Blockchain["Monad"] = "Monad";
|
|
3239
3241
|
Blockchain["Monad_Testnet"] = "Monad_Testnet";
|
|
3242
|
+
Blockchain["Morph"] = "Morph";
|
|
3243
|
+
Blockchain["Morph_Testnet"] = "Morph_Testnet";
|
|
3240
3244
|
Blockchain["NEAR"] = "NEAR";
|
|
3241
3245
|
Blockchain["NEAR_Testnet"] = "NEAR_Testnet";
|
|
3242
3246
|
Blockchain["Noble"] = "Noble";
|
|
@@ -3440,11 +3444,13 @@ exports.BridgeChain = void 0;
|
|
|
3440
3444
|
BridgeChain["Avalanche"] = "Avalanche";
|
|
3441
3445
|
BridgeChain["Base"] = "Base";
|
|
3442
3446
|
BridgeChain["Codex"] = "Codex";
|
|
3447
|
+
BridgeChain["Edge"] = "Edge";
|
|
3443
3448
|
BridgeChain["Ethereum"] = "Ethereum";
|
|
3444
3449
|
BridgeChain["HyperEVM"] = "HyperEVM";
|
|
3445
3450
|
BridgeChain["Ink"] = "Ink";
|
|
3446
3451
|
BridgeChain["Linea"] = "Linea";
|
|
3447
3452
|
BridgeChain["Monad"] = "Monad";
|
|
3453
|
+
BridgeChain["Morph"] = "Morph";
|
|
3448
3454
|
BridgeChain["Optimism"] = "Optimism";
|
|
3449
3455
|
BridgeChain["Plume"] = "Plume";
|
|
3450
3456
|
BridgeChain["Polygon"] = "Polygon";
|
|
@@ -3460,11 +3466,13 @@ exports.BridgeChain = void 0;
|
|
|
3460
3466
|
BridgeChain["Avalanche_Fuji"] = "Avalanche_Fuji";
|
|
3461
3467
|
BridgeChain["Base_Sepolia"] = "Base_Sepolia";
|
|
3462
3468
|
BridgeChain["Codex_Testnet"] = "Codex_Testnet";
|
|
3469
|
+
BridgeChain["Edge_Testnet"] = "Edge_Testnet";
|
|
3463
3470
|
BridgeChain["Ethereum_Sepolia"] = "Ethereum_Sepolia";
|
|
3464
3471
|
BridgeChain["HyperEVM_Testnet"] = "HyperEVM_Testnet";
|
|
3465
3472
|
BridgeChain["Ink_Testnet"] = "Ink_Testnet";
|
|
3466
3473
|
BridgeChain["Linea_Sepolia"] = "Linea_Sepolia";
|
|
3467
3474
|
BridgeChain["Monad_Testnet"] = "Monad_Testnet";
|
|
3475
|
+
BridgeChain["Morph_Testnet"] = "Morph_Testnet";
|
|
3468
3476
|
BridgeChain["Optimism_Sepolia"] = "Optimism_Sepolia";
|
|
3469
3477
|
BridgeChain["Plume_Testnet"] = "Plume_Testnet";
|
|
3470
3478
|
BridgeChain["Polygon_Amoy_Testnet"] = "Polygon_Amoy_Testnet";
|
|
@@ -4274,6 +4282,94 @@ const CodexTestnet = defineChain({
|
|
|
4274
4282
|
},
|
|
4275
4283
|
});
|
|
4276
4284
|
|
|
4285
|
+
/**
|
|
4286
|
+
* Edge Mainnet chain definition
|
|
4287
|
+
* @remarks
|
|
4288
|
+
* This represents the official production network for the Edge blockchain.
|
|
4289
|
+
* Edge is an EVM-compatible blockchain.
|
|
4290
|
+
*/
|
|
4291
|
+
const Edge = defineChain({
|
|
4292
|
+
type: 'evm',
|
|
4293
|
+
chain: exports.Blockchain.Edge,
|
|
4294
|
+
name: 'Edge',
|
|
4295
|
+
title: 'Edge Mainnet',
|
|
4296
|
+
nativeCurrency: {
|
|
4297
|
+
name: 'Ether',
|
|
4298
|
+
symbol: 'ETH',
|
|
4299
|
+
decimals: 18,
|
|
4300
|
+
},
|
|
4301
|
+
chainId: 3343,
|
|
4302
|
+
isTestnet: false,
|
|
4303
|
+
explorerUrl: 'https://pro.edgex.exchange/en-US/explorer/tx/{hash}',
|
|
4304
|
+
rpcEndpoints: ['https://edge-mainnet.g.alchemy.com/public'],
|
|
4305
|
+
eurcAddress: null,
|
|
4306
|
+
usdcAddress: '0x98d2919b9A214E6Fa5384AC81E6864bA686Ad74c',
|
|
4307
|
+
usdtAddress: null,
|
|
4308
|
+
cctp: {
|
|
4309
|
+
domain: 28,
|
|
4310
|
+
contracts: {
|
|
4311
|
+
v2: {
|
|
4312
|
+
type: 'split',
|
|
4313
|
+
tokenMessenger: '0x98706A006bc632Df31CAdFCBD43F38887ce2ca5c',
|
|
4314
|
+
messageTransmitter: '0x5b61381Fc9e58E70EfC13a4A97516997019198ee',
|
|
4315
|
+
confirmations: 65,
|
|
4316
|
+
fastConfirmations: 1,
|
|
4317
|
+
},
|
|
4318
|
+
},
|
|
4319
|
+
forwarderSupported: {
|
|
4320
|
+
source: true,
|
|
4321
|
+
destination: true,
|
|
4322
|
+
},
|
|
4323
|
+
},
|
|
4324
|
+
kitContracts: {
|
|
4325
|
+
bridge: '0x6D1AaE1c34Aeb582022916a67f2A655C6f4eDFF2', //Unique bridge address as CCTP address for Edge is also unique
|
|
4326
|
+
},
|
|
4327
|
+
});
|
|
4328
|
+
|
|
4329
|
+
/**
|
|
4330
|
+
* Edge Testnet chain definition
|
|
4331
|
+
* @remarks
|
|
4332
|
+
* This represents the official test network for the Edge blockchain.
|
|
4333
|
+
* Edge is an EVM-compatible blockchain.
|
|
4334
|
+
*/
|
|
4335
|
+
const EdgeTestnet = defineChain({
|
|
4336
|
+
type: 'evm',
|
|
4337
|
+
chain: exports.Blockchain.Edge_Testnet,
|
|
4338
|
+
name: 'Edge Testnet',
|
|
4339
|
+
title: 'Edge Testnet',
|
|
4340
|
+
nativeCurrency: {
|
|
4341
|
+
name: 'Ether',
|
|
4342
|
+
symbol: 'ETH',
|
|
4343
|
+
decimals: 18,
|
|
4344
|
+
},
|
|
4345
|
+
chainId: 33431,
|
|
4346
|
+
isTestnet: true,
|
|
4347
|
+
explorerUrl: 'https://edge-testnet.explorer.alchemy.com/tx/{hash}',
|
|
4348
|
+
rpcEndpoints: ['https://edge-testnet.g.alchemy.com/public'],
|
|
4349
|
+
eurcAddress: null,
|
|
4350
|
+
usdcAddress: '0x2d9F7CAD728051AA35Ecdc472a14cf8cDF5CFD6B',
|
|
4351
|
+
usdtAddress: null,
|
|
4352
|
+
cctp: {
|
|
4353
|
+
domain: 28,
|
|
4354
|
+
contracts: {
|
|
4355
|
+
v2: {
|
|
4356
|
+
type: 'split',
|
|
4357
|
+
tokenMessenger: '0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA',
|
|
4358
|
+
messageTransmitter: '0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275',
|
|
4359
|
+
confirmations: 65,
|
|
4360
|
+
fastConfirmations: 1,
|
|
4361
|
+
},
|
|
4362
|
+
},
|
|
4363
|
+
forwarderSupported: {
|
|
4364
|
+
source: true,
|
|
4365
|
+
destination: true,
|
|
4366
|
+
},
|
|
4367
|
+
},
|
|
4368
|
+
kitContracts: {
|
|
4369
|
+
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
4370
|
+
},
|
|
4371
|
+
});
|
|
4372
|
+
|
|
4277
4373
|
/**
|
|
4278
4374
|
* Ethereum Mainnet chain definition
|
|
4279
4375
|
* @remarks
|
|
@@ -4785,6 +4881,94 @@ const MonadTestnet = defineChain({
|
|
|
4785
4881
|
},
|
|
4786
4882
|
});
|
|
4787
4883
|
|
|
4884
|
+
/**
|
|
4885
|
+
* Morph Mainnet chain definition
|
|
4886
|
+
* @remarks
|
|
4887
|
+
* This represents the official production network for the Morph blockchain.
|
|
4888
|
+
* Morph is an EVM-compatible Layer-2 blockchain built on the OP Stack.
|
|
4889
|
+
*/
|
|
4890
|
+
const Morph = defineChain({
|
|
4891
|
+
type: 'evm',
|
|
4892
|
+
chain: exports.Blockchain.Morph,
|
|
4893
|
+
name: 'Morph',
|
|
4894
|
+
title: 'Morph Mainnet',
|
|
4895
|
+
nativeCurrency: {
|
|
4896
|
+
name: 'Ether',
|
|
4897
|
+
symbol: 'ETH',
|
|
4898
|
+
decimals: 18,
|
|
4899
|
+
},
|
|
4900
|
+
chainId: 2818,
|
|
4901
|
+
isTestnet: false,
|
|
4902
|
+
explorerUrl: 'https://explorer.morph.network/tx/{hash}',
|
|
4903
|
+
rpcEndpoints: ['https://rpc.morphl2.io'],
|
|
4904
|
+
eurcAddress: null,
|
|
4905
|
+
usdcAddress: '0xCfb1186F4e93D60E60a8bDd997427D1F33bc372B',
|
|
4906
|
+
usdtAddress: null,
|
|
4907
|
+
cctp: {
|
|
4908
|
+
domain: 30,
|
|
4909
|
+
contracts: {
|
|
4910
|
+
v2: {
|
|
4911
|
+
type: 'split',
|
|
4912
|
+
tokenMessenger: '0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d',
|
|
4913
|
+
messageTransmitter: '0x81D40F21F12A8F0E3252Bccb954D722d4c464B64',
|
|
4914
|
+
confirmations: 64,
|
|
4915
|
+
fastConfirmations: 1,
|
|
4916
|
+
},
|
|
4917
|
+
},
|
|
4918
|
+
forwarderSupported: {
|
|
4919
|
+
source: false,
|
|
4920
|
+
destination: false,
|
|
4921
|
+
},
|
|
4922
|
+
},
|
|
4923
|
+
kitContracts: {
|
|
4924
|
+
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
4925
|
+
},
|
|
4926
|
+
});
|
|
4927
|
+
|
|
4928
|
+
/**
|
|
4929
|
+
* Morph Hoodi Testnet chain definition
|
|
4930
|
+
* @remarks
|
|
4931
|
+
* This represents the official test network for the Morph blockchain.
|
|
4932
|
+
* Morph is an EVM-compatible Layer-2 blockchain built on the OP Stack.
|
|
4933
|
+
*/
|
|
4934
|
+
const MorphTestnet = defineChain({
|
|
4935
|
+
type: 'evm',
|
|
4936
|
+
chain: exports.Blockchain.Morph_Testnet,
|
|
4937
|
+
name: 'Morph Hoodi',
|
|
4938
|
+
title: 'Morph Hoodi Testnet',
|
|
4939
|
+
nativeCurrency: {
|
|
4940
|
+
name: 'Ether',
|
|
4941
|
+
symbol: 'ETH',
|
|
4942
|
+
decimals: 18,
|
|
4943
|
+
},
|
|
4944
|
+
chainId: 2910,
|
|
4945
|
+
isTestnet: true,
|
|
4946
|
+
explorerUrl: 'https://explorer-hoodi.morphl2.io/tx/{hash}',
|
|
4947
|
+
rpcEndpoints: ['https://rpc-hoodi.morphl2.io'],
|
|
4948
|
+
eurcAddress: null,
|
|
4949
|
+
usdcAddress: '0x7433b41C6c5e1d58D4Da99483609520255ab661B',
|
|
4950
|
+
usdtAddress: null,
|
|
4951
|
+
cctp: {
|
|
4952
|
+
domain: 30,
|
|
4953
|
+
contracts: {
|
|
4954
|
+
v2: {
|
|
4955
|
+
type: 'split',
|
|
4956
|
+
tokenMessenger: '0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA',
|
|
4957
|
+
messageTransmitter: '0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275',
|
|
4958
|
+
confirmations: 64,
|
|
4959
|
+
fastConfirmations: 1,
|
|
4960
|
+
},
|
|
4961
|
+
},
|
|
4962
|
+
forwarderSupported: {
|
|
4963
|
+
source: false,
|
|
4964
|
+
destination: false,
|
|
4965
|
+
},
|
|
4966
|
+
},
|
|
4967
|
+
kitContracts: {
|
|
4968
|
+
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
4969
|
+
},
|
|
4970
|
+
});
|
|
4971
|
+
|
|
4788
4972
|
/**
|
|
4789
4973
|
* NEAR Protocol Mainnet chain definition
|
|
4790
4974
|
* @remarks
|
|
@@ -5985,6 +6169,8 @@ var Chains = {
|
|
|
5985
6169
|
CeloAlfajoresTestnet: CeloAlfajoresTestnet,
|
|
5986
6170
|
Codex: Codex,
|
|
5987
6171
|
CodexTestnet: CodexTestnet,
|
|
6172
|
+
Edge: Edge,
|
|
6173
|
+
EdgeTestnet: EdgeTestnet,
|
|
5988
6174
|
Ethereum: Ethereum,
|
|
5989
6175
|
EthereumSepolia: EthereumSepolia,
|
|
5990
6176
|
Hedera: Hedera,
|
|
@@ -5997,6 +6183,8 @@ var Chains = {
|
|
|
5997
6183
|
LineaSepolia: LineaSepolia,
|
|
5998
6184
|
Monad: Monad,
|
|
5999
6185
|
MonadTestnet: MonadTestnet,
|
|
6186
|
+
Morph: Morph,
|
|
6187
|
+
MorphTestnet: MorphTestnet,
|
|
6000
6188
|
NEAR: NEAR,
|
|
6001
6189
|
NEARTestnet: NEARTestnet,
|
|
6002
6190
|
Noble: Noble,
|
|
@@ -7993,12 +8181,14 @@ const USDC = {
|
|
|
7993
8181
|
[exports.Blockchain.Base]: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
|
|
7994
8182
|
[exports.Blockchain.Celo]: '0xcebA9300f2b948710d2653dD7B07f33A8B32118C',
|
|
7995
8183
|
[exports.Blockchain.Codex]: '0xd996633a415985DBd7D6D12f4A4343E31f5037cf',
|
|
8184
|
+
[exports.Blockchain.Edge]: '0x98d2919b9A214E6Fa5384AC81E6864bA686Ad74c',
|
|
7996
8185
|
[exports.Blockchain.Ethereum]: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
|
|
7997
8186
|
[exports.Blockchain.Hedera]: '0.0.456858',
|
|
7998
8187
|
[exports.Blockchain.HyperEVM]: '0xb88339CB7199b77E23DB6E890353E22632Ba630f',
|
|
7999
8188
|
[exports.Blockchain.Ink]: '0x2D270e6886d130D724215A266106e6832161EAEd',
|
|
8000
8189
|
[exports.Blockchain.Linea]: '0x176211869ca2b568f2a7d4ee941e073a821ee1ff',
|
|
8001
8190
|
[exports.Blockchain.Monad]: '0x754704Bc059F8C67012fEd69BC8A327a5aafb603',
|
|
8191
|
+
[exports.Blockchain.Morph]: '0xCfb1186F4e93D60E60a8bDd997427D1F33bc372B',
|
|
8002
8192
|
[exports.Blockchain.NEAR]: '17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1',
|
|
8003
8193
|
[exports.Blockchain.Noble]: 'uusdc',
|
|
8004
8194
|
[exports.Blockchain.Optimism]: '0x0b2c639c533813f4aa9d7837caf62653d097ff85',
|
|
@@ -8021,12 +8211,14 @@ const USDC = {
|
|
|
8021
8211
|
[exports.Blockchain.Avalanche_Fuji]: '0x5425890298aed601595a70AB815c96711a31Bc65',
|
|
8022
8212
|
[exports.Blockchain.Base_Sepolia]: '0x036CbD53842c5426634e7929541eC2318f3dCF7e',
|
|
8023
8213
|
[exports.Blockchain.Codex_Testnet]: '0x6d7f141b6819C2c9CC2f818e6ad549E7Ca090F8f',
|
|
8214
|
+
[exports.Blockchain.Edge_Testnet]: '0x2d9F7CAD728051AA35Ecdc472a14cf8cDF5CFD6B',
|
|
8024
8215
|
[exports.Blockchain.Ethereum_Sepolia]: '0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238',
|
|
8025
8216
|
[exports.Blockchain.Hedera_Testnet]: '0.0.429274',
|
|
8026
8217
|
[exports.Blockchain.HyperEVM_Testnet]: '0x2B3370eE501B4a559b57D449569354196457D8Ab',
|
|
8027
8218
|
[exports.Blockchain.Ink_Testnet]: '0xFabab97dCE620294D2B0b0e46C68964e326300Ac',
|
|
8028
8219
|
[exports.Blockchain.Linea_Sepolia]: '0xfece4462d57bd51a6a552365a011b95f0e16d9b7',
|
|
8029
8220
|
[exports.Blockchain.Monad_Testnet]: '0x534b2f3A21130d7a60830c2Df862319e593943A3',
|
|
8221
|
+
[exports.Blockchain.Morph_Testnet]: '0x7433b41C6c5e1d58D4Da99483609520255ab661B',
|
|
8030
8222
|
[exports.Blockchain.NEAR_Testnet]: '3e2210e1184b45b64c8a434c0a7e7b23cc04ea7eb7a6c3c32520d03d4afcb8af',
|
|
8031
8223
|
[exports.Blockchain.Noble_Testnet]: 'uusdc',
|
|
8032
8224
|
[exports.Blockchain.Optimism_Sepolia]: '0x5fd84259d66Cd46123540766Be93DFE6D43130D7',
|
|
@@ -9015,7 +9207,7 @@ function buildForwardingHookData() {
|
|
|
9015
9207
|
}
|
|
9016
9208
|
|
|
9017
9209
|
var name$1 = "@circle-fin/bridge-kit";
|
|
9018
|
-
var version$2 = "1.
|
|
9210
|
+
var version$2 = "1.7.0";
|
|
9019
9211
|
var pkg$2 = {
|
|
9020
9212
|
name: name$1,
|
|
9021
9213
|
version: version$2};
|
|
@@ -13105,7 +13297,7 @@ function dispatchStepEvent(name, step, provider, invocation) {
|
|
|
13105
13297
|
}
|
|
13106
13298
|
}
|
|
13107
13299
|
|
|
13108
|
-
var version$1 = "1.
|
|
13300
|
+
var version$1 = "1.5.0";
|
|
13109
13301
|
var pkg$1 = {
|
|
13110
13302
|
version: version$1};
|
|
13111
13303
|
|
|
@@ -15849,7 +16041,7 @@ const createBridgeKit = (context) => {
|
|
|
15849
16041
|
};
|
|
15850
16042
|
|
|
15851
16043
|
var name = "@circle-fin/swap-kit";
|
|
15852
|
-
var version = "1.0.
|
|
16044
|
+
var version = "1.0.1";
|
|
15853
16045
|
var pkg = {
|
|
15854
16046
|
name: name,
|
|
15855
16047
|
version: version};
|
package/index.d.ts
CHANGED
|
@@ -500,6 +500,8 @@ declare enum Blockchain {
|
|
|
500
500
|
Celo_Alfajores_Testnet = "Celo_Alfajores_Testnet",
|
|
501
501
|
Codex = "Codex",
|
|
502
502
|
Codex_Testnet = "Codex_Testnet",
|
|
503
|
+
Edge = "Edge",
|
|
504
|
+
Edge_Testnet = "Edge_Testnet",
|
|
503
505
|
Ethereum = "Ethereum",
|
|
504
506
|
Ethereum_Sepolia = "Ethereum_Sepolia",
|
|
505
507
|
Hedera = "Hedera",
|
|
@@ -512,6 +514,8 @@ declare enum Blockchain {
|
|
|
512
514
|
Linea_Sepolia = "Linea_Sepolia",
|
|
513
515
|
Monad = "Monad",
|
|
514
516
|
Monad_Testnet = "Monad_Testnet",
|
|
517
|
+
Morph = "Morph",
|
|
518
|
+
Morph_Testnet = "Morph_Testnet",
|
|
515
519
|
NEAR = "NEAR",
|
|
516
520
|
NEAR_Testnet = "NEAR_Testnet",
|
|
517
521
|
Noble = "Noble",
|
|
@@ -731,11 +735,13 @@ declare enum BridgeChain {
|
|
|
731
735
|
Avalanche = "Avalanche",
|
|
732
736
|
Base = "Base",
|
|
733
737
|
Codex = "Codex",
|
|
738
|
+
Edge = "Edge",
|
|
734
739
|
Ethereum = "Ethereum",
|
|
735
740
|
HyperEVM = "HyperEVM",
|
|
736
741
|
Ink = "Ink",
|
|
737
742
|
Linea = "Linea",
|
|
738
743
|
Monad = "Monad",
|
|
744
|
+
Morph = "Morph",
|
|
739
745
|
Optimism = "Optimism",
|
|
740
746
|
Plume = "Plume",
|
|
741
747
|
Polygon = "Polygon",
|
|
@@ -750,11 +756,13 @@ declare enum BridgeChain {
|
|
|
750
756
|
Avalanche_Fuji = "Avalanche_Fuji",
|
|
751
757
|
Base_Sepolia = "Base_Sepolia",
|
|
752
758
|
Codex_Testnet = "Codex_Testnet",
|
|
759
|
+
Edge_Testnet = "Edge_Testnet",
|
|
753
760
|
Ethereum_Sepolia = "Ethereum_Sepolia",
|
|
754
761
|
HyperEVM_Testnet = "HyperEVM_Testnet",
|
|
755
762
|
Ink_Testnet = "Ink_Testnet",
|
|
756
763
|
Linea_Sepolia = "Linea_Sepolia",
|
|
757
764
|
Monad_Testnet = "Monad_Testnet",
|
|
765
|
+
Morph_Testnet = "Morph_Testnet",
|
|
758
766
|
Optimism_Sepolia = "Optimism_Sepolia",
|
|
759
767
|
Plume_Testnet = "Plume_Testnet",
|
|
760
768
|
Polygon_Amoy_Testnet = "Polygon_Amoy_Testnet",
|
|
@@ -1430,6 +1438,94 @@ declare const CodexTestnet: {
|
|
|
1430
1438
|
};
|
|
1431
1439
|
};
|
|
1432
1440
|
|
|
1441
|
+
/**
|
|
1442
|
+
* Edge Mainnet chain definition
|
|
1443
|
+
* @remarks
|
|
1444
|
+
* This represents the official production network for the Edge blockchain.
|
|
1445
|
+
* Edge is an EVM-compatible blockchain.
|
|
1446
|
+
*/
|
|
1447
|
+
declare const Edge: {
|
|
1448
|
+
readonly type: "evm";
|
|
1449
|
+
readonly chain: Blockchain.Edge;
|
|
1450
|
+
readonly name: "Edge";
|
|
1451
|
+
readonly title: "Edge Mainnet";
|
|
1452
|
+
readonly nativeCurrency: {
|
|
1453
|
+
readonly name: "Ether";
|
|
1454
|
+
readonly symbol: "ETH";
|
|
1455
|
+
readonly decimals: 18;
|
|
1456
|
+
};
|
|
1457
|
+
readonly chainId: 3343;
|
|
1458
|
+
readonly isTestnet: false;
|
|
1459
|
+
readonly explorerUrl: "https://pro.edgex.exchange/en-US/explorer/tx/{hash}";
|
|
1460
|
+
readonly rpcEndpoints: readonly ["https://edge-mainnet.g.alchemy.com/public"];
|
|
1461
|
+
readonly eurcAddress: null;
|
|
1462
|
+
readonly usdcAddress: "0x98d2919b9A214E6Fa5384AC81E6864bA686Ad74c";
|
|
1463
|
+
readonly usdtAddress: null;
|
|
1464
|
+
readonly cctp: {
|
|
1465
|
+
readonly domain: 28;
|
|
1466
|
+
readonly contracts: {
|
|
1467
|
+
readonly v2: {
|
|
1468
|
+
readonly type: "split";
|
|
1469
|
+
readonly tokenMessenger: "0x98706A006bc632Df31CAdFCBD43F38887ce2ca5c";
|
|
1470
|
+
readonly messageTransmitter: "0x5b61381Fc9e58E70EfC13a4A97516997019198ee";
|
|
1471
|
+
readonly confirmations: 65;
|
|
1472
|
+
readonly fastConfirmations: 1;
|
|
1473
|
+
};
|
|
1474
|
+
};
|
|
1475
|
+
readonly forwarderSupported: {
|
|
1476
|
+
readonly source: true;
|
|
1477
|
+
readonly destination: true;
|
|
1478
|
+
};
|
|
1479
|
+
};
|
|
1480
|
+
readonly kitContracts: {
|
|
1481
|
+
readonly bridge: "0x6D1AaE1c34Aeb582022916a67f2A655C6f4eDFF2";
|
|
1482
|
+
};
|
|
1483
|
+
};
|
|
1484
|
+
|
|
1485
|
+
/**
|
|
1486
|
+
* Edge Testnet chain definition
|
|
1487
|
+
* @remarks
|
|
1488
|
+
* This represents the official test network for the Edge blockchain.
|
|
1489
|
+
* Edge is an EVM-compatible blockchain.
|
|
1490
|
+
*/
|
|
1491
|
+
declare const EdgeTestnet: {
|
|
1492
|
+
readonly type: "evm";
|
|
1493
|
+
readonly chain: Blockchain.Edge_Testnet;
|
|
1494
|
+
readonly name: "Edge Testnet";
|
|
1495
|
+
readonly title: "Edge Testnet";
|
|
1496
|
+
readonly nativeCurrency: {
|
|
1497
|
+
readonly name: "Ether";
|
|
1498
|
+
readonly symbol: "ETH";
|
|
1499
|
+
readonly decimals: 18;
|
|
1500
|
+
};
|
|
1501
|
+
readonly chainId: 33431;
|
|
1502
|
+
readonly isTestnet: true;
|
|
1503
|
+
readonly explorerUrl: "https://edge-testnet.explorer.alchemy.com/tx/{hash}";
|
|
1504
|
+
readonly rpcEndpoints: readonly ["https://edge-testnet.g.alchemy.com/public"];
|
|
1505
|
+
readonly eurcAddress: null;
|
|
1506
|
+
readonly usdcAddress: "0x2d9F7CAD728051AA35Ecdc472a14cf8cDF5CFD6B";
|
|
1507
|
+
readonly usdtAddress: null;
|
|
1508
|
+
readonly cctp: {
|
|
1509
|
+
readonly domain: 28;
|
|
1510
|
+
readonly contracts: {
|
|
1511
|
+
readonly v2: {
|
|
1512
|
+
readonly type: "split";
|
|
1513
|
+
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1514
|
+
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1515
|
+
readonly confirmations: 65;
|
|
1516
|
+
readonly fastConfirmations: 1;
|
|
1517
|
+
};
|
|
1518
|
+
};
|
|
1519
|
+
readonly forwarderSupported: {
|
|
1520
|
+
readonly source: true;
|
|
1521
|
+
readonly destination: true;
|
|
1522
|
+
};
|
|
1523
|
+
};
|
|
1524
|
+
readonly kitContracts: {
|
|
1525
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
|
|
1433
1529
|
/**
|
|
1434
1530
|
* Ethereum Mainnet chain definition
|
|
1435
1531
|
* @remarks
|
|
@@ -1935,6 +2031,94 @@ declare const MonadTestnet: {
|
|
|
1935
2031
|
};
|
|
1936
2032
|
};
|
|
1937
2033
|
|
|
2034
|
+
/**
|
|
2035
|
+
* Morph Mainnet chain definition
|
|
2036
|
+
* @remarks
|
|
2037
|
+
* This represents the official production network for the Morph blockchain.
|
|
2038
|
+
* Morph is an EVM-compatible Layer-2 blockchain built on the OP Stack.
|
|
2039
|
+
*/
|
|
2040
|
+
declare const Morph: {
|
|
2041
|
+
readonly type: "evm";
|
|
2042
|
+
readonly chain: Blockchain.Morph;
|
|
2043
|
+
readonly name: "Morph";
|
|
2044
|
+
readonly title: "Morph Mainnet";
|
|
2045
|
+
readonly nativeCurrency: {
|
|
2046
|
+
readonly name: "Ether";
|
|
2047
|
+
readonly symbol: "ETH";
|
|
2048
|
+
readonly decimals: 18;
|
|
2049
|
+
};
|
|
2050
|
+
readonly chainId: 2818;
|
|
2051
|
+
readonly isTestnet: false;
|
|
2052
|
+
readonly explorerUrl: "https://explorer.morph.network/tx/{hash}";
|
|
2053
|
+
readonly rpcEndpoints: readonly ["https://rpc.morphl2.io"];
|
|
2054
|
+
readonly eurcAddress: null;
|
|
2055
|
+
readonly usdcAddress: "0xCfb1186F4e93D60E60a8bDd997427D1F33bc372B";
|
|
2056
|
+
readonly usdtAddress: null;
|
|
2057
|
+
readonly cctp: {
|
|
2058
|
+
readonly domain: 30;
|
|
2059
|
+
readonly contracts: {
|
|
2060
|
+
readonly v2: {
|
|
2061
|
+
readonly type: "split";
|
|
2062
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
2063
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
2064
|
+
readonly confirmations: 64;
|
|
2065
|
+
readonly fastConfirmations: 1;
|
|
2066
|
+
};
|
|
2067
|
+
};
|
|
2068
|
+
readonly forwarderSupported: {
|
|
2069
|
+
readonly source: false;
|
|
2070
|
+
readonly destination: false;
|
|
2071
|
+
};
|
|
2072
|
+
};
|
|
2073
|
+
readonly kitContracts: {
|
|
2074
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
2075
|
+
};
|
|
2076
|
+
};
|
|
2077
|
+
|
|
2078
|
+
/**
|
|
2079
|
+
* Morph Hoodi Testnet chain definition
|
|
2080
|
+
* @remarks
|
|
2081
|
+
* This represents the official test network for the Morph blockchain.
|
|
2082
|
+
* Morph is an EVM-compatible Layer-2 blockchain built on the OP Stack.
|
|
2083
|
+
*/
|
|
2084
|
+
declare const MorphTestnet: {
|
|
2085
|
+
readonly type: "evm";
|
|
2086
|
+
readonly chain: Blockchain.Morph_Testnet;
|
|
2087
|
+
readonly name: "Morph Hoodi";
|
|
2088
|
+
readonly title: "Morph Hoodi Testnet";
|
|
2089
|
+
readonly nativeCurrency: {
|
|
2090
|
+
readonly name: "Ether";
|
|
2091
|
+
readonly symbol: "ETH";
|
|
2092
|
+
readonly decimals: 18;
|
|
2093
|
+
};
|
|
2094
|
+
readonly chainId: 2910;
|
|
2095
|
+
readonly isTestnet: true;
|
|
2096
|
+
readonly explorerUrl: "https://explorer-hoodi.morphl2.io/tx/{hash}";
|
|
2097
|
+
readonly rpcEndpoints: readonly ["https://rpc-hoodi.morphl2.io"];
|
|
2098
|
+
readonly eurcAddress: null;
|
|
2099
|
+
readonly usdcAddress: "0x7433b41C6c5e1d58D4Da99483609520255ab661B";
|
|
2100
|
+
readonly usdtAddress: null;
|
|
2101
|
+
readonly cctp: {
|
|
2102
|
+
readonly domain: 30;
|
|
2103
|
+
readonly contracts: {
|
|
2104
|
+
readonly v2: {
|
|
2105
|
+
readonly type: "split";
|
|
2106
|
+
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
2107
|
+
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
2108
|
+
readonly confirmations: 64;
|
|
2109
|
+
readonly fastConfirmations: 1;
|
|
2110
|
+
};
|
|
2111
|
+
};
|
|
2112
|
+
readonly forwarderSupported: {
|
|
2113
|
+
readonly source: false;
|
|
2114
|
+
readonly destination: false;
|
|
2115
|
+
};
|
|
2116
|
+
};
|
|
2117
|
+
readonly kitContracts: {
|
|
2118
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
2119
|
+
};
|
|
2120
|
+
};
|
|
2121
|
+
|
|
1938
2122
|
/**
|
|
1939
2123
|
* NEAR Protocol Mainnet chain definition
|
|
1940
2124
|
* @remarks
|
|
@@ -3130,6 +3314,8 @@ declare const Chains_Celo: typeof Celo;
|
|
|
3130
3314
|
declare const Chains_CeloAlfajoresTestnet: typeof CeloAlfajoresTestnet;
|
|
3131
3315
|
declare const Chains_Codex: typeof Codex;
|
|
3132
3316
|
declare const Chains_CodexTestnet: typeof CodexTestnet;
|
|
3317
|
+
declare const Chains_Edge: typeof Edge;
|
|
3318
|
+
declare const Chains_EdgeTestnet: typeof EdgeTestnet;
|
|
3133
3319
|
declare const Chains_Ethereum: typeof Ethereum;
|
|
3134
3320
|
declare const Chains_EthereumSepolia: typeof EthereumSepolia;
|
|
3135
3321
|
declare const Chains_Hedera: typeof Hedera;
|
|
@@ -3142,6 +3328,8 @@ declare const Chains_Linea: typeof Linea;
|
|
|
3142
3328
|
declare const Chains_LineaSepolia: typeof LineaSepolia;
|
|
3143
3329
|
declare const Chains_Monad: typeof Monad;
|
|
3144
3330
|
declare const Chains_MonadTestnet: typeof MonadTestnet;
|
|
3331
|
+
declare const Chains_Morph: typeof Morph;
|
|
3332
|
+
declare const Chains_MorphTestnet: typeof MorphTestnet;
|
|
3145
3333
|
declare const Chains_NEAR: typeof NEAR;
|
|
3146
3334
|
declare const Chains_NEARTestnet: typeof NEARTestnet;
|
|
3147
3335
|
declare const Chains_Noble: typeof Noble;
|
|
@@ -3189,6 +3377,8 @@ declare namespace Chains {
|
|
|
3189
3377
|
Chains_CeloAlfajoresTestnet as CeloAlfajoresTestnet,
|
|
3190
3378
|
Chains_Codex as Codex,
|
|
3191
3379
|
Chains_CodexTestnet as CodexTestnet,
|
|
3380
|
+
Chains_Edge as Edge,
|
|
3381
|
+
Chains_EdgeTestnet as EdgeTestnet,
|
|
3192
3382
|
Chains_Ethereum as Ethereum,
|
|
3193
3383
|
Chains_EthereumSepolia as EthereumSepolia,
|
|
3194
3384
|
Chains_Hedera as Hedera,
|
|
@@ -3201,6 +3391,8 @@ declare namespace Chains {
|
|
|
3201
3391
|
Chains_LineaSepolia as LineaSepolia,
|
|
3202
3392
|
Chains_Monad as Monad,
|
|
3203
3393
|
Chains_MonadTestnet as MonadTestnet,
|
|
3394
|
+
Chains_Morph as Morph,
|
|
3395
|
+
Chains_MorphTestnet as MorphTestnet,
|
|
3204
3396
|
Chains_NEAR as NEAR,
|
|
3205
3397
|
Chains_NEARTestnet as NEARTestnet,
|
|
3206
3398
|
Chains_Noble as Noble,
|