@circle-fin/bridge-kit 1.2.0 → 1.4.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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright (c) 2025, Circle Internet Group, Inc. All rights reserved.
2
+ * Copyright (c) 2026, Circle Internet Group, Inc. All rights reserved.
3
3
  *
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  *
@@ -17,7 +17,7 @@
17
17
  */
18
18
 
19
19
  import { Abi } from 'abitype';
20
- import { TransactionInstruction, Signer } from '@solana/web3.js';
20
+ import { TransactionInstruction, Signer, AddressLookupTableAccount } from '@solana/web3.js';
21
21
  import { CCTPV2BridgingProvider } from '@circle-fin/provider-cctp-v2';
22
22
  import { z } from '/home/runner/_work/stablecoin-kits-private/stablecoin-kits-private/kits/bridge-kit/node_modules/zod/dist/types/index.d.ts';
23
23
 
@@ -581,6 +581,2085 @@ declare enum BridgeChain {
581
581
  */
582
582
  type BridgeChainIdentifier = ChainDefinition | BridgeChain | `${BridgeChain}`;
583
583
 
584
+ /**
585
+ * Algorand Mainnet chain definition
586
+ * @remarks
587
+ * This represents the official production network for the Algorand blockchain.
588
+ */
589
+ declare const Algorand: {
590
+ readonly type: "algorand";
591
+ readonly chain: Blockchain.Algorand;
592
+ readonly name: "Algorand";
593
+ readonly title: "Algorand Mainnet";
594
+ readonly nativeCurrency: {
595
+ readonly name: "Algo";
596
+ readonly symbol: "ALGO";
597
+ readonly decimals: 6;
598
+ };
599
+ readonly isTestnet: false;
600
+ readonly explorerUrl: "https://explorer.perawallet.app/tx/{hash}";
601
+ readonly rpcEndpoints: readonly ["https://mainnet-api.algonode.cloud"];
602
+ readonly eurcAddress: null;
603
+ readonly usdcAddress: "31566704";
604
+ readonly cctp: null;
605
+ };
606
+
607
+ /**
608
+ * Algorand Testnet chain definition
609
+ * @remarks
610
+ * This represents the official testnet for the Algorand blockchain.
611
+ */
612
+ declare const AlgorandTestnet: {
613
+ readonly type: "algorand";
614
+ readonly chain: Blockchain.Algorand_Testnet;
615
+ readonly name: "Algorand Testnet";
616
+ readonly title: "Algorand Test Network";
617
+ readonly nativeCurrency: {
618
+ readonly name: "Algo";
619
+ readonly symbol: "ALGO";
620
+ readonly decimals: 6;
621
+ };
622
+ readonly isTestnet: true;
623
+ readonly explorerUrl: "https://testnet.explorer.perawallet.app/tx/{hash}";
624
+ readonly rpcEndpoints: readonly ["https://testnet-api.algonode.cloud"];
625
+ readonly eurcAddress: null;
626
+ readonly usdcAddress: "10458941";
627
+ readonly cctp: null;
628
+ };
629
+
630
+ /**
631
+ * Aptos Mainnet chain definition
632
+ * @remarks
633
+ * This represents the official production network for the Aptos blockchain.
634
+ */
635
+ declare const Aptos: {
636
+ readonly type: "aptos";
637
+ readonly chain: Blockchain.Aptos;
638
+ readonly name: "Aptos";
639
+ readonly title: "Aptos Mainnet";
640
+ readonly nativeCurrency: {
641
+ readonly name: "Aptos";
642
+ readonly symbol: "APT";
643
+ readonly decimals: 8;
644
+ };
645
+ readonly isTestnet: false;
646
+ readonly explorerUrl: "https://explorer.aptoslabs.com/txn/{hash}?network=mainnet";
647
+ readonly rpcEndpoints: readonly ["https://fullnode.mainnet.aptoslabs.com/v1"];
648
+ readonly eurcAddress: null;
649
+ readonly usdcAddress: "0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b";
650
+ readonly cctp: {
651
+ readonly domain: 9;
652
+ readonly contracts: {
653
+ readonly v1: {
654
+ readonly type: "split";
655
+ readonly tokenMessenger: "0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d";
656
+ readonly messageTransmitter: "0x177e17751820e4b4371873ca8c30279be63bdea63b88ed0f2239c2eea10f1772";
657
+ readonly confirmations: 1;
658
+ };
659
+ };
660
+ };
661
+ };
662
+
663
+ /**
664
+ * Aptos Testnet chain definition
665
+ * @remarks
666
+ * This represents the official test network for the Aptos blockchain.
667
+ */
668
+ declare const AptosTestnet: {
669
+ readonly type: "aptos";
670
+ readonly chain: Blockchain.Aptos_Testnet;
671
+ readonly name: "Aptos Testnet";
672
+ readonly title: "Aptos Test Network";
673
+ readonly nativeCurrency: {
674
+ readonly name: "Aptos";
675
+ readonly symbol: "APT";
676
+ readonly decimals: 8;
677
+ };
678
+ readonly isTestnet: true;
679
+ readonly explorerUrl: "https://explorer.aptoslabs.com/txn/{hash}?network=testnet";
680
+ readonly rpcEndpoints: readonly ["https://fullnode.testnet.aptoslabs.com/v1"];
681
+ readonly eurcAddress: null;
682
+ readonly usdcAddress: "0x69091fbab5f7d635ee7ac5098cf0c1efbe31d68fec0f2cd565e8d168daf52832";
683
+ readonly cctp: {
684
+ readonly domain: 9;
685
+ readonly contracts: {
686
+ readonly v1: {
687
+ readonly type: "split";
688
+ readonly tokenMessenger: "0x5f9b937419dda90aa06c1836b7847f65bbbe3f1217567758dc2488be31a477b9";
689
+ readonly messageTransmitter: "0x081e86cebf457a0c6004f35bd648a2794698f52e0dde09a48619dcd3d4cc23d9";
690
+ readonly confirmations: 1;
691
+ };
692
+ };
693
+ };
694
+ };
695
+
696
+ /**
697
+ * Arc Testnet chain definition
698
+ * @remarks
699
+ * This represents the test network for the Arc blockchain,
700
+ * Circle's EVM-compatible Layer-1 designed for stablecoin finance
701
+ * and asset tokenization. Arc uses USDC as the native gas token and
702
+ * features the Malachite Byzantine Fault Tolerant (BFT) consensus
703
+ * engine for sub-second finality.
704
+ */
705
+ declare const ArcTestnet: {
706
+ readonly type: "evm";
707
+ readonly chain: Blockchain.Arc_Testnet;
708
+ readonly name: "Arc Testnet";
709
+ readonly title: "ArcTestnet";
710
+ readonly nativeCurrency: {
711
+ readonly name: "USDC";
712
+ readonly symbol: "USDC";
713
+ readonly decimals: 18;
714
+ };
715
+ readonly chainId: 5042002;
716
+ readonly isTestnet: true;
717
+ readonly explorerUrl: "https://testnet.arcscan.app/tx/{hash}";
718
+ readonly rpcEndpoints: readonly ["https://rpc.testnet.arc.network/"];
719
+ readonly eurcAddress: "0x89B50855Aa3bE2F677cD6303Cec089B5F319D72a";
720
+ readonly usdcAddress: "0x3600000000000000000000000000000000000000";
721
+ readonly cctp: {
722
+ readonly domain: 26;
723
+ readonly contracts: {
724
+ readonly v2: {
725
+ readonly type: "split";
726
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
727
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
728
+ readonly confirmations: 1;
729
+ readonly fastConfirmations: 1;
730
+ };
731
+ };
732
+ };
733
+ readonly kitContracts: {
734
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
735
+ };
736
+ };
737
+
738
+ /**
739
+ * Arbitrum Mainnet chain definition
740
+ * @remarks
741
+ * This represents the official production network for the Arbitrum blockchain.
742
+ */
743
+ declare const Arbitrum: {
744
+ readonly type: "evm";
745
+ readonly chain: Blockchain.Arbitrum;
746
+ readonly name: "Arbitrum";
747
+ readonly title: "Arbitrum Mainnet";
748
+ readonly nativeCurrency: {
749
+ readonly name: "Ether";
750
+ readonly symbol: "ETH";
751
+ readonly decimals: 18;
752
+ };
753
+ readonly chainId: 42161;
754
+ readonly isTestnet: false;
755
+ readonly explorerUrl: "https://arbiscan.io/tx/{hash}";
756
+ readonly rpcEndpoints: readonly ["https://arb1.arbitrum.io/rpc"];
757
+ readonly eurcAddress: null;
758
+ readonly usdcAddress: "0xaf88d065e77c8cc2239327c5edb3a432268e5831";
759
+ readonly cctp: {
760
+ readonly domain: 3;
761
+ readonly contracts: {
762
+ readonly v1: {
763
+ readonly type: "split";
764
+ readonly tokenMessenger: "0x19330d10D9Cc8751218eaf51E8885D058642E08A";
765
+ readonly messageTransmitter: "0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca";
766
+ readonly confirmations: 65;
767
+ };
768
+ readonly v2: {
769
+ readonly type: "split";
770
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
771
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
772
+ readonly confirmations: 65;
773
+ readonly fastConfirmations: 1;
774
+ };
775
+ };
776
+ };
777
+ readonly kitContracts: {
778
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
779
+ };
780
+ };
781
+
782
+ /**
783
+ * Arbitrum Sepolia Testnet chain definition
784
+ * @remarks
785
+ * This represents the official test network for the Arbitrum blockchain on Sepolia.
786
+ */
787
+ declare const ArbitrumSepolia: {
788
+ readonly type: "evm";
789
+ readonly chain: Blockchain.Arbitrum_Sepolia;
790
+ readonly name: "Arbitrum Sepolia";
791
+ readonly title: "Arbitrum Sepolia Testnet";
792
+ readonly nativeCurrency: {
793
+ readonly name: "Sepolia Ether";
794
+ readonly symbol: "ETH";
795
+ readonly decimals: 18;
796
+ };
797
+ readonly chainId: 421614;
798
+ readonly isTestnet: true;
799
+ readonly explorerUrl: "https://sepolia.arbiscan.io/tx/{hash}";
800
+ readonly rpcEndpoints: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
801
+ readonly eurcAddress: null;
802
+ readonly usdcAddress: "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d";
803
+ readonly cctp: {
804
+ readonly domain: 3;
805
+ readonly contracts: {
806
+ readonly v1: {
807
+ readonly type: "split";
808
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
809
+ readonly messageTransmitter: "0xaCF1ceeF35caAc005e15888dDb8A3515C41B4872";
810
+ readonly confirmations: 65;
811
+ };
812
+ readonly v2: {
813
+ readonly type: "split";
814
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
815
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
816
+ readonly confirmations: 65;
817
+ readonly fastConfirmations: 1;
818
+ };
819
+ };
820
+ };
821
+ readonly kitContracts: {
822
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
823
+ };
824
+ };
825
+
826
+ /**
827
+ * Avalanche Mainnet chain definition
828
+ * @remarks
829
+ * This represents the official production network for the Avalanche blockchain.
830
+ */
831
+ declare const Avalanche: {
832
+ readonly type: "evm";
833
+ readonly chain: Blockchain.Avalanche;
834
+ readonly name: "Avalanche";
835
+ readonly title: "Avalanche Mainnet";
836
+ readonly nativeCurrency: {
837
+ readonly name: "Avalanche";
838
+ readonly symbol: "AVAX";
839
+ readonly decimals: 18;
840
+ };
841
+ readonly chainId: 43114;
842
+ readonly isTestnet: false;
843
+ readonly explorerUrl: "https://subnets.avax.network/c-chain/tx/{hash}";
844
+ readonly rpcEndpoints: readonly ["https://api.avax.network/ext/bc/C/rpc"];
845
+ readonly eurcAddress: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
846
+ readonly usdcAddress: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
847
+ readonly cctp: {
848
+ readonly domain: 1;
849
+ readonly contracts: {
850
+ readonly v1: {
851
+ readonly type: "split";
852
+ readonly tokenMessenger: "0x6b25532e1060ce10cc3b0a99e5683b91bfde6982";
853
+ readonly messageTransmitter: "0x8186359af5f57fbb40c6b14a588d2a59c0c29880";
854
+ readonly confirmations: 1;
855
+ };
856
+ readonly v2: {
857
+ readonly type: "split";
858
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
859
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
860
+ readonly confirmations: 1;
861
+ readonly fastConfirmations: 1;
862
+ };
863
+ };
864
+ };
865
+ readonly kitContracts: {
866
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
867
+ };
868
+ };
869
+
870
+ /**
871
+ * Avalanche Fuji Testnet chain definition
872
+ * @remarks
873
+ * This represents the official test network for the Avalanche blockchain.
874
+ */
875
+ declare const AvalancheFuji: {
876
+ readonly type: "evm";
877
+ readonly chain: Blockchain.Avalanche_Fuji;
878
+ readonly name: "Avalanche Fuji";
879
+ readonly title: "Avalanche Fuji Testnet";
880
+ readonly nativeCurrency: {
881
+ readonly name: "Avalanche";
882
+ readonly symbol: "AVAX";
883
+ readonly decimals: 18;
884
+ };
885
+ readonly chainId: 43113;
886
+ readonly isTestnet: true;
887
+ readonly explorerUrl: "https://subnets-test.avax.network/c-chain/tx/{hash}";
888
+ readonly eurcAddress: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
889
+ readonly usdcAddress: "0x5425890298aed601595a70ab815c96711a31bc65";
890
+ readonly cctp: {
891
+ readonly domain: 1;
892
+ readonly contracts: {
893
+ readonly v1: {
894
+ readonly type: "split";
895
+ readonly tokenMessenger: "0xeb08f243e5d3fcff26a9e38ae5520a669f4019d0";
896
+ readonly messageTransmitter: "0xa9fb1b3009dcb79e2fe346c16a604b8fa8ae0a79";
897
+ readonly confirmations: 1;
898
+ };
899
+ readonly v2: {
900
+ readonly type: "split";
901
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
902
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
903
+ readonly confirmations: 1;
904
+ readonly fastConfirmations: 1;
905
+ };
906
+ };
907
+ };
908
+ readonly rpcEndpoints: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
909
+ readonly kitContracts: {
910
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
911
+ };
912
+ };
913
+
914
+ /**
915
+ * Base chain definition
916
+ * @remarks
917
+ * This represents the official production network for the Base blockchain.
918
+ */
919
+ declare const Base: {
920
+ readonly type: "evm";
921
+ readonly chain: Blockchain.Base;
922
+ readonly name: "Base";
923
+ readonly title: "Base Mainnet";
924
+ readonly nativeCurrency: {
925
+ readonly name: "Ether";
926
+ readonly symbol: "ETH";
927
+ readonly decimals: 18;
928
+ };
929
+ readonly chainId: 8453;
930
+ readonly isTestnet: false;
931
+ readonly explorerUrl: "https://basescan.org/tx/{hash}";
932
+ readonly rpcEndpoints: readonly ["https://mainnet.base.org", "https://base.publicnode.com"];
933
+ readonly eurcAddress: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
934
+ readonly usdcAddress: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
935
+ readonly cctp: {
936
+ readonly domain: 6;
937
+ readonly contracts: {
938
+ readonly v1: {
939
+ readonly type: "split";
940
+ readonly tokenMessenger: "0x1682Ae6375C4E4A97e4B583BC394c861A46D8962";
941
+ readonly messageTransmitter: "0xAD09780d193884d503182aD4588450C416D6F9D4";
942
+ readonly confirmations: 65;
943
+ };
944
+ readonly v2: {
945
+ readonly type: "split";
946
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
947
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
948
+ readonly confirmations: 65;
949
+ readonly fastConfirmations: 1;
950
+ };
951
+ };
952
+ };
953
+ readonly kitContracts: {
954
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
955
+ };
956
+ };
957
+
958
+ /**
959
+ * Base Sepolia Testnet chain definition
960
+ * @remarks
961
+ * This represents the official test network for the Base blockchain on Sepolia.
962
+ */
963
+ declare const BaseSepolia: {
964
+ readonly type: "evm";
965
+ readonly chain: Blockchain.Base_Sepolia;
966
+ readonly name: "Base Sepolia";
967
+ readonly title: "Base Sepolia Testnet";
968
+ readonly nativeCurrency: {
969
+ readonly name: "Sepolia Ether";
970
+ readonly symbol: "ETH";
971
+ readonly decimals: 18;
972
+ };
973
+ readonly chainId: 84532;
974
+ readonly isTestnet: true;
975
+ readonly explorerUrl: "https://sepolia.basescan.org/tx/{hash}";
976
+ readonly rpcEndpoints: readonly ["https://sepolia.base.org"];
977
+ readonly eurcAddress: "0x808456652fdb597867f38412077A9182bf77359F";
978
+ readonly usdcAddress: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
979
+ readonly cctp: {
980
+ readonly domain: 6;
981
+ readonly contracts: {
982
+ readonly v1: {
983
+ readonly type: "split";
984
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
985
+ readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
986
+ readonly confirmations: 65;
987
+ };
988
+ readonly v2: {
989
+ readonly type: "split";
990
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
991
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
992
+ readonly confirmations: 65;
993
+ readonly fastConfirmations: 1;
994
+ };
995
+ };
996
+ };
997
+ readonly kitContracts: {
998
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
999
+ };
1000
+ };
1001
+
1002
+ /**
1003
+ * Celo Mainnet chain definition
1004
+ * @remarks
1005
+ * This represents the official production network for the Celo blockchain.
1006
+ */
1007
+ declare const Celo: {
1008
+ readonly type: "evm";
1009
+ readonly chain: Blockchain.Celo;
1010
+ readonly name: "Celo";
1011
+ readonly title: "Celo Mainnet";
1012
+ readonly nativeCurrency: {
1013
+ readonly name: "Celo";
1014
+ readonly symbol: "CELO";
1015
+ readonly decimals: 18;
1016
+ };
1017
+ readonly chainId: 42220;
1018
+ readonly isTestnet: false;
1019
+ readonly explorerUrl: "https://celoscan.io/tx/{hash}";
1020
+ readonly rpcEndpoints: readonly ["https://forno.celo.org"];
1021
+ readonly eurcAddress: null;
1022
+ readonly usdcAddress: "0xcebA9300f2b948710d2653dD7B07f33A8B32118C";
1023
+ readonly cctp: null;
1024
+ };
1025
+
1026
+ /**
1027
+ * Celo Alfajores Testnet chain definition
1028
+ * @remarks
1029
+ * This represents the official test network for the Celo blockchain.
1030
+ */
1031
+ declare const CeloAlfajoresTestnet: {
1032
+ readonly type: "evm";
1033
+ readonly chain: Blockchain.Celo_Alfajores_Testnet;
1034
+ readonly name: "Celo Alfajores";
1035
+ readonly title: "Celo Alfajores Testnet";
1036
+ readonly nativeCurrency: {
1037
+ readonly name: "Celo";
1038
+ readonly symbol: "CELO";
1039
+ readonly decimals: 18;
1040
+ };
1041
+ readonly chainId: 44787;
1042
+ readonly isTestnet: true;
1043
+ readonly explorerUrl: "https://alfajores.celoscan.io/tx/{hash}";
1044
+ readonly rpcEndpoints: readonly ["https://alfajores-forno.celo-testnet.org"];
1045
+ readonly eurcAddress: null;
1046
+ readonly usdcAddress: "0x2F25deB3848C207fc8E0c34035B3Ba7fC157602B";
1047
+ readonly cctp: null;
1048
+ };
1049
+
1050
+ /**
1051
+ * Codex Mainnet chain definition
1052
+ * @remarks
1053
+ * This represents the main network for the Codex blockchain.
1054
+ */
1055
+ declare const Codex: {
1056
+ readonly type: "evm";
1057
+ readonly chain: Blockchain.Codex;
1058
+ readonly name: "Codex Mainnet";
1059
+ readonly title: "Codex Mainnet";
1060
+ readonly nativeCurrency: {
1061
+ readonly name: "ETH";
1062
+ readonly symbol: "ETH";
1063
+ readonly decimals: 18;
1064
+ };
1065
+ readonly chainId: 81224;
1066
+ readonly isTestnet: false;
1067
+ readonly explorerUrl: "https://explorer.codex.xyz/tx/{hash}";
1068
+ readonly rpcEndpoints: readonly ["https://rpc.codex.xyz"];
1069
+ readonly eurcAddress: null;
1070
+ readonly usdcAddress: "0xd996633a415985DBd7D6D12f4A4343E31f5037cf";
1071
+ readonly cctp: {
1072
+ readonly domain: 12;
1073
+ readonly contracts: {
1074
+ readonly v2: {
1075
+ readonly type: "split";
1076
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1077
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1078
+ readonly confirmations: 65;
1079
+ readonly fastConfirmations: 1;
1080
+ };
1081
+ };
1082
+ };
1083
+ readonly kitContracts: {
1084
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1085
+ };
1086
+ };
1087
+
1088
+ /**
1089
+ * Codex Testnet chain definition
1090
+ * @remarks
1091
+ * This represents the test network for the Codex blockchain.
1092
+ */
1093
+ declare const CodexTestnet: {
1094
+ readonly type: "evm";
1095
+ readonly chain: Blockchain.Codex_Testnet;
1096
+ readonly name: "Codex Testnet";
1097
+ readonly title: "Codex Testnet";
1098
+ readonly nativeCurrency: {
1099
+ readonly name: "ETH";
1100
+ readonly symbol: "ETH";
1101
+ readonly decimals: 18;
1102
+ };
1103
+ readonly chainId: 812242;
1104
+ readonly isTestnet: true;
1105
+ readonly explorerUrl: "https://explorer.codex-stg.xyz/tx/{hash}";
1106
+ readonly rpcEndpoints: readonly ["https://rpc.codex-stg.xyz"];
1107
+ readonly eurcAddress: null;
1108
+ readonly usdcAddress: "0x6d7f141b6819C2c9CC2f818e6ad549E7Ca090F8f";
1109
+ readonly cctp: {
1110
+ readonly domain: 12;
1111
+ readonly contracts: {
1112
+ readonly v2: {
1113
+ readonly type: "split";
1114
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
1115
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
1116
+ readonly confirmations: 65;
1117
+ readonly fastConfirmations: 1;
1118
+ };
1119
+ };
1120
+ };
1121
+ readonly kitContracts: {
1122
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1123
+ };
1124
+ };
1125
+
1126
+ /**
1127
+ * Ethereum Mainnet chain definition
1128
+ * @remarks
1129
+ * This represents the official production network for the Ethereum blockchain.
1130
+ */
1131
+ declare const Ethereum: {
1132
+ readonly type: "evm";
1133
+ readonly chain: Blockchain.Ethereum;
1134
+ readonly name: "Ethereum";
1135
+ readonly title: "Ethereum Mainnet";
1136
+ readonly nativeCurrency: {
1137
+ readonly name: "Ether";
1138
+ readonly symbol: "ETH";
1139
+ readonly decimals: 18;
1140
+ };
1141
+ readonly chainId: 1;
1142
+ readonly isTestnet: false;
1143
+ readonly explorerUrl: "https://etherscan.io/tx/{hash}";
1144
+ readonly rpcEndpoints: readonly ["https://eth.merkle.io", "https://ethereum.publicnode.com"];
1145
+ readonly eurcAddress: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
1146
+ readonly usdcAddress: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
1147
+ readonly cctp: {
1148
+ readonly domain: 0;
1149
+ readonly contracts: {
1150
+ readonly v1: {
1151
+ readonly type: "split";
1152
+ readonly tokenMessenger: "0xbd3fa81b58ba92a82136038b25adec7066af3155";
1153
+ readonly messageTransmitter: "0x0a992d191deec32afe36203ad87d7d289a738f81";
1154
+ readonly confirmations: 65;
1155
+ };
1156
+ readonly v2: {
1157
+ readonly type: "split";
1158
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1159
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1160
+ readonly confirmations: 65;
1161
+ readonly fastConfirmations: 2;
1162
+ };
1163
+ };
1164
+ };
1165
+ readonly kitContracts: {
1166
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1167
+ };
1168
+ };
1169
+
1170
+ /**
1171
+ * Ethereum Sepolia Testnet chain definition
1172
+ * @remarks
1173
+ * This represents the official test network for the Ethereum blockchain on Sepolia.
1174
+ */
1175
+ declare const EthereumSepolia: {
1176
+ readonly type: "evm";
1177
+ readonly chain: Blockchain.Ethereum_Sepolia;
1178
+ readonly name: "Ethereum Sepolia";
1179
+ readonly title: "Ethereum Sepolia Testnet";
1180
+ readonly nativeCurrency: {
1181
+ readonly name: "Sepolia Ether";
1182
+ readonly symbol: "ETH";
1183
+ readonly decimals: 18;
1184
+ };
1185
+ readonly chainId: 11155111;
1186
+ readonly isTestnet: true;
1187
+ readonly explorerUrl: "https://sepolia.etherscan.io/tx/{hash}";
1188
+ readonly rpcEndpoints: readonly ["https://sepolia.drpc.org"];
1189
+ readonly eurcAddress: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
1190
+ readonly usdcAddress: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
1191
+ readonly cctp: {
1192
+ readonly domain: 0;
1193
+ readonly contracts: {
1194
+ readonly v1: {
1195
+ readonly type: "split";
1196
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
1197
+ readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
1198
+ readonly confirmations: 65;
1199
+ };
1200
+ readonly v2: {
1201
+ readonly type: "split";
1202
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
1203
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
1204
+ readonly confirmations: 65;
1205
+ readonly fastConfirmations: 2;
1206
+ };
1207
+ };
1208
+ };
1209
+ readonly kitContracts: {
1210
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1211
+ };
1212
+ };
1213
+
1214
+ /**
1215
+ * Hedera Mainnet chain definition
1216
+ * @remarks
1217
+ * This represents the official production network for the Hedera blockchain.
1218
+ */
1219
+ declare const Hedera: {
1220
+ readonly type: "hedera";
1221
+ readonly chain: Blockchain.Hedera;
1222
+ readonly name: "Hedera";
1223
+ readonly title: "Hedera Mainnet";
1224
+ readonly nativeCurrency: {
1225
+ readonly name: "HBAR";
1226
+ readonly symbol: "HBAR";
1227
+ readonly decimals: 18;
1228
+ };
1229
+ readonly isTestnet: false;
1230
+ readonly explorerUrl: "https://hashscan.io/mainnet/transaction/{hash}";
1231
+ readonly rpcEndpoints: readonly ["https://mainnet.hashio.io/api"];
1232
+ readonly eurcAddress: null;
1233
+ readonly usdcAddress: "0.0.456858";
1234
+ readonly cctp: null;
1235
+ };
1236
+
1237
+ /**
1238
+ * Hedera Testnet chain definition
1239
+ * @remarks
1240
+ * This represents the official test network for the Hedera blockchain.
1241
+ */
1242
+ declare const HederaTestnet: {
1243
+ readonly type: "hedera";
1244
+ readonly chain: Blockchain.Hedera_Testnet;
1245
+ readonly name: "Hedera Testnet";
1246
+ readonly title: "Hedera Test Network";
1247
+ readonly nativeCurrency: {
1248
+ readonly name: "HBAR";
1249
+ readonly symbol: "HBAR";
1250
+ readonly decimals: 18;
1251
+ };
1252
+ readonly isTestnet: true;
1253
+ readonly explorerUrl: "https://hashscan.io/testnet/transaction/{hash}";
1254
+ readonly rpcEndpoints: readonly ["https://testnet.hashio.io/api"];
1255
+ readonly eurcAddress: null;
1256
+ readonly usdcAddress: "0.0.429274";
1257
+ readonly cctp: null;
1258
+ };
1259
+
1260
+ /**
1261
+ * HyperEVM Mainnet chain definition
1262
+ * @remarks
1263
+ * This represents the official production network for the HyperEVM blockchain.
1264
+ * HyperEVM is a Layer 1 blockchain specialized for DeFi and trading applications
1265
+ * with native orderbook and matching engine.
1266
+ */
1267
+ declare const HyperEVM: {
1268
+ readonly type: "evm";
1269
+ readonly chain: Blockchain.HyperEVM;
1270
+ readonly name: "HyperEVM";
1271
+ readonly title: "HyperEVM Mainnet";
1272
+ readonly nativeCurrency: {
1273
+ readonly name: "Hype";
1274
+ readonly symbol: "HYPE";
1275
+ readonly decimals: 18;
1276
+ };
1277
+ readonly chainId: 999;
1278
+ readonly isTestnet: false;
1279
+ readonly explorerUrl: "https://hyperevmscan.io/tx/{hash}";
1280
+ readonly rpcEndpoints: readonly ["https://rpc.hyperliquid.xyz/evm"];
1281
+ readonly eurcAddress: null;
1282
+ readonly usdcAddress: "0xb88339CB7199b77E23DB6E890353E22632Ba630f";
1283
+ readonly cctp: {
1284
+ readonly domain: 19;
1285
+ readonly contracts: {
1286
+ readonly v2: {
1287
+ readonly type: "split";
1288
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1289
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1290
+ readonly confirmations: 1;
1291
+ readonly fastConfirmations: 1;
1292
+ };
1293
+ };
1294
+ };
1295
+ readonly kitContracts: {
1296
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1297
+ };
1298
+ };
1299
+
1300
+ /**
1301
+ * HyperEVM Testnet chain definition
1302
+ * @remarks
1303
+ * This represents the official testnet for the HyperEVM blockchain.
1304
+ * Used for development and testing purposes before deploying to mainnet.
1305
+ */
1306
+ declare const HyperEVMTestnet: {
1307
+ readonly type: "evm";
1308
+ readonly chain: Blockchain.HyperEVM_Testnet;
1309
+ readonly name: "HyperEVM Testnet";
1310
+ readonly title: "HyperEVM Test Network";
1311
+ readonly nativeCurrency: {
1312
+ readonly name: "Hype";
1313
+ readonly symbol: "HYPE";
1314
+ readonly decimals: 18;
1315
+ };
1316
+ readonly chainId: 998;
1317
+ readonly isTestnet: true;
1318
+ readonly explorerUrl: "https://testnet.hyperliquid.xyz/explorer/tx/{hash}";
1319
+ readonly rpcEndpoints: readonly ["https://rpc.hyperliquid-testnet.xyz/evm"];
1320
+ readonly eurcAddress: null;
1321
+ readonly usdcAddress: "0x2B3370eE501B4a559b57D449569354196457D8Ab";
1322
+ readonly cctp: {
1323
+ readonly domain: 19;
1324
+ readonly contracts: {
1325
+ readonly v2: {
1326
+ readonly type: "split";
1327
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1328
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1329
+ readonly confirmations: 1;
1330
+ readonly fastConfirmations: 1;
1331
+ };
1332
+ };
1333
+ };
1334
+ readonly kitContracts: {
1335
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1336
+ };
1337
+ };
1338
+
1339
+ /**
1340
+ * Ink Mainnet chain definition
1341
+ * @remarks
1342
+ * This represents the official production network for the Ink blockchain.
1343
+ * Ink is a Layer 1 blockchain specialized for DeFi and trading applications
1344
+ * with native orderbook and matching engine.
1345
+ */
1346
+ declare const Ink: {
1347
+ readonly type: "evm";
1348
+ readonly chain: Blockchain.Ink;
1349
+ readonly name: "Ink";
1350
+ readonly title: "Ink Mainnet";
1351
+ readonly nativeCurrency: {
1352
+ readonly name: "Ether";
1353
+ readonly symbol: "ETH";
1354
+ readonly decimals: 18;
1355
+ };
1356
+ readonly chainId: 57073;
1357
+ readonly isTestnet: false;
1358
+ readonly explorerUrl: "https://explorer.inkonchain.com/tx/{hash}";
1359
+ readonly rpcEndpoints: readonly ["https://rpc-gel.inkonchain.com", "https://rpc-qnd.inkonchain.com"];
1360
+ readonly eurcAddress: null;
1361
+ readonly usdcAddress: "0x2D270e6886d130D724215A266106e6832161EAEd";
1362
+ readonly cctp: {
1363
+ readonly domain: 21;
1364
+ readonly contracts: {
1365
+ readonly v2: {
1366
+ readonly type: "split";
1367
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1368
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1369
+ readonly confirmations: 65;
1370
+ readonly fastConfirmations: 1;
1371
+ };
1372
+ };
1373
+ };
1374
+ readonly kitContracts: {
1375
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1376
+ };
1377
+ };
1378
+
1379
+ /**
1380
+ * Ink Testnet chain definition
1381
+ * @remarks
1382
+ * This represents the official testnet for the Ink blockchain.
1383
+ * Used for development and testing purposes before deploying to mainnet.
1384
+ */
1385
+ declare const InkTestnet: {
1386
+ readonly type: "evm";
1387
+ readonly chain: Blockchain.Ink_Testnet;
1388
+ readonly name: "Ink Sepolia";
1389
+ readonly title: "Ink Sepolia Testnet";
1390
+ readonly nativeCurrency: {
1391
+ readonly name: "Sepolia Ether";
1392
+ readonly symbol: "ETH";
1393
+ readonly decimals: 18;
1394
+ };
1395
+ readonly chainId: 763373;
1396
+ readonly isTestnet: true;
1397
+ readonly explorerUrl: "https://explorer-sepolia.inkonchain.com/tx/{hash}";
1398
+ readonly rpcEndpoints: readonly ["https://rpc-gel-sepolia.inkonchain.com", "https://rpc-qnd-sepolia.inkonchain.com"];
1399
+ readonly eurcAddress: null;
1400
+ readonly usdcAddress: "0xFabab97dCE620294D2B0b0e46C68964e326300Ac";
1401
+ readonly cctp: {
1402
+ readonly domain: 21;
1403
+ readonly contracts: {
1404
+ readonly v2: {
1405
+ readonly type: "split";
1406
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1407
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1408
+ readonly confirmations: 65;
1409
+ readonly fastConfirmations: 1;
1410
+ };
1411
+ };
1412
+ };
1413
+ readonly kitContracts: {
1414
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1415
+ };
1416
+ };
1417
+
1418
+ /**
1419
+ * Linea Mainnet chain definition
1420
+ * @remarks
1421
+ * This represents the official production network for the Linea blockchain.
1422
+ */
1423
+ declare const Linea: {
1424
+ readonly type: "evm";
1425
+ readonly chain: Blockchain.Linea;
1426
+ readonly name: "Linea";
1427
+ readonly title: "Linea Mainnet";
1428
+ readonly nativeCurrency: {
1429
+ readonly name: "Ether";
1430
+ readonly symbol: "ETH";
1431
+ readonly decimals: 18;
1432
+ };
1433
+ readonly chainId: 59144;
1434
+ readonly isTestnet: false;
1435
+ readonly explorerUrl: "https://lineascan.build/tx/{hash}";
1436
+ readonly rpcEndpoints: readonly ["https://rpc.linea.build"];
1437
+ readonly eurcAddress: null;
1438
+ readonly usdcAddress: "0x176211869ca2b568f2a7d4ee941e073a821ee1ff";
1439
+ readonly cctp: {
1440
+ readonly domain: 11;
1441
+ readonly contracts: {
1442
+ readonly v2: {
1443
+ readonly type: "split";
1444
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1445
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1446
+ readonly confirmations: 1;
1447
+ readonly fastConfirmations: 1;
1448
+ };
1449
+ };
1450
+ };
1451
+ readonly kitContracts: {
1452
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1453
+ };
1454
+ };
1455
+
1456
+ /**
1457
+ * Linea Sepolia Testnet chain definition
1458
+ * @remarks
1459
+ * This represents the official test network for the Linea blockchain on Sepolia.
1460
+ */
1461
+ declare const LineaSepolia: {
1462
+ readonly type: "evm";
1463
+ readonly chain: Blockchain.Linea_Sepolia;
1464
+ readonly name: "Linea Sepolia";
1465
+ readonly title: "Linea Sepolia Testnet";
1466
+ readonly nativeCurrency: {
1467
+ readonly name: "Sepolia Ether";
1468
+ readonly symbol: "ETH";
1469
+ readonly decimals: 18;
1470
+ };
1471
+ readonly chainId: 59141;
1472
+ readonly isTestnet: true;
1473
+ readonly explorerUrl: "https://sepolia.lineascan.build/tx/{hash}";
1474
+ readonly rpcEndpoints: readonly ["https://rpc.sepolia.linea.build"];
1475
+ readonly eurcAddress: null;
1476
+ readonly usdcAddress: "0xfece4462d57bd51a6a552365a011b95f0e16d9b7";
1477
+ readonly cctp: {
1478
+ readonly domain: 11;
1479
+ readonly contracts: {
1480
+ readonly v2: {
1481
+ readonly type: "split";
1482
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
1483
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
1484
+ readonly confirmations: 1;
1485
+ readonly fastConfirmations: 1;
1486
+ };
1487
+ };
1488
+ };
1489
+ readonly kitContracts: {
1490
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1491
+ };
1492
+ };
1493
+
1494
+ /**
1495
+ * NEAR Protocol Mainnet chain definition
1496
+ * @remarks
1497
+ * This represents the official production network for the NEAR Protocol blockchain.
1498
+ */
1499
+ declare const NEAR: {
1500
+ readonly type: "near";
1501
+ readonly chain: Blockchain.NEAR;
1502
+ readonly name: "NEAR Protocol";
1503
+ readonly title: "NEAR Mainnet";
1504
+ readonly nativeCurrency: {
1505
+ readonly name: "NEAR";
1506
+ readonly symbol: "NEAR";
1507
+ readonly decimals: 24;
1508
+ };
1509
+ readonly isTestnet: false;
1510
+ readonly explorerUrl: "https://nearblocks.io/txns/{hash}";
1511
+ readonly rpcEndpoints: readonly ["https://eth-rpc.mainnet.near.org"];
1512
+ readonly eurcAddress: null;
1513
+ readonly usdcAddress: "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1";
1514
+ readonly cctp: null;
1515
+ };
1516
+
1517
+ /**
1518
+ * NEAR Testnet chain definition
1519
+ * @remarks
1520
+ * This represents the official test network for the NEAR Protocol blockchain.
1521
+ */
1522
+ declare const NEARTestnet: {
1523
+ readonly type: "near";
1524
+ readonly chain: Blockchain.NEAR_Testnet;
1525
+ readonly name: "NEAR Protocol Testnet";
1526
+ readonly title: "NEAR Test Network";
1527
+ readonly nativeCurrency: {
1528
+ readonly name: "NEAR";
1529
+ readonly symbol: "NEAR";
1530
+ readonly decimals: 24;
1531
+ };
1532
+ readonly isTestnet: true;
1533
+ readonly explorerUrl: "https://testnet.nearblocks.io/txns/{hash}";
1534
+ readonly rpcEndpoints: readonly ["https://eth-rpc.testnet.near.org"];
1535
+ readonly eurcAddress: null;
1536
+ readonly usdcAddress: "3e2210e1184b45b64c8a434c0a7e7b23cc04ea7eb7a6c3c32520d03d4afcb8af";
1537
+ readonly cctp: null;
1538
+ };
1539
+
1540
+ /**
1541
+ * Noble Mainnet chain definition
1542
+ * @remarks
1543
+ * This represents the official production network for the Noble blockchain.
1544
+ */
1545
+ declare const Noble: {
1546
+ readonly type: "noble";
1547
+ readonly chain: Blockchain.Noble;
1548
+ readonly name: "Noble";
1549
+ readonly title: "Noble Mainnet";
1550
+ readonly nativeCurrency: {
1551
+ readonly name: "Noble USDC";
1552
+ readonly symbol: "USDC";
1553
+ readonly decimals: 6;
1554
+ };
1555
+ readonly isTestnet: false;
1556
+ readonly explorerUrl: "https://www.mintscan.io/noble/tx/{hash}";
1557
+ readonly rpcEndpoints: readonly ["https://noble-rpc.polkachu.com"];
1558
+ readonly eurcAddress: null;
1559
+ readonly usdcAddress: "uusdc";
1560
+ readonly cctp: {
1561
+ readonly domain: 4;
1562
+ readonly contracts: {
1563
+ readonly v1: {
1564
+ readonly type: "merged";
1565
+ readonly contract: "noble12l2w4ugfz4m6dd73yysz477jszqnfughxvkss5";
1566
+ readonly confirmations: 1;
1567
+ };
1568
+ };
1569
+ };
1570
+ };
1571
+
1572
+ /**
1573
+ * Noble Testnet chain definition
1574
+ * @remarks
1575
+ * This represents the official test network for the Noble blockchain.
1576
+ */
1577
+ declare const NobleTestnet: {
1578
+ readonly type: "noble";
1579
+ readonly chain: Blockchain.Noble_Testnet;
1580
+ readonly name: "Noble Testnet";
1581
+ readonly title: "Noble Test Network";
1582
+ readonly nativeCurrency: {
1583
+ readonly name: "Noble USDC";
1584
+ readonly symbol: "USDC";
1585
+ readonly decimals: 6;
1586
+ };
1587
+ readonly isTestnet: true;
1588
+ readonly explorerUrl: "https://www.mintscan.io/noble-testnet/tx/{hash}";
1589
+ readonly rpcEndpoints: readonly ["https://noble-testnet-rpc.polkachu.com"];
1590
+ readonly eurcAddress: null;
1591
+ readonly usdcAddress: "uusdc";
1592
+ readonly cctp: {
1593
+ readonly domain: 4;
1594
+ readonly contracts: {
1595
+ readonly v1: {
1596
+ readonly type: "merged";
1597
+ readonly contract: "noble12l2w4ugfz4m6dd73yysz477jszqnfughxvkss5";
1598
+ readonly confirmations: 1;
1599
+ };
1600
+ };
1601
+ };
1602
+ };
1603
+
1604
+ /**
1605
+ * Optimism Mainnet chain definition
1606
+ * @remarks
1607
+ * This represents the official production network for the Optimism blockchain.
1608
+ */
1609
+ declare const Optimism: {
1610
+ readonly type: "evm";
1611
+ readonly chain: Blockchain.Optimism;
1612
+ readonly name: "Optimism";
1613
+ readonly title: "Optimism Mainnet";
1614
+ readonly nativeCurrency: {
1615
+ readonly name: "Ether";
1616
+ readonly symbol: "ETH";
1617
+ readonly decimals: 18;
1618
+ };
1619
+ readonly chainId: 10;
1620
+ readonly isTestnet: false;
1621
+ readonly explorerUrl: "https://optimistic.etherscan.io/tx/{hash}";
1622
+ readonly rpcEndpoints: readonly ["https://mainnet.optimism.io"];
1623
+ readonly eurcAddress: null;
1624
+ readonly usdcAddress: "0x0b2c639c533813f4aa9d7837caf62653d097ff85";
1625
+ readonly cctp: {
1626
+ readonly domain: 2;
1627
+ readonly contracts: {
1628
+ readonly v1: {
1629
+ readonly type: "split";
1630
+ readonly tokenMessenger: "0x2B4069517957735bE00ceE0fadAE88a26365528f";
1631
+ readonly messageTransmitter: "0x0a992d191deec32afe36203ad87d7d289a738f81";
1632
+ readonly confirmations: 65;
1633
+ };
1634
+ readonly v2: {
1635
+ readonly type: "split";
1636
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1637
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1638
+ readonly confirmations: 65;
1639
+ readonly fastConfirmations: 1;
1640
+ };
1641
+ };
1642
+ };
1643
+ readonly kitContracts: {
1644
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1645
+ };
1646
+ };
1647
+
1648
+ /**
1649
+ * Optimism Sepolia Testnet chain definition
1650
+ * @remarks
1651
+ * This represents the official test network for the Optimism blockchain on Sepolia.
1652
+ */
1653
+ declare const OptimismSepolia: {
1654
+ readonly type: "evm";
1655
+ readonly chain: Blockchain.Optimism_Sepolia;
1656
+ readonly name: "Optimism Sepolia";
1657
+ readonly title: "Optimism Sepolia Testnet";
1658
+ readonly nativeCurrency: {
1659
+ readonly name: "Sepolia Ether";
1660
+ readonly symbol: "ETH";
1661
+ readonly decimals: 18;
1662
+ };
1663
+ readonly chainId: 11155420;
1664
+ readonly isTestnet: true;
1665
+ readonly explorerUrl: "https://sepolia-optimistic.etherscan.io/tx/{hash}";
1666
+ readonly rpcEndpoints: readonly ["https://sepolia.optimism.io"];
1667
+ readonly eurcAddress: null;
1668
+ readonly usdcAddress: "0x5fd84259d66Cd46123540766Be93DFE6D43130D7";
1669
+ readonly cctp: {
1670
+ readonly domain: 2;
1671
+ readonly contracts: {
1672
+ readonly v1: {
1673
+ readonly type: "split";
1674
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
1675
+ readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
1676
+ readonly confirmations: 65;
1677
+ };
1678
+ readonly v2: {
1679
+ readonly type: "split";
1680
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
1681
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
1682
+ readonly confirmations: 65;
1683
+ readonly fastConfirmations: 1;
1684
+ };
1685
+ };
1686
+ };
1687
+ readonly kitContracts: {
1688
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1689
+ };
1690
+ };
1691
+
1692
+ /**
1693
+ * Plume Mainnet chain definition
1694
+ * @remarks
1695
+ * This represents the official production network for the Plume blockchain.
1696
+ * Plume is a Layer 1 blockchain specialized for DeFi and trading applications
1697
+ * with native orderbook and matching engine.
1698
+ */
1699
+ declare const Plume: {
1700
+ readonly type: "evm";
1701
+ readonly chain: Blockchain.Plume;
1702
+ readonly name: "Plume";
1703
+ readonly title: "Plume Mainnet";
1704
+ readonly nativeCurrency: {
1705
+ readonly name: "Plume";
1706
+ readonly symbol: "PLUME";
1707
+ readonly decimals: 18;
1708
+ };
1709
+ readonly chainId: 98866;
1710
+ readonly isTestnet: false;
1711
+ readonly explorerUrl: "https://explorer.plume.org/tx/{hash}";
1712
+ readonly rpcEndpoints: readonly ["https://rpc.plume.org"];
1713
+ readonly eurcAddress: null;
1714
+ readonly usdcAddress: "0x222365EF19F7947e5484218551B56bb3965Aa7aF";
1715
+ readonly cctp: {
1716
+ readonly domain: 22;
1717
+ readonly contracts: {
1718
+ readonly v2: {
1719
+ readonly type: "split";
1720
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1721
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1722
+ readonly confirmations: 65;
1723
+ readonly fastConfirmations: 1;
1724
+ };
1725
+ };
1726
+ };
1727
+ readonly kitContracts: {
1728
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1729
+ };
1730
+ };
1731
+
1732
+ /**
1733
+ * Plume Testnet chain definition
1734
+ * @remarks
1735
+ * This represents the official testnet for the Plume blockchain.
1736
+ * Used for development and testing purposes before deploying to mainnet.
1737
+ */
1738
+ declare const PlumeTestnet: {
1739
+ readonly type: "evm";
1740
+ readonly chain: Blockchain.Plume_Testnet;
1741
+ readonly name: "Plume Testnet";
1742
+ readonly title: "Plume Test Network";
1743
+ readonly nativeCurrency: {
1744
+ readonly name: "Plume";
1745
+ readonly symbol: "PLUME";
1746
+ readonly decimals: 18;
1747
+ };
1748
+ readonly chainId: 98867;
1749
+ readonly isTestnet: true;
1750
+ readonly explorerUrl: "https://testnet-explorer.plume.org/tx/{hash}";
1751
+ readonly rpcEndpoints: readonly ["https://testnet-rpc.plume.org"];
1752
+ readonly eurcAddress: null;
1753
+ readonly usdcAddress: "0xcB5f30e335672893c7eb944B374c196392C19D18";
1754
+ readonly cctp: {
1755
+ readonly domain: 22;
1756
+ readonly contracts: {
1757
+ readonly v2: {
1758
+ readonly type: "split";
1759
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1760
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1761
+ readonly confirmations: 65;
1762
+ readonly fastConfirmations: 1;
1763
+ };
1764
+ };
1765
+ };
1766
+ readonly kitContracts: {
1767
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1768
+ };
1769
+ };
1770
+
1771
+ /**
1772
+ * Polkadot Asset Hub chain definition
1773
+ * @remarks
1774
+ * This represents the official asset management parachain for the Polkadot blockchain.
1775
+ */
1776
+ declare const PolkadotAssetHub: {
1777
+ readonly type: "polkadot";
1778
+ readonly chain: Blockchain.Polkadot_Asset_Hub;
1779
+ readonly name: "Polkadot Asset Hub";
1780
+ readonly title: "Polkadot Asset Hub";
1781
+ readonly nativeCurrency: {
1782
+ readonly name: "Polkadot";
1783
+ readonly symbol: "DOT";
1784
+ readonly decimals: 10;
1785
+ };
1786
+ readonly isTestnet: false;
1787
+ readonly explorerUrl: "https://polkadot.subscan.io/extrinsic/{hash}";
1788
+ readonly rpcEndpoints: readonly ["https://asset-hub-polkadot-rpc.n.dwellir.com"];
1789
+ readonly eurcAddress: null;
1790
+ readonly usdcAddress: "1337";
1791
+ readonly cctp: null;
1792
+ };
1793
+
1794
+ /**
1795
+ * Polkadot Westmint chain definition
1796
+ * @remarks
1797
+ * This represents an asset management parachain in the Polkadot ecosystem.
1798
+ */
1799
+ declare const PolkadotWestmint: {
1800
+ readonly type: "polkadot";
1801
+ readonly chain: Blockchain.Polkadot_Westmint;
1802
+ readonly name: "Polkadot Westmint";
1803
+ readonly title: "Polkadot Westmint";
1804
+ readonly nativeCurrency: {
1805
+ readonly name: "Polkadot";
1806
+ readonly symbol: "DOT";
1807
+ readonly decimals: 10;
1808
+ };
1809
+ readonly isTestnet: false;
1810
+ readonly explorerUrl: "https://assethub-polkadot.subscan.io/extrinsic/{hash}";
1811
+ readonly rpcEndpoints: readonly ["https://westmint-rpc.polkadot.io"];
1812
+ readonly eurcAddress: null;
1813
+ readonly usdcAddress: "Asset ID 31337";
1814
+ readonly cctp: null;
1815
+ };
1816
+
1817
+ /**
1818
+ * Polygon Mainnet chain definition
1819
+ * @remarks
1820
+ * This represents the official production network for the Polygon blockchain.
1821
+ */
1822
+ declare const Polygon: {
1823
+ readonly type: "evm";
1824
+ readonly chain: Blockchain.Polygon;
1825
+ readonly name: "Polygon";
1826
+ readonly title: "Polygon Mainnet";
1827
+ readonly nativeCurrency: {
1828
+ readonly name: "POL";
1829
+ readonly symbol: "POL";
1830
+ readonly decimals: 18;
1831
+ };
1832
+ readonly chainId: 137;
1833
+ readonly isTestnet: false;
1834
+ readonly explorerUrl: "https://polygonscan.com/tx/{hash}";
1835
+ readonly rpcEndpoints: readonly ["https://polygon-rpc.com", "https://polygon.publicnode.com"];
1836
+ readonly eurcAddress: null;
1837
+ readonly usdcAddress: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
1838
+ readonly cctp: {
1839
+ readonly domain: 7;
1840
+ readonly contracts: {
1841
+ readonly v1: {
1842
+ readonly type: "split";
1843
+ readonly tokenMessenger: "0x9daF8c91AEFAE50b9c0E69629D3F6Ca40cA3B3FE";
1844
+ readonly messageTransmitter: "0xF3be9355363857F3e001be68856A2f96b4C39Ba9";
1845
+ readonly confirmations: 200;
1846
+ };
1847
+ readonly v2: {
1848
+ readonly type: "split";
1849
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1850
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1851
+ readonly confirmations: 33;
1852
+ readonly fastConfirmations: 13;
1853
+ };
1854
+ };
1855
+ };
1856
+ readonly kitContracts: {
1857
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1858
+ };
1859
+ };
1860
+
1861
+ /**
1862
+ * Polygon Amoy Testnet chain definition
1863
+ * @remarks
1864
+ * This represents the official test network for the Polygon blockchain.
1865
+ */
1866
+ declare const PolygonAmoy: {
1867
+ readonly type: "evm";
1868
+ readonly chain: Blockchain.Polygon_Amoy_Testnet;
1869
+ readonly name: "Polygon Amoy";
1870
+ readonly title: "Polygon Amoy Testnet";
1871
+ readonly nativeCurrency: {
1872
+ readonly name: "POL";
1873
+ readonly symbol: "POL";
1874
+ readonly decimals: 18;
1875
+ };
1876
+ readonly chainId: 80002;
1877
+ readonly isTestnet: true;
1878
+ readonly explorerUrl: "https://amoy.polygonscan.com/tx/{hash}";
1879
+ readonly rpcEndpoints: readonly ["https://rpc-amoy.polygon.technology"];
1880
+ readonly eurcAddress: null;
1881
+ readonly usdcAddress: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
1882
+ readonly cctp: {
1883
+ readonly domain: 7;
1884
+ readonly contracts: {
1885
+ readonly v1: {
1886
+ readonly type: "split";
1887
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
1888
+ readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
1889
+ readonly confirmations: 200;
1890
+ };
1891
+ readonly v2: {
1892
+ readonly type: "split";
1893
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1894
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1895
+ readonly confirmations: 33;
1896
+ readonly fastConfirmations: 13;
1897
+ };
1898
+ };
1899
+ };
1900
+ readonly kitContracts: {
1901
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1902
+ };
1903
+ };
1904
+
1905
+ /**
1906
+ * Sei Mainnet chain definition
1907
+ * @remarks
1908
+ * This represents the official production network for the Sei blockchain.
1909
+ * Sei is a Layer 1 blockchain specialized for DeFi and trading applications
1910
+ * with native orderbook and matching engine.
1911
+ */
1912
+ declare const Sei: {
1913
+ readonly type: "evm";
1914
+ readonly chain: Blockchain.Sei;
1915
+ readonly name: "Sei";
1916
+ readonly title: "Sei Mainnet";
1917
+ readonly nativeCurrency: {
1918
+ readonly name: "Sei";
1919
+ readonly symbol: "SEI";
1920
+ readonly decimals: 18;
1921
+ };
1922
+ readonly chainId: 1329;
1923
+ readonly isTestnet: false;
1924
+ readonly explorerUrl: "https://seitrace.com/tx/{hash}?chain=pacific-1";
1925
+ readonly rpcEndpoints: readonly ["https://evm-rpc.sei-apis.com"];
1926
+ readonly eurcAddress: null;
1927
+ readonly usdcAddress: "0xe15fC38F6D8c56aF07bbCBe3BAf5708A2Bf42392";
1928
+ readonly cctp: {
1929
+ readonly domain: 16;
1930
+ readonly contracts: {
1931
+ readonly v2: {
1932
+ readonly type: "split";
1933
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1934
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1935
+ readonly confirmations: 1;
1936
+ readonly fastConfirmations: 1;
1937
+ };
1938
+ };
1939
+ };
1940
+ readonly kitContracts: {
1941
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1942
+ };
1943
+ };
1944
+
1945
+ /**
1946
+ * Sei Testnet chain definition
1947
+ * @remarks
1948
+ * This represents the official testnet for the Sei blockchain.
1949
+ * Used for development and testing purposes before deploying to mainnet.
1950
+ */
1951
+ declare const SeiTestnet: {
1952
+ readonly type: "evm";
1953
+ readonly chain: Blockchain.Sei_Testnet;
1954
+ readonly name: "Sei Testnet";
1955
+ readonly title: "Sei Test Network";
1956
+ readonly nativeCurrency: {
1957
+ readonly name: "Sei";
1958
+ readonly symbol: "SEI";
1959
+ readonly decimals: 18;
1960
+ };
1961
+ readonly chainId: 1328;
1962
+ readonly isTestnet: true;
1963
+ readonly explorerUrl: "https://seitrace.com/tx/{hash}?chain=atlantic-2";
1964
+ readonly rpcEndpoints: readonly ["https://evm-rpc-testnet.sei-apis.com"];
1965
+ readonly eurcAddress: null;
1966
+ readonly usdcAddress: "0x4fCF1784B31630811181f670Aea7A7bEF803eaED";
1967
+ readonly cctp: {
1968
+ readonly domain: 16;
1969
+ readonly contracts: {
1970
+ readonly v2: {
1971
+ readonly type: "split";
1972
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1973
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1974
+ readonly confirmations: 1;
1975
+ readonly fastConfirmations: 1;
1976
+ };
1977
+ };
1978
+ };
1979
+ readonly kitContracts: {
1980
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1981
+ };
1982
+ };
1983
+
1984
+ /**
1985
+ * Sonic Mainnet chain definition
1986
+ * @remarks
1987
+ * This represents the official production network for the Sonic blockchain.
1988
+ */
1989
+ declare const Sonic: {
1990
+ readonly type: "evm";
1991
+ readonly chain: Blockchain.Sonic;
1992
+ readonly name: "Sonic";
1993
+ readonly title: "Sonic Mainnet";
1994
+ readonly nativeCurrency: {
1995
+ readonly name: "Sonic";
1996
+ readonly symbol: "S";
1997
+ readonly decimals: 18;
1998
+ };
1999
+ readonly chainId: 146;
2000
+ readonly isTestnet: false;
2001
+ readonly explorerUrl: "https://sonicscan.org/tx/{hash}";
2002
+ readonly rpcEndpoints: readonly ["https://rpc.soniclabs.com"];
2003
+ readonly eurcAddress: null;
2004
+ readonly usdcAddress: "0x29219dd400f2Bf60E5a23d13Be72B486D4038894";
2005
+ readonly cctp: {
2006
+ readonly domain: 13;
2007
+ readonly contracts: {
2008
+ readonly v2: {
2009
+ readonly type: "split";
2010
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
2011
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
2012
+ readonly confirmations: 1;
2013
+ readonly fastConfirmations: 1;
2014
+ };
2015
+ };
2016
+ };
2017
+ readonly kitContracts: {
2018
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
2019
+ };
2020
+ };
2021
+
2022
+ /**
2023
+ * Sonic Testnet chain definition
2024
+ * @remarks
2025
+ * This represents the official test network for the Sonic blockchain.
2026
+ */
2027
+ declare const SonicTestnet: {
2028
+ readonly type: "evm";
2029
+ readonly chain: Blockchain.Sonic_Testnet;
2030
+ readonly name: "Sonic Testnet";
2031
+ readonly title: "Sonic Testnet";
2032
+ readonly nativeCurrency: {
2033
+ readonly name: "Sonic";
2034
+ readonly symbol: "S";
2035
+ readonly decimals: 18;
2036
+ };
2037
+ readonly chainId: 14601;
2038
+ readonly isTestnet: true;
2039
+ readonly explorerUrl: "https://testnet.sonicscan.org/tx/{hash}";
2040
+ readonly rpcEndpoints: readonly ["https://rpc.testnet.soniclabs.com"];
2041
+ readonly eurcAddress: null;
2042
+ readonly usdcAddress: "0x0BA304580ee7c9a980CF72e55f5Ed2E9fd30Bc51";
2043
+ readonly cctp: {
2044
+ readonly domain: 13;
2045
+ readonly contracts: {
2046
+ readonly v2: {
2047
+ readonly type: "split";
2048
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
2049
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
2050
+ readonly confirmations: 1;
2051
+ readonly fastConfirmations: 1;
2052
+ };
2053
+ };
2054
+ };
2055
+ readonly kitContracts: {
2056
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
2057
+ };
2058
+ };
2059
+
2060
+ /**
2061
+ * Solana Mainnet chain definition
2062
+ * @remarks
2063
+ * This represents the official production network for the Solana blockchain.
2064
+ */
2065
+ declare const Solana: {
2066
+ readonly type: "solana";
2067
+ readonly chain: Blockchain.Solana;
2068
+ readonly name: "Solana";
2069
+ readonly title: "Solana Mainnet";
2070
+ readonly nativeCurrency: {
2071
+ readonly name: "Solana";
2072
+ readonly symbol: "SOL";
2073
+ readonly decimals: 9;
2074
+ };
2075
+ readonly isTestnet: false;
2076
+ readonly explorerUrl: "https://solscan.io/tx/{hash}";
2077
+ readonly rpcEndpoints: readonly ["https://api.mainnet-beta.solana.com"];
2078
+ readonly eurcAddress: "HzwqbKZw8HxMN6bF2yFZNrht3c2iXXzpKcFu7uBEDKtr";
2079
+ readonly usdcAddress: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v";
2080
+ readonly cctp: {
2081
+ readonly domain: 5;
2082
+ readonly contracts: {
2083
+ readonly v1: {
2084
+ readonly type: "split";
2085
+ readonly tokenMessenger: "CCTPiPYPc6AsJuwueEnWgSgucamXDZwBd53dQ11YiKX3";
2086
+ readonly messageTransmitter: "CCTPmbSD7gX1bxKPAmg77w8oFzNFpaQiQUWD43TKaecd";
2087
+ readonly confirmations: 32;
2088
+ };
2089
+ readonly v2: {
2090
+ readonly type: "split";
2091
+ readonly tokenMessenger: "CCTPV2vPZJS2u2BBsUoscuikbYjnpFmbFsvVuJdgUMQe";
2092
+ readonly messageTransmitter: "CCTPV2Sm4AdWt5296sk4P66VBZ7bEhcARwFaaS9YPbeC";
2093
+ readonly confirmations: 32;
2094
+ readonly fastConfirmations: 3;
2095
+ };
2096
+ };
2097
+ };
2098
+ readonly kitContracts: {
2099
+ readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
2100
+ };
2101
+ };
2102
+
2103
+ /**
2104
+ * Solana Devnet chain definition
2105
+ * @remarks
2106
+ * This represents the development test network for the Solana blockchain.
2107
+ */
2108
+ declare const SolanaDevnet: {
2109
+ readonly type: "solana";
2110
+ readonly chain: Blockchain.Solana_Devnet;
2111
+ readonly name: "Solana Devnet";
2112
+ readonly title: "Solana Development Network";
2113
+ readonly nativeCurrency: {
2114
+ readonly name: "Solana";
2115
+ readonly symbol: "SOL";
2116
+ readonly decimals: 9;
2117
+ };
2118
+ readonly isTestnet: true;
2119
+ readonly explorerUrl: "https://solscan.io/tx/{hash}?cluster=devnet";
2120
+ readonly eurcAddress: "HzwqbKZw8HxMN6bF2yFZNrht3c2iXXzpKcFu7uBEDKtr";
2121
+ readonly usdcAddress: "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU";
2122
+ readonly cctp: {
2123
+ readonly domain: 5;
2124
+ readonly contracts: {
2125
+ readonly v1: {
2126
+ readonly type: "split";
2127
+ readonly tokenMessenger: "CCTPiPYPc6AsJuwueEnWgSgucamXDZwBd53dQ11YiKX3";
2128
+ readonly messageTransmitter: "CCTPmbSD7gX1bxKPAmg77w8oFzNFpaQiQUWD43TKaecd";
2129
+ readonly confirmations: 32;
2130
+ };
2131
+ readonly v2: {
2132
+ readonly type: "split";
2133
+ readonly tokenMessenger: "CCTPV2vPZJS2u2BBsUoscuikbYjnpFmbFsvVuJdgUMQe";
2134
+ readonly messageTransmitter: "CCTPV2Sm4AdWt5296sk4P66VBZ7bEhcARwFaaS9YPbeC";
2135
+ readonly confirmations: 32;
2136
+ readonly fastConfirmations: 3;
2137
+ };
2138
+ };
2139
+ };
2140
+ readonly kitContracts: {
2141
+ readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
2142
+ };
2143
+ readonly rpcEndpoints: readonly ["https://api.devnet.solana.com"];
2144
+ };
2145
+
2146
+ /**
2147
+ * Stellar Mainnet chain definition
2148
+ * @remarks
2149
+ * This represents the official production network for the Stellar blockchain.
2150
+ */
2151
+ declare const Stellar: {
2152
+ readonly type: "stellar";
2153
+ readonly chain: Blockchain.Stellar;
2154
+ readonly name: "Stellar";
2155
+ readonly title: "Stellar Mainnet";
2156
+ readonly nativeCurrency: {
2157
+ readonly name: "Stellar Lumens";
2158
+ readonly symbol: "XLM";
2159
+ readonly decimals: 7;
2160
+ };
2161
+ readonly isTestnet: false;
2162
+ readonly explorerUrl: "https://stellar.expert/explorer/public/tx/{hash}";
2163
+ readonly rpcEndpoints: readonly ["https://horizon.stellar.org"];
2164
+ readonly eurcAddress: "EURC-GDHU6WRG4IEQXM5NZ4BMPKOXHW76MZM4Y2IEMFDVXBSDP6SJY4ITNPP2";
2165
+ readonly usdcAddress: "USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN";
2166
+ readonly cctp: null;
2167
+ };
2168
+
2169
+ /**
2170
+ * Stellar Testnet chain definition
2171
+ * @remarks
2172
+ * This represents the official test network for the Stellar blockchain.
2173
+ */
2174
+ declare const StellarTestnet: {
2175
+ readonly type: "stellar";
2176
+ readonly chain: Blockchain.Stellar_Testnet;
2177
+ readonly name: "Stellar Testnet";
2178
+ readonly title: "Stellar Test Network";
2179
+ readonly nativeCurrency: {
2180
+ readonly name: "Stellar Lumens";
2181
+ readonly symbol: "XLM";
2182
+ readonly decimals: 7;
2183
+ };
2184
+ readonly isTestnet: true;
2185
+ readonly explorerUrl: "https://stellar.expert/explorer/testnet/tx/{hash}";
2186
+ readonly rpcEndpoints: readonly ["https://horizon-testnet.stellar.org"];
2187
+ readonly eurcAddress: "EURC-GB3Q6QDZYTHWT7E5PVS3W7FUT5GVAFC5KSZFFLPU25GO7VTC3NM2ZTVO";
2188
+ readonly usdcAddress: "USDC-GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5";
2189
+ readonly cctp: null;
2190
+ };
2191
+
2192
+ /**
2193
+ * Sui Mainnet chain definition
2194
+ * @remarks
2195
+ * This represents the official production network for the Sui blockchain.
2196
+ */
2197
+ declare const Sui: {
2198
+ readonly type: "sui";
2199
+ readonly chain: Blockchain.Sui;
2200
+ readonly name: "Sui";
2201
+ readonly title: "Sui Mainnet";
2202
+ readonly nativeCurrency: {
2203
+ readonly name: "Sui";
2204
+ readonly symbol: "SUI";
2205
+ readonly decimals: 9;
2206
+ };
2207
+ readonly isTestnet: false;
2208
+ readonly explorerUrl: "https://suiscan.xyz/mainnet/tx/{hash}";
2209
+ readonly rpcEndpoints: readonly ["https://fullnode.mainnet.sui.io"];
2210
+ readonly eurcAddress: null;
2211
+ readonly usdcAddress: "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC";
2212
+ readonly cctp: {
2213
+ readonly domain: 8;
2214
+ readonly contracts: {
2215
+ readonly v1: {
2216
+ readonly type: "split";
2217
+ readonly tokenMessenger: "0x2aa6c5d56376c371f88a6cc42e852824994993cb9bab8d3e6450cbe3cb32b94e";
2218
+ readonly messageTransmitter: "0x08d87d37ba49e785dde270a83f8e979605b03dc552b5548f26fdf2f49bf7ed1b";
2219
+ readonly confirmations: 1;
2220
+ };
2221
+ };
2222
+ };
2223
+ };
2224
+
2225
+ /**
2226
+ * Sui Testnet chain definition
2227
+ * @remarks
2228
+ * This represents the official test network for the Sui blockchain.
2229
+ */
2230
+ declare const SuiTestnet: {
2231
+ readonly type: "sui";
2232
+ readonly chain: Blockchain.Sui_Testnet;
2233
+ readonly name: "Sui Testnet";
2234
+ readonly title: "Sui Test Network";
2235
+ readonly nativeCurrency: {
2236
+ readonly name: "Sui";
2237
+ readonly symbol: "SUI";
2238
+ readonly decimals: 9;
2239
+ };
2240
+ readonly isTestnet: true;
2241
+ readonly explorerUrl: "https://suiscan.xyz/testnet/tx/{hash}";
2242
+ readonly rpcEndpoints: readonly ["https://fullnode.testnet.sui.io"];
2243
+ readonly eurcAddress: null;
2244
+ readonly usdcAddress: "0xa1ec7fc00a6f40db9693ad1415d0c193ad3906494428cf252621037bd7117e29::usdc::USDC";
2245
+ readonly cctp: {
2246
+ readonly domain: 8;
2247
+ readonly contracts: {
2248
+ readonly v1: {
2249
+ readonly type: "split";
2250
+ readonly tokenMessenger: "0x31cc14d80c175ae39777c0238f20594c6d4869cfab199f40b69f3319956b8beb";
2251
+ readonly messageTransmitter: "0x4931e06dce648b3931f890035bd196920770e913e43e45990b383f6486fdd0a5";
2252
+ readonly confirmations: 1;
2253
+ };
2254
+ };
2255
+ };
2256
+ };
2257
+
2258
+ /**
2259
+ * Unichain Mainnet chain definition
2260
+ * @remarks
2261
+ * This represents the official production network for the Unichain blockchain.
2262
+ */
2263
+ declare const Unichain: {
2264
+ readonly type: "evm";
2265
+ readonly chain: Blockchain.Unichain;
2266
+ readonly name: "Unichain";
2267
+ readonly title: "Unichain Mainnet";
2268
+ readonly nativeCurrency: {
2269
+ readonly name: "Uni";
2270
+ readonly symbol: "UNI";
2271
+ readonly decimals: 18;
2272
+ };
2273
+ readonly chainId: 130;
2274
+ readonly isTestnet: false;
2275
+ readonly explorerUrl: "https://unichain.blockscout.com/tx/{hash}";
2276
+ readonly rpcEndpoints: readonly ["https://rpc.unichain.org", "https://mainnet.unichain.org"];
2277
+ readonly eurcAddress: null;
2278
+ readonly usdcAddress: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
2279
+ readonly cctp: {
2280
+ readonly domain: 10;
2281
+ readonly contracts: {
2282
+ readonly v1: {
2283
+ readonly type: "split";
2284
+ readonly tokenMessenger: "0x4e744b28E787c3aD0e810eD65A24461D4ac5a762";
2285
+ readonly messageTransmitter: "0x353bE9E2E38AB1D19104534e4edC21c643Df86f4";
2286
+ readonly confirmations: 65;
2287
+ };
2288
+ readonly v2: {
2289
+ readonly type: "split";
2290
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
2291
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
2292
+ readonly confirmations: 65;
2293
+ readonly fastConfirmations: 1;
2294
+ };
2295
+ };
2296
+ };
2297
+ readonly kitContracts: {
2298
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
2299
+ };
2300
+ };
2301
+
2302
+ /**
2303
+ * Unichain Sepolia Testnet chain definition
2304
+ * @remarks
2305
+ * This represents the official test network for the Unichain blockchain.
2306
+ */
2307
+ declare const UnichainSepolia: {
2308
+ readonly type: "evm";
2309
+ readonly chain: Blockchain.Unichain_Sepolia;
2310
+ readonly name: "Unichain Sepolia";
2311
+ readonly title: "Unichain Sepolia Testnet";
2312
+ readonly nativeCurrency: {
2313
+ readonly name: "Sepolia Uni";
2314
+ readonly symbol: "UNI";
2315
+ readonly decimals: 18;
2316
+ };
2317
+ readonly chainId: 1301;
2318
+ readonly isTestnet: true;
2319
+ readonly explorerUrl: "https://unichain-sepolia.blockscout.com/tx/{hash}";
2320
+ readonly rpcEndpoints: readonly ["https://sepolia.unichain.org"];
2321
+ readonly eurcAddress: null;
2322
+ readonly usdcAddress: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
2323
+ readonly cctp: {
2324
+ readonly domain: 10;
2325
+ readonly contracts: {
2326
+ readonly v1: {
2327
+ readonly type: "split";
2328
+ readonly tokenMessenger: "0x8ed94B8dAd2Dc5453862ea5e316A8e71AAed9782";
2329
+ readonly messageTransmitter: "0xbc498c326533d675cf571B90A2Ced265ACb7d086";
2330
+ readonly confirmations: 65;
2331
+ };
2332
+ readonly v2: {
2333
+ readonly type: "split";
2334
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
2335
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
2336
+ readonly confirmations: 65;
2337
+ readonly fastConfirmations: 1;
2338
+ };
2339
+ };
2340
+ };
2341
+ readonly kitContracts: {
2342
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
2343
+ };
2344
+ };
2345
+
2346
+ /**
2347
+ * World Chain chain definition
2348
+ * @remarks
2349
+ * This represents the main network for the World Chain blockchain.
2350
+ */
2351
+ declare const WorldChain: {
2352
+ readonly type: "evm";
2353
+ readonly chain: Blockchain.World_Chain;
2354
+ readonly name: "World Chain";
2355
+ readonly title: "World Chain";
2356
+ readonly nativeCurrency: {
2357
+ readonly name: "Ether";
2358
+ readonly symbol: "ETH";
2359
+ readonly decimals: 18;
2360
+ };
2361
+ readonly chainId: 480;
2362
+ readonly isTestnet: false;
2363
+ readonly explorerUrl: "https://worldscan.org/tx/{hash}";
2364
+ readonly rpcEndpoints: readonly ["https://worldchain-mainnet.g.alchemy.com/public"];
2365
+ readonly eurcAddress: null;
2366
+ readonly usdcAddress: "0x79A02482A880bCe3F13E09da970dC34dB4cD24D1";
2367
+ readonly cctp: {
2368
+ readonly domain: 14;
2369
+ readonly contracts: {
2370
+ readonly v2: {
2371
+ readonly type: "split";
2372
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cF5d";
2373
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
2374
+ readonly confirmations: 65;
2375
+ readonly fastConfirmations: 1;
2376
+ };
2377
+ };
2378
+ };
2379
+ readonly kitContracts: {
2380
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
2381
+ };
2382
+ };
2383
+
2384
+ /**
2385
+ * World Chain Sepolia chain definition
2386
+ * @remarks
2387
+ * This represents the test network for the World Chain blockchain.
2388
+ */
2389
+ declare const WorldChainSepolia: {
2390
+ readonly type: "evm";
2391
+ readonly chain: Blockchain.World_Chain_Sepolia;
2392
+ readonly name: "World Chain Sepolia";
2393
+ readonly title: "World Chain Sepolia";
2394
+ readonly nativeCurrency: {
2395
+ readonly name: "Ether";
2396
+ readonly symbol: "ETH";
2397
+ readonly decimals: 18;
2398
+ };
2399
+ readonly chainId: 4801;
2400
+ readonly isTestnet: true;
2401
+ readonly explorerUrl: "https://sepolia.worldscan.org/tx/{hash}";
2402
+ readonly rpcEndpoints: readonly ["https://worldchain-sepolia.drpc.org", "https://worldchain-sepolia.g.alchemy.com/public"];
2403
+ readonly eurcAddress: null;
2404
+ readonly usdcAddress: "0x66145f38cBAC35Ca6F1Dfb4914dF98F1614aeA88";
2405
+ readonly cctp: {
2406
+ readonly domain: 14;
2407
+ readonly contracts: {
2408
+ readonly v2: {
2409
+ readonly type: "split";
2410
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
2411
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
2412
+ readonly confirmations: 65;
2413
+ readonly fastConfirmations: 1;
2414
+ };
2415
+ };
2416
+ };
2417
+ readonly kitContracts: {
2418
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
2419
+ };
2420
+ };
2421
+
2422
+ /**
2423
+ * XDC Mainnet chain definition
2424
+ * @remarks
2425
+ * This represents the official production network for the XDC blockchain.
2426
+ * XDC is a Layer 1 blockchain specialized for DeFi and trading applications
2427
+ * with native orderbook and matching engine.
2428
+ */
2429
+ declare const XDC: {
2430
+ readonly type: "evm";
2431
+ readonly chain: Blockchain.XDC;
2432
+ readonly name: "XDC";
2433
+ readonly title: "XDC Mainnet";
2434
+ readonly nativeCurrency: {
2435
+ readonly name: "XDC";
2436
+ readonly symbol: "XDC";
2437
+ readonly decimals: 18;
2438
+ };
2439
+ readonly chainId: 50;
2440
+ readonly isTestnet: false;
2441
+ readonly explorerUrl: "https://xdcscan.io/tx/{hash}";
2442
+ readonly rpcEndpoints: readonly ["https://erpc.xinfin.network"];
2443
+ readonly eurcAddress: null;
2444
+ readonly usdcAddress: "0xfA2958CB79b0491CC627c1557F441eF849Ca8eb1";
2445
+ readonly cctp: {
2446
+ readonly domain: 18;
2447
+ readonly contracts: {
2448
+ readonly v2: {
2449
+ readonly type: "split";
2450
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
2451
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
2452
+ readonly confirmations: 3;
2453
+ readonly fastConfirmations: 3;
2454
+ };
2455
+ };
2456
+ };
2457
+ readonly kitContracts: {
2458
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
2459
+ };
2460
+ };
2461
+
2462
+ /**
2463
+ * XDC Apothem Testnet chain definition
2464
+ * @remarks
2465
+ * This represents the official test network for the XDC Network, known as Apothem.
2466
+ */
2467
+ declare const XDCApothem: {
2468
+ readonly type: "evm";
2469
+ readonly chain: Blockchain.XDC_Apothem;
2470
+ readonly name: "Apothem Network";
2471
+ readonly title: "Apothem Network";
2472
+ readonly nativeCurrency: {
2473
+ readonly name: "TXDC";
2474
+ readonly symbol: "TXDC";
2475
+ readonly decimals: 18;
2476
+ };
2477
+ readonly chainId: 51;
2478
+ readonly isTestnet: true;
2479
+ readonly explorerUrl: "https://testnet.xdcscan.com/tx/{hash}";
2480
+ readonly rpcEndpoints: readonly ["https://erpc.apothem.network"];
2481
+ readonly eurcAddress: null;
2482
+ readonly usdcAddress: "0xb5AB69F7bBada22B28e79C8FFAECe55eF1c771D4";
2483
+ readonly cctp: {
2484
+ readonly domain: 18;
2485
+ readonly contracts: {
2486
+ readonly v2: {
2487
+ readonly type: "split";
2488
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
2489
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
2490
+ readonly confirmations: 3;
2491
+ readonly fastConfirmations: 1;
2492
+ };
2493
+ };
2494
+ };
2495
+ readonly kitContracts: {
2496
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
2497
+ };
2498
+ };
2499
+
2500
+ /**
2501
+ * ZKSync Era Mainnet chain definition
2502
+ * @remarks
2503
+ * This represents the official production network for the ZKSync Era blockchain.
2504
+ */
2505
+ declare const ZKSyncEra: {
2506
+ readonly type: "evm";
2507
+ readonly chain: Blockchain.ZKSync_Era;
2508
+ readonly name: "ZKSync Era";
2509
+ readonly title: "ZKSync Era Mainnet";
2510
+ readonly nativeCurrency: {
2511
+ readonly name: "Ether";
2512
+ readonly symbol: "ETH";
2513
+ readonly decimals: 18;
2514
+ };
2515
+ readonly chainId: 324;
2516
+ readonly isTestnet: false;
2517
+ readonly explorerUrl: "https://explorer.zksync.io/tx/{hash}";
2518
+ readonly rpcEndpoints: readonly ["https://mainnet.era.zksync.io"];
2519
+ readonly eurcAddress: null;
2520
+ readonly usdcAddress: "0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4";
2521
+ readonly cctp: null;
2522
+ };
2523
+
2524
+ /**
2525
+ * ZKSync Era Sepolia Testnet chain definition
2526
+ * @remarks
2527
+ * This represents the official test network for the ZKSync Era blockchain on Sepolia.
2528
+ */
2529
+ declare const ZKSyncEraSepolia: {
2530
+ readonly type: "evm";
2531
+ readonly chain: Blockchain.ZKSync_Sepolia;
2532
+ readonly name: "ZKSync Era Sepolia";
2533
+ readonly title: "ZKSync Era Sepolia Testnet";
2534
+ readonly nativeCurrency: {
2535
+ readonly name: "Sepolia Ether";
2536
+ readonly symbol: "ETH";
2537
+ readonly decimals: 18;
2538
+ };
2539
+ readonly chainId: 300;
2540
+ readonly isTestnet: true;
2541
+ readonly explorerUrl: "https://sepolia.explorer.zksync.io/tx/{hash}";
2542
+ readonly rpcEndpoints: readonly ["https://sepolia.era.zksync.dev"];
2543
+ readonly eurcAddress: null;
2544
+ readonly usdcAddress: "0xAe045DE5638162fa134807Cb558E15A3F5A7F853";
2545
+ readonly cctp: null;
2546
+ };
2547
+
2548
+ declare const Chains_Algorand: typeof Algorand;
2549
+ declare const Chains_AlgorandTestnet: typeof AlgorandTestnet;
2550
+ declare const Chains_Aptos: typeof Aptos;
2551
+ declare const Chains_AptosTestnet: typeof AptosTestnet;
2552
+ declare const Chains_Arbitrum: typeof Arbitrum;
2553
+ declare const Chains_ArbitrumSepolia: typeof ArbitrumSepolia;
2554
+ declare const Chains_ArcTestnet: typeof ArcTestnet;
2555
+ declare const Chains_Avalanche: typeof Avalanche;
2556
+ declare const Chains_AvalancheFuji: typeof AvalancheFuji;
2557
+ declare const Chains_Base: typeof Base;
2558
+ declare const Chains_BaseSepolia: typeof BaseSepolia;
2559
+ declare const Chains_Celo: typeof Celo;
2560
+ declare const Chains_CeloAlfajoresTestnet: typeof CeloAlfajoresTestnet;
2561
+ declare const Chains_Codex: typeof Codex;
2562
+ declare const Chains_CodexTestnet: typeof CodexTestnet;
2563
+ declare const Chains_Ethereum: typeof Ethereum;
2564
+ declare const Chains_EthereumSepolia: typeof EthereumSepolia;
2565
+ declare const Chains_Hedera: typeof Hedera;
2566
+ declare const Chains_HederaTestnet: typeof HederaTestnet;
2567
+ declare const Chains_HyperEVM: typeof HyperEVM;
2568
+ declare const Chains_HyperEVMTestnet: typeof HyperEVMTestnet;
2569
+ declare const Chains_Ink: typeof Ink;
2570
+ declare const Chains_InkTestnet: typeof InkTestnet;
2571
+ declare const Chains_Linea: typeof Linea;
2572
+ declare const Chains_LineaSepolia: typeof LineaSepolia;
2573
+ declare const Chains_NEAR: typeof NEAR;
2574
+ declare const Chains_NEARTestnet: typeof NEARTestnet;
2575
+ declare const Chains_Noble: typeof Noble;
2576
+ declare const Chains_NobleTestnet: typeof NobleTestnet;
2577
+ declare const Chains_Optimism: typeof Optimism;
2578
+ declare const Chains_OptimismSepolia: typeof OptimismSepolia;
2579
+ declare const Chains_Plume: typeof Plume;
2580
+ declare const Chains_PlumeTestnet: typeof PlumeTestnet;
2581
+ declare const Chains_PolkadotAssetHub: typeof PolkadotAssetHub;
2582
+ declare const Chains_PolkadotWestmint: typeof PolkadotWestmint;
2583
+ declare const Chains_Polygon: typeof Polygon;
2584
+ declare const Chains_PolygonAmoy: typeof PolygonAmoy;
2585
+ declare const Chains_Sei: typeof Sei;
2586
+ declare const Chains_SeiTestnet: typeof SeiTestnet;
2587
+ declare const Chains_Solana: typeof Solana;
2588
+ declare const Chains_SolanaDevnet: typeof SolanaDevnet;
2589
+ declare const Chains_Sonic: typeof Sonic;
2590
+ declare const Chains_SonicTestnet: typeof SonicTestnet;
2591
+ declare const Chains_Stellar: typeof Stellar;
2592
+ declare const Chains_StellarTestnet: typeof StellarTestnet;
2593
+ declare const Chains_Sui: typeof Sui;
2594
+ declare const Chains_SuiTestnet: typeof SuiTestnet;
2595
+ declare const Chains_Unichain: typeof Unichain;
2596
+ declare const Chains_UnichainSepolia: typeof UnichainSepolia;
2597
+ declare const Chains_WorldChain: typeof WorldChain;
2598
+ declare const Chains_WorldChainSepolia: typeof WorldChainSepolia;
2599
+ declare const Chains_XDC: typeof XDC;
2600
+ declare const Chains_XDCApothem: typeof XDCApothem;
2601
+ declare const Chains_ZKSyncEra: typeof ZKSyncEra;
2602
+ declare const Chains_ZKSyncEraSepolia: typeof ZKSyncEraSepolia;
2603
+ declare namespace Chains {
2604
+ export {
2605
+ Chains_Algorand as Algorand,
2606
+ Chains_AlgorandTestnet as AlgorandTestnet,
2607
+ Chains_Aptos as Aptos,
2608
+ Chains_AptosTestnet as AptosTestnet,
2609
+ Chains_Arbitrum as Arbitrum,
2610
+ Chains_ArbitrumSepolia as ArbitrumSepolia,
2611
+ Chains_ArcTestnet as ArcTestnet,
2612
+ Chains_Avalanche as Avalanche,
2613
+ Chains_AvalancheFuji as AvalancheFuji,
2614
+ Chains_Base as Base,
2615
+ Chains_BaseSepolia as BaseSepolia,
2616
+ Chains_Celo as Celo,
2617
+ Chains_CeloAlfajoresTestnet as CeloAlfajoresTestnet,
2618
+ Chains_Codex as Codex,
2619
+ Chains_CodexTestnet as CodexTestnet,
2620
+ Chains_Ethereum as Ethereum,
2621
+ Chains_EthereumSepolia as EthereumSepolia,
2622
+ Chains_Hedera as Hedera,
2623
+ Chains_HederaTestnet as HederaTestnet,
2624
+ Chains_HyperEVM as HyperEVM,
2625
+ Chains_HyperEVMTestnet as HyperEVMTestnet,
2626
+ Chains_Ink as Ink,
2627
+ Chains_InkTestnet as InkTestnet,
2628
+ Chains_Linea as Linea,
2629
+ Chains_LineaSepolia as LineaSepolia,
2630
+ Chains_NEAR as NEAR,
2631
+ Chains_NEARTestnet as NEARTestnet,
2632
+ Chains_Noble as Noble,
2633
+ Chains_NobleTestnet as NobleTestnet,
2634
+ Chains_Optimism as Optimism,
2635
+ Chains_OptimismSepolia as OptimismSepolia,
2636
+ Chains_Plume as Plume,
2637
+ Chains_PlumeTestnet as PlumeTestnet,
2638
+ Chains_PolkadotAssetHub as PolkadotAssetHub,
2639
+ Chains_PolkadotWestmint as PolkadotWestmint,
2640
+ Chains_Polygon as Polygon,
2641
+ Chains_PolygonAmoy as PolygonAmoy,
2642
+ Chains_Sei as Sei,
2643
+ Chains_SeiTestnet as SeiTestnet,
2644
+ Chains_Solana as Solana,
2645
+ Chains_SolanaDevnet as SolanaDevnet,
2646
+ Chains_Sonic as Sonic,
2647
+ Chains_SonicTestnet as SonicTestnet,
2648
+ Chains_Stellar as Stellar,
2649
+ Chains_StellarTestnet as StellarTestnet,
2650
+ Chains_Sui as Sui,
2651
+ Chains_SuiTestnet as SuiTestnet,
2652
+ Chains_Unichain as Unichain,
2653
+ Chains_UnichainSepolia as UnichainSepolia,
2654
+ Chains_WorldChain as WorldChain,
2655
+ Chains_WorldChainSepolia as WorldChainSepolia,
2656
+ Chains_XDC as XDC,
2657
+ Chains_XDCApothem as XDCApothem,
2658
+ Chains_ZKSyncEra as ZKSyncEra,
2659
+ Chains_ZKSyncEraSepolia as ZKSyncEraSepolia,
2660
+ };
2661
+ }
2662
+
584
2663
  /**
585
2664
  * Resolves a flexible chain identifier to a ChainDefinition.
586
2665
  *
@@ -783,14 +2862,26 @@ interface SolanaPreparedChainRequestParams {
783
2862
  */
784
2863
  instructions: TransactionInstruction[];
785
2864
  /**
786
- * Additional signers besides the Adapters wallet (e.g. program-derived authorities).
2865
+ * Additional signers besides the Adapter's wallet (e.g. program-derived authorities).
787
2866
  */
788
2867
  signers?: Signer[];
789
2868
  /**
790
2869
  * Optional override for how many compute units this transaction may consume.
791
- * If omitted, the networks default compute budget applies.
2870
+ * If omitted, the network's default compute budget applies.
792
2871
  */
793
2872
  computeUnitLimit?: number;
2873
+ /**
2874
+ * Optional Address Lookup Table accounts for transaction compression.
2875
+ * Used to reduce transaction size by compressing frequently-used addresses.
2876
+ * This is used by @solana/web3.js adapters that have already fetched the ALT data.
2877
+ */
2878
+ addressLookupTableAccounts?: AddressLookupTableAccount[];
2879
+ /**
2880
+ * Optional Address Lookup Table addresses for transaction compression.
2881
+ * Used by adapters that need to fetch ALT data themselves (e.g., @solana/kit adapters).
2882
+ * These are base58-encoded addresses of ALT accounts to use for compression.
2883
+ */
2884
+ addressLookupTableAddresses?: string[];
794
2885
  }
795
2886
  /**
796
2887
  * Solana-specific configuration for transaction estimation.
@@ -1472,6 +3563,34 @@ interface CCTPActionMap {
1472
3563
  readonly v2: CCTPv2ActionMap;
1473
3564
  }
1474
3565
 
3566
+ /**
3567
+ * Action map for native token operations (ETH, SOL, MATIC, etc.).
3568
+ *
3569
+ * Native tokens are the primary currency of each blockchain network,
3570
+ * used for paying transaction fees and as a store of value.
3571
+ * These actions operate on the native token without requiring
3572
+ * a separate token contract address.
3573
+ *
3574
+ * @remarks
3575
+ * Native token operations differ from ERC-20/SPL token operations
3576
+ * in that they don't require contract interactions for basic transfers
3577
+ * and balance checks.
3578
+ *
3579
+ * @see {@link ActionMap} for the complete action structure
3580
+ */
3581
+ interface NativeActionMap {
3582
+ /**
3583
+ * Get the native token balance (SOL, ETH, etc.) for a wallet address.
3584
+ */
3585
+ balanceOf: ActionParameters & {
3586
+ /**
3587
+ * The address to check the native balance for. If not provided, it will be
3588
+ * automatically derived from the adapter context.
3589
+ */
3590
+ walletAddress?: string | undefined;
3591
+ };
3592
+ }
3593
+
1475
3594
  interface TokenActionMap {
1476
3595
  /**
1477
3596
  * Set an allowance for a delegate to spend tokens on behalf of the wallet.
@@ -1703,6 +3822,8 @@ interface USDCActionMap {
1703
3822
  interface ActionMap {
1704
3823
  /** CCTP-specific operations with automatic address resolution. */
1705
3824
  readonly cctp: CCTPActionMap;
3825
+ /** Native token operations (ETH, SOL, MATIC, etc.). */
3826
+ readonly native: NativeActionMap;
1706
3827
  /** General token operations requiring explicit token addresses. */
1707
3828
  readonly token: TokenActionMap;
1708
3829
  /** USDC-specific operations with automatic address resolution. */
@@ -2750,15 +4871,39 @@ interface BridgeResult {
2750
4871
  *
2751
4872
  * This interface provides detailed information about the expected costs
2752
4873
  * for a transfer, including gas fees on different chains and protocol fees.
4874
+ * It also includes the input context (token, amount, source, destination) to
4875
+ * provide a complete view of the transfer being estimated.
2753
4876
  *
2754
4877
  * @example
2755
4878
  * ```typescript
2756
4879
  * const estimate: EstimateResult = await provider.estimate(source, dest, '100')
4880
+ * console.log('Estimating transfer of', estimate.amount, estimate.token)
4881
+ * console.log('From', estimate.source.chain.name, 'to', estimate.destination.chain.name)
2757
4882
  * console.log('Total gas fees:', estimate.gasFees.length)
2758
4883
  * console.log('Protocol fees:', estimate.fees.length)
2759
4884
  * ```
2760
4885
  */
2761
4886
  interface EstimateResult {
4887
+ /** The token being transferred */
4888
+ token: 'USDC';
4889
+ /** The amount being transferred */
4890
+ amount: string;
4891
+ /** Information about the source chain and address */
4892
+ source: {
4893
+ /** The source wallet/contract address */
4894
+ address: string;
4895
+ /** The source blockchain network */
4896
+ chain: Blockchain;
4897
+ };
4898
+ /** Information about the destination chain and address */
4899
+ destination: {
4900
+ /** The destination wallet/contract address */
4901
+ address: string;
4902
+ /** The destination blockchain network */
4903
+ chain: Blockchain;
4904
+ /** Optional custom recipient address for minted funds. */
4905
+ recipientAddress?: string;
4906
+ };
2762
4907
  /** Array of gas fees required for the transfer on different blockchains */
2763
4908
  gasFees: {
2764
4909
  /** The name of the step */
@@ -3464,6 +5609,102 @@ interface BridgeParams<TFromAdapterCapabilities extends AdapterCapabilities = Ad
3464
5609
  */
3465
5610
  token?: 'USDC';
3466
5611
  }
5612
+ /**
5613
+ * Union of all chain definition types.
5614
+ *
5615
+ * Each chain preserves literal types via `as const`.
5616
+ *
5617
+ * @internal
5618
+ */
5619
+ type AllChainDefinitions = (typeof Chains)[keyof typeof Chains];
5620
+ /**
5621
+ * Filter chain definitions to only those with CCTP v2 support.
5622
+ *
5623
+ * @internal
5624
+ */
5625
+ type FilterCCTPV2<T> = T extends {
5626
+ cctp: {
5627
+ contracts: {
5628
+ v2: unknown;
5629
+ };
5630
+ };
5631
+ } ? T : never;
5632
+ /**
5633
+ * Chain types that support CCTP v2 bridging.
5634
+ *
5635
+ * This type is automatically derived from the actual chain definitions, so it
5636
+ * updates when new chain types gain CCTP v2 support.
5637
+ *
5638
+ * @example
5639
+ * ```typescript
5640
+ * import type { CCTPV2SupportedChainType } from '@circle-fin/bridge-kit'
5641
+ *
5642
+ * const chainType: CCTPV2SupportedChainType = 'evm' // Valid
5643
+ * console.log(chainType)
5644
+ * ```
5645
+ */
5646
+ type CCTPV2SupportedChainType = FilterCCTPV2<AllChainDefinitions>['type'];
5647
+ /**
5648
+ * Options for filtering supported chains returned by {@link BridgeKit.getSupportedChains}.
5649
+ *
5650
+ * At least one filtering option must be provided. Multiple options can be combined to create more specific filters.
5651
+ *
5652
+ * @example
5653
+ * ```typescript
5654
+ * const kit = new BridgeKit()
5655
+ *
5656
+ * // Get all supported chains (no filtering)
5657
+ * const allChains = kit.getSupportedChains()
5658
+ *
5659
+ * // Get only EVM chains
5660
+ * const evmChains = kit.getSupportedChains({ chainType: 'evm' })
5661
+ *
5662
+ * // Get EVM and Solana chains
5663
+ * const evmAndSolana = kit.getSupportedChains({ chainType: ['evm', 'solana'] })
5664
+ *
5665
+ * // Get only mainnet chains
5666
+ * const mainnets = kit.getSupportedChains({ isTestnet: false })
5667
+ *
5668
+ * // Get only EVM mainnet chains
5669
+ * const evmMainnets = kit.getSupportedChains({ chainType: 'evm', isTestnet: false })
5670
+ * ```
5671
+ */
5672
+ type GetSupportedChainsOptions = {
5673
+ /**
5674
+ * Filter chains by type (e.g., 'evm', 'solana').
5675
+ * Can be a single type or an array of types.
5676
+ * If not provided, returns chains of all types.
5677
+ *
5678
+ * @example
5679
+ * ```typescript
5680
+ * // Single type
5681
+ * kit.getSupportedChains({ chainType: 'evm' })
5682
+ *
5683
+ * // Multiple types
5684
+ * kit.getSupportedChains({ chainType: ['evm', 'solana'] })
5685
+ * ```
5686
+ */
5687
+ chainType: CCTPV2SupportedChainType | CCTPV2SupportedChainType[];
5688
+ /**
5689
+ * Filter chains by network type.
5690
+ * - `true`: only testnet chains
5691
+ * - `false`: only mainnet chains
5692
+ * - `undefined`: all chains (default)
5693
+ *
5694
+ * @example
5695
+ * ```typescript
5696
+ * // Get only mainnet chains
5697
+ * kit.getSupportedChains({ isTestnet: false })
5698
+ *
5699
+ * // Get only testnet chains
5700
+ * kit.getSupportedChains({ isTestnet: true })
5701
+ * ```
5702
+ */
5703
+ isTestnet?: boolean;
5704
+ } | {
5705
+ chainType?: CCTPV2SupportedChainType | CCTPV2SupportedChainType[];
5706
+ isTestnet: boolean;
5707
+ };
3467
5708
 
3468
5709
  /**
3469
5710
  * The default providers that will be used in addition to the providers provided
@@ -3915,7 +6156,7 @@ declare class BridgeKit<TExtraProviders extends FlexibleBridgingProvider[] = []>
3915
6156
  */
3916
6157
  estimate<TFromAdapterCapabilities extends AdapterCapabilities, TToAdapterCapabilities extends AdapterCapabilities>(params: BridgeParams<TFromAdapterCapabilities, TToAdapterCapabilities>): Promise<EstimateResult>;
3917
6158
  /**
3918
- * Get all chains supported by any provider in the kit.
6159
+ * Get all chains supported by any provider in the kit, with optional filtering.
3919
6160
  *
3920
6161
  * Aggregate and deduplicate the supported chains from all registered providers.
3921
6162
  * This provides a comprehensive list of chains that can be used as either source
@@ -3925,6 +6166,7 @@ declare class BridgeKit<TExtraProviders extends FlexibleBridgingProvider[] = []>
3925
6166
  * ensuring each chain appears only once in the result regardless of how many
3926
6167
  * providers support it.
3927
6168
  *
6169
+ * @param options - Optional filtering options to narrow down the returned chains
3928
6170
  * @returns Array of unique chain definitions supported by the registered providers
3929
6171
  *
3930
6172
  * @example
@@ -3932,15 +6174,29 @@ declare class BridgeKit<TExtraProviders extends FlexibleBridgingProvider[] = []>
3932
6174
  * import { BridgeKit } from '@circle-fin/bridge-kit'
3933
6175
  *
3934
6176
  * const kit = new BridgeKit()
3935
- * const chains = kit.getSupportedChains()
6177
+ *
6178
+ * // Get all supported chains (no filtering)
6179
+ * const allChains = kit.getSupportedChains()
6180
+ *
6181
+ * // Get only EVM chains
6182
+ * const evmChains = kit.getSupportedChains({ chainType: 'evm' })
6183
+ *
6184
+ * // Get EVM and Solana chains
6185
+ * const evmAndSolana = kit.getSupportedChains({ chainType: ['evm', 'solana'] })
6186
+ *
6187
+ * // Get only mainnet chains
6188
+ * const mainnets = kit.getSupportedChains({ isTestnet: false })
6189
+ *
6190
+ * // Get only EVM mainnet chains
6191
+ * const evmMainnets = kit.getSupportedChains({ chainType: 'evm', isTestnet: false })
3936
6192
  *
3937
6193
  * console.log('Supported chains:')
3938
- * chains.forEach(chain => {
6194
+ * allChains.forEach(chain => {
3939
6195
  * console.log(`- ${chain.name} (${chain.type})`)
3940
6196
  * })
3941
6197
  * ```
3942
6198
  */
3943
- getSupportedChains(): ChainDefinition[];
6199
+ getSupportedChains(options?: GetSupportedChainsOptions): ChainDefinition[];
3944
6200
  /**
3945
6201
  * Validate that source and destination chains are on the same network type.
3946
6202
  *
@@ -4466,6 +6722,239 @@ declare class KitError extends Error implements ErrorDetails {
4466
6722
  constructor(details: ErrorDetails);
4467
6723
  }
4468
6724
 
6725
+ /**
6726
+ * Standardized error code ranges for consistent categorization:
6727
+ *
6728
+ * - 1000-1999: INPUT errors - Parameter validation, input format errors
6729
+ * - 3000-3999: NETWORK errors - Internet connectivity, DNS, connection issues
6730
+ * - 4000-4999: RPC errors - Blockchain provider issues, gas estimation, nonce errors
6731
+ * - 5000-5999: ONCHAIN errors - Transaction/simulation failures, gas exhaustion, reverts
6732
+ * - 9000-9999: BALANCE errors - Insufficient funds, token balance, allowance
6733
+ */
6734
+ /**
6735
+ * Standardized error definitions for INPUT type errors.
6736
+ *
6737
+ * Each entry combines the numeric error code, string name, and type
6738
+ * to ensure consistency when creating error instances.
6739
+ *
6740
+ * Error codes follow a hierarchical numbering scheme where the first digit
6741
+ * indicates the error category (1 = INPUT) and subsequent digits provide
6742
+ * specific error identification within that category.
6743
+ *
6744
+ *
6745
+ * @example
6746
+ * ```typescript
6747
+ * import { InputError } from '@core/errors'
6748
+ *
6749
+ * const error = new KitError({
6750
+ * ...InputError.NETWORK_MISMATCH,
6751
+ * recoverability: 'FATAL',
6752
+ * message: 'Source and destination networks must be different'
6753
+ * })
6754
+ *
6755
+ * // Access code, name, and type individually if needed
6756
+ * console.log(InputError.NETWORK_MISMATCH.code) // 1001
6757
+ * console.log(InputError.NETWORK_MISMATCH.name) // 'INPUT_NETWORK_MISMATCH'
6758
+ * console.log(InputError.NETWORK_MISMATCH.type) // 'INPUT'
6759
+ * ```
6760
+ */
6761
+ declare const InputError: {
6762
+ /** Network type mismatch between chains (mainnet vs testnet) */
6763
+ readonly NETWORK_MISMATCH: {
6764
+ readonly code: 1001;
6765
+ readonly name: "INPUT_NETWORK_MISMATCH";
6766
+ readonly type: ErrorType;
6767
+ };
6768
+ /** Invalid amount format or value (negative, zero, or malformed) */
6769
+ readonly INVALID_AMOUNT: {
6770
+ readonly code: 1002;
6771
+ readonly name: "INPUT_INVALID_AMOUNT";
6772
+ readonly type: ErrorType;
6773
+ };
6774
+ /** Unsupported or invalid bridge route configuration */
6775
+ readonly UNSUPPORTED_ROUTE: {
6776
+ readonly code: 1003;
6777
+ readonly name: "INPUT_UNSUPPORTED_ROUTE";
6778
+ readonly type: ErrorType;
6779
+ };
6780
+ /** Invalid wallet or contract address format */
6781
+ readonly INVALID_ADDRESS: {
6782
+ readonly code: 1004;
6783
+ readonly name: "INPUT_INVALID_ADDRESS";
6784
+ readonly type: ErrorType;
6785
+ };
6786
+ /** Invalid or unsupported chain identifier */
6787
+ readonly INVALID_CHAIN: {
6788
+ readonly code: 1005;
6789
+ readonly name: "INPUT_INVALID_CHAIN";
6790
+ readonly type: ErrorType;
6791
+ };
6792
+ /** Invalid or unknown token (symbol not found, missing decimals, etc.) */
6793
+ readonly INVALID_TOKEN: {
6794
+ readonly code: 1006;
6795
+ readonly name: "INPUT_INVALID_TOKEN";
6796
+ readonly type: ErrorType;
6797
+ };
6798
+ /** General validation failure for complex validation rules */
6799
+ readonly VALIDATION_FAILED: {
6800
+ readonly code: 1098;
6801
+ readonly name: "INPUT_VALIDATION_FAILED";
6802
+ readonly type: ErrorType;
6803
+ };
6804
+ };
6805
+ /**
6806
+ * Standardized error definitions for BALANCE type errors.
6807
+ *
6808
+ * BALANCE errors indicate insufficient funds or allowance issues
6809
+ * that prevent transaction execution.
6810
+ *
6811
+ * @example
6812
+ * ```typescript
6813
+ * import { BalanceError } from '@core/errors'
6814
+ *
6815
+ * const error = new KitError({
6816
+ * ...BalanceError.INSUFFICIENT_TOKEN,
6817
+ * recoverability: 'FATAL',
6818
+ * message: 'Insufficient USDC balance on Ethereum',
6819
+ * cause: { trace: { required: '100', available: '50' } }
6820
+ * })
6821
+ * ```
6822
+ */
6823
+ declare const BalanceError: {
6824
+ /** Insufficient token balance for transaction */
6825
+ readonly INSUFFICIENT_TOKEN: {
6826
+ readonly code: 9001;
6827
+ readonly name: "BALANCE_INSUFFICIENT_TOKEN";
6828
+ readonly type: ErrorType;
6829
+ };
6830
+ /** Insufficient native token (ETH/SOL/etc) for gas fees */
6831
+ readonly INSUFFICIENT_GAS: {
6832
+ readonly code: 9002;
6833
+ readonly name: "BALANCE_INSUFFICIENT_GAS";
6834
+ readonly type: ErrorType;
6835
+ };
6836
+ /** Insufficient allowance for token transfer */
6837
+ readonly INSUFFICIENT_ALLOWANCE: {
6838
+ readonly code: 9003;
6839
+ readonly name: "BALANCE_INSUFFICIENT_ALLOWANCE";
6840
+ readonly type: ErrorType;
6841
+ };
6842
+ };
6843
+ /**
6844
+ * Standardized error definitions for ONCHAIN type errors.
6845
+ *
6846
+ * ONCHAIN errors occur during transaction execution, simulation,
6847
+ * or interaction with smart contracts on the blockchain.
6848
+ *
6849
+ * @example
6850
+ * ```typescript
6851
+ * import { OnchainError } from '@core/errors'
6852
+ *
6853
+ * const error = new KitError({
6854
+ * ...OnchainError.SIMULATION_FAILED,
6855
+ * recoverability: 'FATAL',
6856
+ * message: 'Simulation failed: ERC20 transfer amount exceeds balance',
6857
+ * cause: { trace: { reason: 'ERC20: transfer amount exceeds balance' } }
6858
+ * })
6859
+ * ```
6860
+ */
6861
+ declare const OnchainError: {
6862
+ /** Transaction reverted on-chain after execution */
6863
+ readonly TRANSACTION_REVERTED: {
6864
+ readonly code: 5001;
6865
+ readonly name: "ONCHAIN_TRANSACTION_REVERTED";
6866
+ readonly type: ErrorType;
6867
+ };
6868
+ /** Pre-flight transaction simulation failed */
6869
+ readonly SIMULATION_FAILED: {
6870
+ readonly code: 5002;
6871
+ readonly name: "ONCHAIN_SIMULATION_FAILED";
6872
+ readonly type: ErrorType;
6873
+ };
6874
+ /** Transaction ran out of gas during execution */
6875
+ readonly OUT_OF_GAS: {
6876
+ readonly code: 5003;
6877
+ readonly name: "ONCHAIN_OUT_OF_GAS";
6878
+ readonly type: ErrorType;
6879
+ };
6880
+ /** Transaction exceeds block gas limit */
6881
+ readonly GAS_LIMIT_EXCEEDED: {
6882
+ readonly code: 5004;
6883
+ readonly name: "ONCHAIN_GAS_LIMIT_EXCEEDED";
6884
+ readonly type: ErrorType;
6885
+ };
6886
+ };
6887
+ /**
6888
+ * Standardized error definitions for RPC type errors.
6889
+ *
6890
+ * RPC errors occur when communicating with blockchain RPC providers,
6891
+ * including endpoint failures, invalid responses, and provider-specific issues.
6892
+ *
6893
+ * @example
6894
+ * ```typescript
6895
+ * import { RpcError } from '@core/errors'
6896
+ *
6897
+ * const error = new KitError({
6898
+ * ...RpcError.ENDPOINT_ERROR,
6899
+ * recoverability: 'RETRYABLE',
6900
+ * message: 'RPC endpoint unavailable on Ethereum',
6901
+ * cause: { trace: { endpoint: 'https://mainnet.infura.io' } }
6902
+ * })
6903
+ * ```
6904
+ */
6905
+ declare const RpcError: {
6906
+ /** RPC endpoint returned error or is unavailable */
6907
+ readonly ENDPOINT_ERROR: {
6908
+ readonly code: 4001;
6909
+ readonly name: "RPC_ENDPOINT_ERROR";
6910
+ readonly type: ErrorType;
6911
+ };
6912
+ /** Invalid or unexpected RPC response format */
6913
+ readonly INVALID_RESPONSE: {
6914
+ readonly code: 4002;
6915
+ readonly name: "RPC_INVALID_RESPONSE";
6916
+ readonly type: ErrorType;
6917
+ };
6918
+ /** Nonce-related errors from RPC provider */
6919
+ readonly NONCE_ERROR: {
6920
+ readonly code: 4003;
6921
+ readonly name: "RPC_NONCE_ERROR";
6922
+ readonly type: ErrorType;
6923
+ };
6924
+ };
6925
+ /**
6926
+ * Standardized error definitions for NETWORK type errors.
6927
+ *
6928
+ * NETWORK errors indicate connectivity issues at the network layer,
6929
+ * including DNS failures, connection timeouts, and unreachable endpoints.
6930
+ *
6931
+ * @example
6932
+ * ```typescript
6933
+ * import { NetworkError } from '@core/errors'
6934
+ *
6935
+ * const error = new KitError({
6936
+ * ...NetworkError.CONNECTION_FAILED,
6937
+ * recoverability: 'RETRYABLE',
6938
+ * message: 'Failed to connect to Ethereum network',
6939
+ * cause: { trace: { error: 'ECONNREFUSED' } }
6940
+ * })
6941
+ * ```
6942
+ */
6943
+ declare const NetworkError: {
6944
+ /** Network connection failed or unreachable */
6945
+ readonly CONNECTION_FAILED: {
6946
+ readonly code: 3001;
6947
+ readonly name: "NETWORK_CONNECTION_FAILED";
6948
+ readonly type: ErrorType;
6949
+ };
6950
+ /** Network request timeout */
6951
+ readonly TIMEOUT: {
6952
+ readonly code: 3002;
6953
+ readonly name: "NETWORK_TIMEOUT";
6954
+ readonly type: ErrorType;
6955
+ };
6956
+ };
6957
+
4469
6958
  /**
4470
6959
  * Type guard to check if an error is a KitError instance.
4471
6960
  *
@@ -4568,6 +7057,106 @@ declare function isRetryableError(error: unknown): boolean;
4568
7057
  * ```
4569
7058
  */
4570
7059
  declare function isInputError(error: unknown): error is KitError;
7060
+ /**
7061
+ * Type guard to check if error is KitError with BALANCE type.
7062
+ *
7063
+ * BALANCE errors indicate insufficient funds or allowance issues
7064
+ * that prevent transaction execution. These errors are always FATAL
7065
+ * and require the user to add funds or approve more tokens.
7066
+ *
7067
+ * @param error - Unknown error to check
7068
+ * @returns True if error is KitError with BALANCE type
7069
+ *
7070
+ * @example
7071
+ * ```typescript
7072
+ * import { isBalanceError } from '@core/errors'
7073
+ *
7074
+ * try {
7075
+ * await kit.bridge(params)
7076
+ * } catch (error) {
7077
+ * if (isBalanceError(error)) {
7078
+ * console.log('Insufficient funds:', error.message)
7079
+ * showAddFundsUI()
7080
+ * }
7081
+ * }
7082
+ * ```
7083
+ */
7084
+ declare function isBalanceError(error: unknown): error is KitError;
7085
+ /**
7086
+ * Type guard to check if error is KitError with ONCHAIN type.
7087
+ *
7088
+ * ONCHAIN errors occur during transaction execution or simulation,
7089
+ * including reverts, gas issues, and smart contract failures.
7090
+ * These errors are typically FATAL.
7091
+ *
7092
+ * @param error - Unknown error to check
7093
+ * @returns True if error is KitError with ONCHAIN type
7094
+ *
7095
+ * @example
7096
+ * ```typescript
7097
+ * import { isOnchainError } from '@core/errors'
7098
+ *
7099
+ * try {
7100
+ * await kit.bridge(params)
7101
+ * } catch (error) {
7102
+ * if (isOnchainError(error)) {
7103
+ * console.log('Transaction failed:', error.message)
7104
+ * showTransactionErrorUI()
7105
+ * }
7106
+ * }
7107
+ * ```
7108
+ */
7109
+ declare function isOnchainError(error: unknown): error is KitError;
7110
+ /**
7111
+ * Type guard to check if error is KitError with RPC type.
7112
+ *
7113
+ * RPC errors occur when communicating with blockchain RPC providers.
7114
+ * These errors are typically RETRYABLE as they often indicate
7115
+ * temporary provider issues.
7116
+ *
7117
+ * @param error - Unknown error to check
7118
+ * @returns True if error is KitError with RPC type
7119
+ *
7120
+ * @example
7121
+ * ```typescript
7122
+ * import { isRpcError } from '@core/errors'
7123
+ *
7124
+ * try {
7125
+ * await kit.bridge(params)
7126
+ * } catch (error) {
7127
+ * if (isRpcError(error)) {
7128
+ * console.log('RPC error:', error.message)
7129
+ * retryWithBackoff()
7130
+ * }
7131
+ * }
7132
+ * ```
7133
+ */
7134
+ declare function isRpcError(error: unknown): error is KitError;
7135
+ /**
7136
+ * Type guard to check if error is KitError with NETWORK type.
7137
+ *
7138
+ * NETWORK errors indicate connectivity issues at the network layer.
7139
+ * These errors are typically RETRYABLE as they often indicate
7140
+ * temporary network problems.
7141
+ *
7142
+ * @param error - Unknown error to check
7143
+ * @returns True if error is KitError with NETWORK type
7144
+ *
7145
+ * @example
7146
+ * ```typescript
7147
+ * import { isNetworkError } from '@core/errors'
7148
+ *
7149
+ * try {
7150
+ * await kit.bridge(params)
7151
+ * } catch (error) {
7152
+ * if (isNetworkError(error)) {
7153
+ * console.log('Network issue:', error.message)
7154
+ * retryWithBackoff()
7155
+ * }
7156
+ * }
7157
+ * ```
7158
+ */
7159
+ declare function isNetworkError(error: unknown): error is KitError;
4571
7160
  /**
4572
7161
  * Safely extracts error message from any error type.
4573
7162
  *
@@ -4619,5 +7208,5 @@ declare function getErrorMessage(error: unknown): string;
4619
7208
  */
4620
7209
  declare function getErrorCode(error: unknown): number | null;
4621
7210
 
4622
- export { Blockchain, BridgeChain, BridgeKit, KitError, TransferSpeed, bridgeParamsWithChainIdentifierSchema, getErrorCode, getErrorMessage, isFatalError, isInputError, isKitError, isRetryableError, resolveChainIdentifier, setExternalPrefix };
4623
- export type { ActionHandler, AdapterContext, BridgeChainIdentifier, BridgeConfig, BridgeKitConfig, BridgeParams, BridgeResult, ChainDefinition, ChainIdentifier, CustomFeePolicy, ErrorDetails, EstimateResult, Recoverability };
7211
+ export { BalanceError, Blockchain, BridgeChain, BridgeKit, InputError, KitError, NetworkError, OnchainError, RpcError, TransferSpeed, bridgeParamsWithChainIdentifierSchema, getErrorCode, getErrorMessage, isBalanceError, isFatalError, isInputError, isKitError, isNetworkError, isOnchainError, isRetryableError, isRpcError, resolveChainIdentifier, setExternalPrefix };
7212
+ export type { ActionHandler, AdapterContext, BaseChainDefinition, BridgeChainIdentifier, BridgeConfig, BridgeKitConfig, BridgeParams, BridgeResult, CCTPConfig, CCTPContracts, CCTPMergedConfig, CCTPSplitConfig, CCTPV2SupportedChainType, ChainDefinition, ChainIdentifier, Currency, CustomFeePolicy, EVMChainDefinition, ErrorDetails, EstimateResult, EstimatedGas, GetSupportedChainsOptions, KitContractType, KitContracts, NonEVMChainDefinition, Recoverability, RetryContext, VersionConfig };