@wormhole-foundation/sdk-cosmwasm 1.3.0-beta.3 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/constants.d.ts +66 -7
- package/dist/cjs/constants.d.ts.map +1 -1
- package/dist/cjs/constants.js +3 -0
- package/dist/cjs/constants.js.map +1 -1
- package/dist/esm/constants.d.ts +66 -7
- package/dist/esm/constants.d.ts.map +1 -1
- package/dist/esm/constants.js +3 -0
- package/dist/esm/constants.js.map +1 -1
- package/package.json +2 -2
package/dist/cjs/constants.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export declare const IBC_PACKET_SEQ = "packet_sequence";
|
|
|
13
13
|
export declare const IBC_PACKET_DATA = "packet_data";
|
|
14
14
|
export declare const IBC_PACKET_CONN = "packet_connection";
|
|
15
15
|
export declare const IBC_TIMEOUT_MILLIS: number;
|
|
16
|
-
export declare const chainToAddressPrefix: (<const K1 extends "Cosmoshub" | "Evmos" | "Injective" | "Kujira" | "Osmosis" | "Sei" | "Terra" | "Terra2" | "Wormchain" | "Xpla" | "Dymension" | "Neutron" | "Stargaze" | "Celestia" | "Seda" | "Provenance">(args_0: K1) => {
|
|
16
|
+
export declare const chainToAddressPrefix: (<const K1 extends "Cosmoshub" | "Evmos" | "Injective" | "Kujira" | "Osmosis" | "Sei" | "Terra" | "Terra2" | "Wormchain" | "Xpla" | "Dymension" | "Neutron" | "Stargaze" | "Celestia" | "Seda" | "Provenance" | "Noble">(args_0: K1) => {
|
|
17
17
|
readonly Cosmoshub: "cosmos";
|
|
18
18
|
readonly Evmos: "evmos";
|
|
19
19
|
readonly Injective: "inj";
|
|
@@ -30,11 +30,12 @@ export declare const chainToAddressPrefix: (<const K1 extends "Cosmoshub" | "Evm
|
|
|
30
30
|
readonly Neutron: "neutron";
|
|
31
31
|
readonly Seda: "seda";
|
|
32
32
|
readonly Provenance: "pb";
|
|
33
|
+
readonly Noble: "noble";
|
|
33
34
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1]) & {
|
|
34
35
|
readonly has: (args_0: string) => boolean;
|
|
35
|
-
readonly get: (args_0: string) => "cosmos" | "evmos" | "inj" | "kuji" | "osmo" | "sei" | "terra" | "wormhole" | "xpla" | "celestia" | "stars" | "dym" | "neutron" | "seda" | "pb" | undefined;
|
|
36
|
+
readonly get: (args_0: string) => "cosmos" | "evmos" | "inj" | "kuji" | "osmo" | "sei" | "terra" | "wormhole" | "xpla" | "celestia" | "stars" | "dym" | "neutron" | "seda" | "pb" | "noble" | undefined;
|
|
36
37
|
};
|
|
37
|
-
export declare const addressPrefixToChain: (<const K1 extends "cosmos" | "evmos" | "inj" | "kuji" | "osmo" | "sei" | "terra" | "wormhole" | "xpla" | "celestia" | "stars" | "dym" | "neutron" | "seda" | "pb">(args_0: K1) => {
|
|
38
|
+
export declare const addressPrefixToChain: (<const K1 extends "cosmos" | "evmos" | "inj" | "kuji" | "osmo" | "sei" | "terra" | "wormhole" | "xpla" | "celestia" | "stars" | "dym" | "neutron" | "seda" | "pb" | "noble">(args_0: K1) => {
|
|
38
39
|
cosmos: ["Cosmoshub"];
|
|
39
40
|
evmos: ["Evmos"];
|
|
40
41
|
inj: ["Injective"];
|
|
@@ -50,9 +51,10 @@ export declare const addressPrefixToChain: (<const K1 extends "cosmos" | "evmos"
|
|
|
50
51
|
neutron: ["Neutron"];
|
|
51
52
|
seda: ["Seda"];
|
|
52
53
|
pb: ["Provenance"];
|
|
54
|
+
noble: ["Noble"];
|
|
53
55
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1]) & {
|
|
54
56
|
readonly has: (args_0: string) => boolean;
|
|
55
|
-
readonly get: (args_0: string) => ["Cosmoshub"] | ["Evmos"] | ["Injective"] | ["Kujira"] | ["Osmosis"] | ["Sei"] | ["Terra", "Terra2"] | ["Wormchain"] | ["Xpla"] | ["Celestia"] | ["Stargaze"] | ["Dymension"] | ["Neutron"] | ["Seda"] | ["Provenance"] | undefined;
|
|
57
|
+
readonly get: (args_0: string) => ["Cosmoshub"] | ["Evmos"] | ["Injective"] | ["Kujira"] | ["Osmosis"] | ["Sei"] | ["Terra", "Terra2"] | ["Wormchain"] | ["Xpla"] | ["Celestia"] | ["Stargaze"] | ["Dymension"] | ["Neutron"] | ["Seda"] | ["Provenance"] | ["Noble"] | undefined;
|
|
56
58
|
};
|
|
57
59
|
export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testnet" | "Devnet", const K2 extends keyof {
|
|
58
60
|
readonly Mainnet: {
|
|
@@ -71,6 +73,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
71
73
|
readonly Stargaze: "ustars";
|
|
72
74
|
readonly Neutron: "untrn";
|
|
73
75
|
readonly Provenance: "nhash";
|
|
76
|
+
readonly Noble: "uusdc";
|
|
74
77
|
};
|
|
75
78
|
readonly Testnet: {
|
|
76
79
|
readonly Cosmoshub: "uatom";
|
|
@@ -114,6 +117,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
114
117
|
readonly Stargaze: "ustars";
|
|
115
118
|
readonly Neutron: "untrn";
|
|
116
119
|
readonly Provenance: "nhash";
|
|
120
|
+
readonly Noble: "uusdc";
|
|
117
121
|
};
|
|
118
122
|
readonly Testnet: {
|
|
119
123
|
readonly Cosmoshub: "uatom";
|
|
@@ -157,6 +161,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
157
161
|
readonly Stargaze: "ustars";
|
|
158
162
|
readonly Neutron: "untrn";
|
|
159
163
|
readonly Provenance: "nhash";
|
|
164
|
+
readonly Noble: "uusdc";
|
|
160
165
|
};
|
|
161
166
|
readonly Testnet: {
|
|
162
167
|
readonly Cosmoshub: "uatom";
|
|
@@ -200,6 +205,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
200
205
|
readonly Stargaze: "ustars";
|
|
201
206
|
readonly Neutron: "untrn";
|
|
202
207
|
readonly Provenance: "nhash";
|
|
208
|
+
readonly Noble: "uusdc";
|
|
203
209
|
};
|
|
204
210
|
readonly Testnet: {
|
|
205
211
|
readonly Cosmoshub: "uatom";
|
|
@@ -232,7 +238,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
232
238
|
[key: symbol]: unknown;
|
|
233
239
|
} ? T_1[K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2] : never : never : never) & {
|
|
234
240
|
readonly has: (args_0: string, args_1: string) => boolean;
|
|
235
|
-
readonly get: (args_0: string, args_1: string) => "inj" | "kuji" | "uatom" | "aevmos" | "uosmo" | "usei" | "luna" | "uluna" | "uworm" | "uxpla" | "utia" | "adym" | "ustars" | "untrn" | "nhash" | "atevmos" | "aseda" | undefined;
|
|
241
|
+
readonly get: (args_0: string, args_1: string) => "inj" | "kuji" | "uatom" | "aevmos" | "uosmo" | "usei" | "luna" | "uluna" | "uworm" | "uxpla" | "utia" | "adym" | "ustars" | "untrn" | "nhash" | "uusdc" | "atevmos" | "aseda" | undefined;
|
|
236
242
|
} & {
|
|
237
243
|
readonly subMap: <const K extends "Mainnet" | "Testnet" | "Devnet">(key: K) => (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) extends infer T_2 ? T_2 extends (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) ? T_2 extends "Mainnet" | "Testnet" | "Devnet" ? {
|
|
238
244
|
readonly Mainnet: {
|
|
@@ -251,6 +257,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
251
257
|
readonly Stargaze: "ustars";
|
|
252
258
|
readonly Neutron: "untrn";
|
|
253
259
|
readonly Provenance: "nhash";
|
|
260
|
+
readonly Noble: "uusdc";
|
|
254
261
|
};
|
|
255
262
|
readonly Testnet: {
|
|
256
263
|
readonly Cosmoshub: "uatom";
|
|
@@ -298,6 +305,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
298
305
|
readonly Stargaze: "ustars";
|
|
299
306
|
readonly Neutron: "untrn";
|
|
300
307
|
readonly Provenance: "nhash";
|
|
308
|
+
readonly Noble: "uusdc";
|
|
301
309
|
};
|
|
302
310
|
readonly Testnet: {
|
|
303
311
|
readonly Cosmoshub: "uatom";
|
|
@@ -341,6 +349,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
341
349
|
readonly Stargaze: "ustars";
|
|
342
350
|
readonly Neutron: "untrn";
|
|
343
351
|
readonly Provenance: "nhash";
|
|
352
|
+
readonly Noble: "uusdc";
|
|
344
353
|
};
|
|
345
354
|
readonly Testnet: {
|
|
346
355
|
readonly Cosmoshub: "uatom";
|
|
@@ -384,6 +393,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
384
393
|
readonly Stargaze: "ustars";
|
|
385
394
|
readonly Neutron: "untrn";
|
|
386
395
|
readonly Provenance: "nhash";
|
|
396
|
+
readonly Noble: "uusdc";
|
|
387
397
|
};
|
|
388
398
|
readonly Testnet: {
|
|
389
399
|
readonly Cosmoshub: "uatom";
|
|
@@ -427,6 +437,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
427
437
|
readonly Stargaze: "ustars";
|
|
428
438
|
readonly Neutron: "untrn";
|
|
429
439
|
readonly Provenance: "nhash";
|
|
440
|
+
readonly Noble: "uusdc";
|
|
430
441
|
};
|
|
431
442
|
readonly Testnet: {
|
|
432
443
|
readonly Cosmoshub: "uatom";
|
|
@@ -475,6 +486,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
475
486
|
readonly Stargaze: "ustars";
|
|
476
487
|
readonly Neutron: "untrn";
|
|
477
488
|
readonly Provenance: "nhash";
|
|
489
|
+
readonly Noble: "uusdc";
|
|
478
490
|
};
|
|
479
491
|
readonly Testnet: {
|
|
480
492
|
readonly Cosmoshub: "uatom";
|
|
@@ -518,6 +530,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
518
530
|
readonly Stargaze: "ustars";
|
|
519
531
|
readonly Neutron: "untrn";
|
|
520
532
|
readonly Provenance: "nhash";
|
|
533
|
+
readonly Noble: "uusdc";
|
|
521
534
|
};
|
|
522
535
|
readonly Testnet: {
|
|
523
536
|
readonly Cosmoshub: "uatom";
|
|
@@ -561,6 +574,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
561
574
|
readonly Stargaze: "ustars";
|
|
562
575
|
readonly Neutron: "untrn";
|
|
563
576
|
readonly Provenance: "nhash";
|
|
577
|
+
readonly Noble: "uusdc";
|
|
564
578
|
};
|
|
565
579
|
readonly Testnet: {
|
|
566
580
|
readonly Cosmoshub: "uatom";
|
|
@@ -604,6 +618,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
604
618
|
readonly Stargaze: "ustars";
|
|
605
619
|
readonly Neutron: "untrn";
|
|
606
620
|
readonly Provenance: "nhash";
|
|
621
|
+
readonly Noble: "uusdc";
|
|
607
622
|
};
|
|
608
623
|
readonly Testnet: {
|
|
609
624
|
readonly Cosmoshub: "uatom";
|
|
@@ -648,6 +663,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
648
663
|
readonly Stargaze: "ustars";
|
|
649
664
|
readonly Neutron: "untrn";
|
|
650
665
|
readonly Provenance: "nhash";
|
|
666
|
+
readonly Noble: "uusdc";
|
|
651
667
|
};
|
|
652
668
|
readonly Testnet: {
|
|
653
669
|
readonly Cosmoshub: "uatom";
|
|
@@ -691,6 +707,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
691
707
|
readonly Stargaze: "ustars";
|
|
692
708
|
readonly Neutron: "untrn";
|
|
693
709
|
readonly Provenance: "nhash";
|
|
710
|
+
readonly Noble: "uusdc";
|
|
694
711
|
};
|
|
695
712
|
readonly Testnet: {
|
|
696
713
|
readonly Cosmoshub: "uatom";
|
|
@@ -734,6 +751,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
734
751
|
readonly Stargaze: "ustars";
|
|
735
752
|
readonly Neutron: "untrn";
|
|
736
753
|
readonly Provenance: "nhash";
|
|
754
|
+
readonly Noble: "uusdc";
|
|
737
755
|
};
|
|
738
756
|
readonly Testnet: {
|
|
739
757
|
readonly Cosmoshub: "uatom";
|
|
@@ -777,6 +795,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
777
795
|
readonly Stargaze: "ustars";
|
|
778
796
|
readonly Neutron: "untrn";
|
|
779
797
|
readonly Provenance: "nhash";
|
|
798
|
+
readonly Noble: "uusdc";
|
|
780
799
|
};
|
|
781
800
|
readonly Testnet: {
|
|
782
801
|
readonly Cosmoshub: "uatom";
|
|
@@ -820,6 +839,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
820
839
|
readonly Stargaze: "ustars";
|
|
821
840
|
readonly Neutron: "untrn";
|
|
822
841
|
readonly Provenance: "nhash";
|
|
842
|
+
readonly Noble: "uusdc";
|
|
823
843
|
};
|
|
824
844
|
readonly Testnet: {
|
|
825
845
|
readonly Cosmoshub: "uatom";
|
|
@@ -863,6 +883,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
863
883
|
readonly Stargaze: "ustars";
|
|
864
884
|
readonly Neutron: "untrn";
|
|
865
885
|
readonly Provenance: "nhash";
|
|
886
|
+
readonly Noble: "uusdc";
|
|
866
887
|
};
|
|
867
888
|
readonly Testnet: {
|
|
868
889
|
readonly Cosmoshub: "uatom";
|
|
@@ -909,6 +930,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
909
930
|
ustars: "Stargaze";
|
|
910
931
|
untrn: "Neutron";
|
|
911
932
|
nhash: "Provenance";
|
|
933
|
+
uusdc: "Noble";
|
|
912
934
|
};
|
|
913
935
|
Testnet: {
|
|
914
936
|
uatom: "Cosmoshub";
|
|
@@ -952,6 +974,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
952
974
|
ustars: "Stargaze";
|
|
953
975
|
untrn: "Neutron";
|
|
954
976
|
nhash: "Provenance";
|
|
977
|
+
uusdc: "Noble";
|
|
955
978
|
};
|
|
956
979
|
Testnet: {
|
|
957
980
|
uatom: "Cosmoshub";
|
|
@@ -995,6 +1018,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
995
1018
|
ustars: "Stargaze";
|
|
996
1019
|
untrn: "Neutron";
|
|
997
1020
|
nhash: "Provenance";
|
|
1021
|
+
uusdc: "Noble";
|
|
998
1022
|
};
|
|
999
1023
|
Testnet: {
|
|
1000
1024
|
uatom: "Cosmoshub";
|
|
@@ -1038,6 +1062,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1038
1062
|
ustars: "Stargaze";
|
|
1039
1063
|
untrn: "Neutron";
|
|
1040
1064
|
nhash: "Provenance";
|
|
1065
|
+
uusdc: "Noble";
|
|
1041
1066
|
};
|
|
1042
1067
|
Testnet: {
|
|
1043
1068
|
uatom: "Cosmoshub";
|
|
@@ -1070,7 +1095,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1070
1095
|
[key: symbol]: unknown;
|
|
1071
1096
|
} ? T_1[K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2] : never : never : never) & {
|
|
1072
1097
|
readonly has: (args_0: string, args_1: string) => boolean;
|
|
1073
|
-
readonly get: (args_0: string, args_1: string) => "Cosmoshub" | "Evmos" | "Injective" | "Kujira" | "Osmosis" | "Sei" | "Terra" | "Terra2" | "Wormchain" | "Xpla" | "Dymension" | "Neutron" | "Stargaze" | "Celestia" | "Seda" | "Provenance" | undefined;
|
|
1098
|
+
readonly get: (args_0: string, args_1: string) => "Cosmoshub" | "Evmos" | "Injective" | "Kujira" | "Osmosis" | "Sei" | "Terra" | "Terra2" | "Wormchain" | "Xpla" | "Dymension" | "Neutron" | "Stargaze" | "Celestia" | "Seda" | "Provenance" | "Noble" | undefined;
|
|
1074
1099
|
} & {
|
|
1075
1100
|
readonly subMap: <const K extends "Mainnet" | "Testnet" | "Devnet">(key: K) => (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) extends infer T_2 ? T_2 extends (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) ? T_2 extends "Mainnet" | "Testnet" | "Devnet" ? {
|
|
1076
1101
|
Mainnet: {
|
|
@@ -1089,6 +1114,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1089
1114
|
ustars: "Stargaze";
|
|
1090
1115
|
untrn: "Neutron";
|
|
1091
1116
|
nhash: "Provenance";
|
|
1117
|
+
uusdc: "Noble";
|
|
1092
1118
|
};
|
|
1093
1119
|
Testnet: {
|
|
1094
1120
|
uatom: "Cosmoshub";
|
|
@@ -1136,6 +1162,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1136
1162
|
ustars: "Stargaze";
|
|
1137
1163
|
untrn: "Neutron";
|
|
1138
1164
|
nhash: "Provenance";
|
|
1165
|
+
uusdc: "Noble";
|
|
1139
1166
|
};
|
|
1140
1167
|
Testnet: {
|
|
1141
1168
|
uatom: "Cosmoshub";
|
|
@@ -1179,6 +1206,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1179
1206
|
ustars: "Stargaze";
|
|
1180
1207
|
untrn: "Neutron";
|
|
1181
1208
|
nhash: "Provenance";
|
|
1209
|
+
uusdc: "Noble";
|
|
1182
1210
|
};
|
|
1183
1211
|
Testnet: {
|
|
1184
1212
|
uatom: "Cosmoshub";
|
|
@@ -1222,6 +1250,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1222
1250
|
ustars: "Stargaze";
|
|
1223
1251
|
untrn: "Neutron";
|
|
1224
1252
|
nhash: "Provenance";
|
|
1253
|
+
uusdc: "Noble";
|
|
1225
1254
|
};
|
|
1226
1255
|
Testnet: {
|
|
1227
1256
|
uatom: "Cosmoshub";
|
|
@@ -1265,6 +1294,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1265
1294
|
ustars: "Stargaze";
|
|
1266
1295
|
untrn: "Neutron";
|
|
1267
1296
|
nhash: "Provenance";
|
|
1297
|
+
uusdc: "Noble";
|
|
1268
1298
|
};
|
|
1269
1299
|
Testnet: {
|
|
1270
1300
|
uatom: "Cosmoshub";
|
|
@@ -1313,6 +1343,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1313
1343
|
ustars: "Stargaze";
|
|
1314
1344
|
untrn: "Neutron";
|
|
1315
1345
|
nhash: "Provenance";
|
|
1346
|
+
uusdc: "Noble";
|
|
1316
1347
|
};
|
|
1317
1348
|
Testnet: {
|
|
1318
1349
|
uatom: "Cosmoshub";
|
|
@@ -1356,6 +1387,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1356
1387
|
ustars: "Stargaze";
|
|
1357
1388
|
untrn: "Neutron";
|
|
1358
1389
|
nhash: "Provenance";
|
|
1390
|
+
uusdc: "Noble";
|
|
1359
1391
|
};
|
|
1360
1392
|
Testnet: {
|
|
1361
1393
|
uatom: "Cosmoshub";
|
|
@@ -1399,6 +1431,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1399
1431
|
ustars: "Stargaze";
|
|
1400
1432
|
untrn: "Neutron";
|
|
1401
1433
|
nhash: "Provenance";
|
|
1434
|
+
uusdc: "Noble";
|
|
1402
1435
|
};
|
|
1403
1436
|
Testnet: {
|
|
1404
1437
|
uatom: "Cosmoshub";
|
|
@@ -1442,6 +1475,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1442
1475
|
ustars: "Stargaze";
|
|
1443
1476
|
untrn: "Neutron";
|
|
1444
1477
|
nhash: "Provenance";
|
|
1478
|
+
uusdc: "Noble";
|
|
1445
1479
|
};
|
|
1446
1480
|
Testnet: {
|
|
1447
1481
|
uatom: "Cosmoshub";
|
|
@@ -1486,6 +1520,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1486
1520
|
ustars: "Stargaze";
|
|
1487
1521
|
untrn: "Neutron";
|
|
1488
1522
|
nhash: "Provenance";
|
|
1523
|
+
uusdc: "Noble";
|
|
1489
1524
|
};
|
|
1490
1525
|
Testnet: {
|
|
1491
1526
|
uatom: "Cosmoshub";
|
|
@@ -1529,6 +1564,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1529
1564
|
ustars: "Stargaze";
|
|
1530
1565
|
untrn: "Neutron";
|
|
1531
1566
|
nhash: "Provenance";
|
|
1567
|
+
uusdc: "Noble";
|
|
1532
1568
|
};
|
|
1533
1569
|
Testnet: {
|
|
1534
1570
|
uatom: "Cosmoshub";
|
|
@@ -1572,6 +1608,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1572
1608
|
ustars: "Stargaze";
|
|
1573
1609
|
untrn: "Neutron";
|
|
1574
1610
|
nhash: "Provenance";
|
|
1611
|
+
uusdc: "Noble";
|
|
1575
1612
|
};
|
|
1576
1613
|
Testnet: {
|
|
1577
1614
|
uatom: "Cosmoshub";
|
|
@@ -1615,6 +1652,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1615
1652
|
ustars: "Stargaze";
|
|
1616
1653
|
untrn: "Neutron";
|
|
1617
1654
|
nhash: "Provenance";
|
|
1655
|
+
uusdc: "Noble";
|
|
1618
1656
|
};
|
|
1619
1657
|
Testnet: {
|
|
1620
1658
|
uatom: "Cosmoshub";
|
|
@@ -1658,6 +1696,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1658
1696
|
ustars: "Stargaze";
|
|
1659
1697
|
untrn: "Neutron";
|
|
1660
1698
|
nhash: "Provenance";
|
|
1699
|
+
uusdc: "Noble";
|
|
1661
1700
|
};
|
|
1662
1701
|
Testnet: {
|
|
1663
1702
|
uatom: "Cosmoshub";
|
|
@@ -1701,6 +1740,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1701
1740
|
ustars: "Stargaze";
|
|
1702
1741
|
untrn: "Neutron";
|
|
1703
1742
|
nhash: "Provenance";
|
|
1743
|
+
uusdc: "Noble";
|
|
1704
1744
|
};
|
|
1705
1745
|
Testnet: {
|
|
1706
1746
|
uatom: "Cosmoshub";
|
|
@@ -3473,6 +3513,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3473
3513
|
readonly Evmos: "25000000000";
|
|
3474
3514
|
readonly Dymension: "5000000000";
|
|
3475
3515
|
readonly Provenance: "2100";
|
|
3516
|
+
readonly Noble: "0.1";
|
|
3476
3517
|
};
|
|
3477
3518
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1] extends infer T ? T extends keyof {
|
|
3478
3519
|
readonly Mainnet: {
|
|
@@ -3490,6 +3531,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3490
3531
|
readonly Evmos: "25000000000";
|
|
3491
3532
|
readonly Dymension: "5000000000";
|
|
3492
3533
|
readonly Provenance: "2100";
|
|
3534
|
+
readonly Noble: "0.1";
|
|
3493
3535
|
};
|
|
3494
3536
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1] ? T extends `bigint(${infer V extends bigint})` ? V : T extends `boolean(${infer V_1 extends boolean})` ? V_1 : T : never : never>(args_0: K1, args_1: K2) => {
|
|
3495
3537
|
readonly Mainnet: {
|
|
@@ -3507,6 +3549,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3507
3549
|
readonly Evmos: "25000000000";
|
|
3508
3550
|
readonly Dymension: "5000000000";
|
|
3509
3551
|
readonly Provenance: "2100";
|
|
3552
|
+
readonly Noble: "0.1";
|
|
3510
3553
|
};
|
|
3511
3554
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1] extends infer T_1 ? T_1 extends {
|
|
3512
3555
|
readonly Mainnet: {
|
|
@@ -3524,6 +3567,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3524
3567
|
readonly Evmos: "25000000000";
|
|
3525
3568
|
readonly Dymension: "5000000000";
|
|
3526
3569
|
readonly Provenance: "2100";
|
|
3570
|
+
readonly Noble: "0.1";
|
|
3527
3571
|
};
|
|
3528
3572
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1] ? T_1 extends {
|
|
3529
3573
|
[key: string]: unknown;
|
|
@@ -3531,7 +3575,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3531
3575
|
[key: symbol]: unknown;
|
|
3532
3576
|
} ? T_1[K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2] : never : never : never) & {
|
|
3533
3577
|
readonly has: (args_0: string, args_1: string) => boolean;
|
|
3534
|
-
readonly get: (args_0: string, args_1: string) => "28.325" | "0.015" | "0.025" | "0.02" | "0.0051" | "0.075" | "1.1" | "700000000" | "1147500000000" | "25000000000" | "5000000000" | "2100" | undefined;
|
|
3578
|
+
readonly get: (args_0: string, args_1: string) => "28.325" | "0.015" | "0.025" | "0.02" | "0.0051" | "0.075" | "1.1" | "700000000" | "1147500000000" | "25000000000" | "5000000000" | "2100" | "0.1" | undefined;
|
|
3535
3579
|
} & {
|
|
3536
3580
|
readonly subMap: <const K extends "Mainnet">(key: K) => (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) extends infer T_2 ? T_2 extends (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) ? T_2 extends "Mainnet" ? {
|
|
3537
3581
|
readonly Mainnet: {
|
|
@@ -3549,6 +3593,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3549
3593
|
readonly Evmos: "25000000000";
|
|
3550
3594
|
readonly Dymension: "5000000000";
|
|
3551
3595
|
readonly Provenance: "2100";
|
|
3596
|
+
readonly Noble: "0.1";
|
|
3552
3597
|
};
|
|
3553
3598
|
}[T_2] extends {
|
|
3554
3599
|
[key: string]: unknown;
|
|
@@ -3570,6 +3615,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3570
3615
|
readonly Evmos: "25000000000";
|
|
3571
3616
|
readonly Dymension: "5000000000";
|
|
3572
3617
|
readonly Provenance: "2100";
|
|
3618
|
+
readonly Noble: "0.1";
|
|
3573
3619
|
};
|
|
3574
3620
|
}[T_2] extends infer T_3 ? T_3 extends keyof {
|
|
3575
3621
|
readonly Mainnet: {
|
|
@@ -3587,6 +3633,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3587
3633
|
readonly Evmos: "25000000000";
|
|
3588
3634
|
readonly Dymension: "5000000000";
|
|
3589
3635
|
readonly Provenance: "2100";
|
|
3636
|
+
readonly Noble: "0.1";
|
|
3590
3637
|
};
|
|
3591
3638
|
}[T_2] ? T_3 extends `bigint(${infer V extends bigint})` ? V : T_3 extends `boolean(${infer V_1 extends boolean})` ? V_1 : T_3 : never : never>(args_0: K1_1) => {
|
|
3592
3639
|
readonly Mainnet: {
|
|
@@ -3604,6 +3651,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3604
3651
|
readonly Evmos: "25000000000";
|
|
3605
3652
|
readonly Dymension: "5000000000";
|
|
3606
3653
|
readonly Provenance: "2100";
|
|
3654
|
+
readonly Noble: "0.1";
|
|
3607
3655
|
};
|
|
3608
3656
|
}[T_2] extends infer T_4 ? T_4 extends {
|
|
3609
3657
|
readonly Mainnet: {
|
|
@@ -3621,6 +3669,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3621
3669
|
readonly Evmos: "25000000000";
|
|
3622
3670
|
readonly Dymension: "5000000000";
|
|
3623
3671
|
readonly Provenance: "2100";
|
|
3672
|
+
readonly Noble: "0.1";
|
|
3624
3673
|
};
|
|
3625
3674
|
}[T_2] ? T_4 extends {
|
|
3626
3675
|
[key: string]: unknown;
|
|
@@ -3643,6 +3692,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3643
3692
|
readonly Evmos: "25000000000";
|
|
3644
3693
|
readonly Dymension: "5000000000";
|
|
3645
3694
|
readonly Provenance: "2100";
|
|
3695
|
+
readonly Noble: "0.1";
|
|
3646
3696
|
};
|
|
3647
3697
|
}[T_2] extends infer T_5 ? T_5 extends {
|
|
3648
3698
|
readonly Mainnet: {
|
|
@@ -3660,6 +3710,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3660
3710
|
readonly Evmos: "25000000000";
|
|
3661
3711
|
readonly Dymension: "5000000000";
|
|
3662
3712
|
readonly Provenance: "2100";
|
|
3713
|
+
readonly Noble: "0.1";
|
|
3663
3714
|
};
|
|
3664
3715
|
}[T_2] ? T_5 extends Object ? keyof T_5 : never : never : never) extends infer T_6 ? T_6 extends ({
|
|
3665
3716
|
readonly Mainnet: {
|
|
@@ -3677,6 +3728,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3677
3728
|
readonly Evmos: "25000000000";
|
|
3678
3729
|
readonly Dymension: "5000000000";
|
|
3679
3730
|
readonly Provenance: "2100";
|
|
3731
|
+
readonly Noble: "0.1";
|
|
3680
3732
|
};
|
|
3681
3733
|
}[T_2] extends infer T_5 ? T_5 extends {
|
|
3682
3734
|
readonly Mainnet: {
|
|
@@ -3694,6 +3746,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3694
3746
|
readonly Evmos: "25000000000";
|
|
3695
3747
|
readonly Dymension: "5000000000";
|
|
3696
3748
|
readonly Provenance: "2100";
|
|
3749
|
+
readonly Noble: "0.1";
|
|
3697
3750
|
};
|
|
3698
3751
|
}[T_2] ? T_5 extends Object ? keyof T_5 : never : never : never) ? T_6 extends `bigint(${infer V extends bigint})` ? V : T_6 extends `boolean(${infer V_1 extends boolean})` ? V_1 : T_6 : never : never>) => boolean;
|
|
3699
3752
|
readonly get: (args_0: import("@wormhole-foundation/sdk-connect").Widen<({
|
|
@@ -3712,6 +3765,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3712
3765
|
readonly Evmos: "25000000000";
|
|
3713
3766
|
readonly Dymension: "5000000000";
|
|
3714
3767
|
readonly Provenance: "2100";
|
|
3768
|
+
readonly Noble: "0.1";
|
|
3715
3769
|
};
|
|
3716
3770
|
}[T_2] extends infer T_5 ? T_5 extends {
|
|
3717
3771
|
readonly Mainnet: {
|
|
@@ -3729,6 +3783,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3729
3783
|
readonly Evmos: "25000000000";
|
|
3730
3784
|
readonly Dymension: "5000000000";
|
|
3731
3785
|
readonly Provenance: "2100";
|
|
3786
|
+
readonly Noble: "0.1";
|
|
3732
3787
|
};
|
|
3733
3788
|
}[T_2] ? T_5 extends Object ? keyof T_5 : never : never : never) extends infer T_6 ? T_6 extends ({
|
|
3734
3789
|
readonly Mainnet: {
|
|
@@ -3746,6 +3801,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3746
3801
|
readonly Evmos: "25000000000";
|
|
3747
3802
|
readonly Dymension: "5000000000";
|
|
3748
3803
|
readonly Provenance: "2100";
|
|
3804
|
+
readonly Noble: "0.1";
|
|
3749
3805
|
};
|
|
3750
3806
|
}[T_2] extends infer T_5 ? T_5 extends {
|
|
3751
3807
|
readonly Mainnet: {
|
|
@@ -3763,6 +3819,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3763
3819
|
readonly Evmos: "25000000000";
|
|
3764
3820
|
readonly Dymension: "5000000000";
|
|
3765
3821
|
readonly Provenance: "2100";
|
|
3822
|
+
readonly Noble: "0.1";
|
|
3766
3823
|
};
|
|
3767
3824
|
}[T_2] ? T_5 extends Object ? keyof T_5 : never : never : never) ? T_6 extends `bigint(${infer V extends bigint})` ? V : T_6 extends `boolean(${infer V_1 extends boolean})` ? V_1 : T_6 : never : never>) => ({
|
|
3768
3825
|
readonly Mainnet: {
|
|
@@ -3780,6 +3837,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3780
3837
|
readonly Evmos: "25000000000";
|
|
3781
3838
|
readonly Dymension: "5000000000";
|
|
3782
3839
|
readonly Provenance: "2100";
|
|
3840
|
+
readonly Noble: "0.1";
|
|
3783
3841
|
};
|
|
3784
3842
|
}[T_2] extends infer T_7 ? T_7 extends {
|
|
3785
3843
|
readonly Mainnet: {
|
|
@@ -3797,6 +3855,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3797
3855
|
readonly Evmos: "25000000000";
|
|
3798
3856
|
readonly Dymension: "5000000000";
|
|
3799
3857
|
readonly Provenance: "2100";
|
|
3858
|
+
readonly Noble: "0.1";
|
|
3800
3859
|
};
|
|
3801
3860
|
}[T_2] ? T_7 extends Object ? T_7[keyof T_7] : never : never : never) | undefined;
|
|
3802
3861
|
} : never : never : never : never;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEjD,eAAO,MAAM,WAAW,UAAY,CAAC;AAErC,eAAO,MAAM,6BAA6B,yCAAyC,CAAC;AAEpF,eAAO,MAAM,YAAY,8CAA8C,CAAC;AAExE,eAAO,MAAM,iBAAiB,aAAa,CAAC;AAG5C,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAC7C,eAAO,MAAM,kBAAkB,gBAAgB,CAAC;AAGhD,eAAO,MAAM,cAAc,uBAAuB,CAAC;AACnD,eAAO,MAAM,cAAc,uBAAuB,CAAC;AACnD,eAAO,MAAM,mBAAmB,oBAAoB,CAAC;AACrD,eAAO,MAAM,mBAAmB,oBAAoB,CAAC;AACrD,eAAO,MAAM,cAAc,oBAAoB,CAAC;AAChD,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAC7C,eAAO,MAAM,eAAe,sBAAsB,CAAC;AAEnD,eAAO,MAAM,kBAAkB,QAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEjD,eAAO,MAAM,WAAW,UAAY,CAAC;AAErC,eAAO,MAAM,6BAA6B,yCAAyC,CAAC;AAEpF,eAAO,MAAM,YAAY,8CAA8C,CAAC;AAExE,eAAO,MAAM,iBAAiB,aAAa,CAAC;AAG5C,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAC7C,eAAO,MAAM,kBAAkB,gBAAgB,CAAC;AAGhD,eAAO,MAAM,cAAc,uBAAuB,CAAC;AACnD,eAAO,MAAM,cAAc,uBAAuB,CAAC;AACnD,eAAO,MAAM,mBAAmB,oBAAoB,CAAC;AACrD,eAAO,MAAM,mBAAmB,oBAAoB,CAAC;AACrD,eAAO,MAAM,cAAc,oBAAoB,CAAC;AAChD,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAC7C,eAAO,MAAM,eAAe,sBAAsB,CAAC;AAEnD,eAAO,MAAM,kBAAkB,QAAiB,CAAC;AAsBjD,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;CAAkC,CAAC;AACpE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;CAA4C,CAAC;AAyD9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAC;AACjE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA+C,CAAC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"}
|
package/dist/cjs/constants.js
CHANGED
|
@@ -35,6 +35,7 @@ const cosmwasmAddressPrefix = [
|
|
|
35
35
|
["Neutron", "neutron"],
|
|
36
36
|
["Seda", "seda"],
|
|
37
37
|
["Provenance", "pb"],
|
|
38
|
+
["Noble", "noble"],
|
|
38
39
|
];
|
|
39
40
|
exports.chainToAddressPrefix = (0, sdk_connect_1.constMap)(cosmwasmAddressPrefix);
|
|
40
41
|
exports.addressPrefixToChain = (0, sdk_connect_1.constMap)(cosmwasmAddressPrefix, [1, [0]]);
|
|
@@ -57,6 +58,7 @@ const cosmwasmNativeDenom = [
|
|
|
57
58
|
["Stargaze", "ustars"],
|
|
58
59
|
["Neutron", "untrn"],
|
|
59
60
|
["Provenance", "nhash"],
|
|
61
|
+
["Noble", "uusdc"],
|
|
60
62
|
],
|
|
61
63
|
],
|
|
62
64
|
[
|
|
@@ -194,6 +196,7 @@ const avgPrices = [
|
|
|
194
196
|
["Evmos", "25000000000"],
|
|
195
197
|
["Dymension", "5000000000"],
|
|
196
198
|
["Provenance", "2100"],
|
|
199
|
+
["Noble", "0.1"],
|
|
197
200
|
],
|
|
198
201
|
],
|
|
199
202
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":";;;AACA,kEAA4D;AAG/C,QAAA,WAAW,GAAG,SAAS,CAAC;AAExB,QAAA,6BAA6B,GAAG,sCAAsC,CAAC;AAEvE,QAAA,YAAY,GAAG,2CAA2C,CAAC;AAE3D,QAAA,iBAAiB,GAAG,UAAU,CAAC;AAE5C,yBAAyB;AACZ,QAAA,eAAe,GAAG,aAAa,CAAC;AAChC,QAAA,kBAAkB,GAAG,aAAa,CAAC;AAEhD,kCAAkC;AACrB,QAAA,cAAc,GAAG,oBAAoB,CAAC;AACtC,QAAA,cAAc,GAAG,oBAAoB,CAAC;AACtC,QAAA,mBAAmB,GAAG,iBAAiB,CAAC;AACxC,QAAA,mBAAmB,GAAG,iBAAiB,CAAC;AACxC,QAAA,cAAc,GAAG,iBAAiB,CAAC;AACnC,QAAA,eAAe,GAAG,aAAa,CAAC;AAChC,QAAA,eAAe,GAAG,mBAAmB,CAAC;AAEtC,QAAA,kBAAkB,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,aAAa;AAE/D,MAAM,qBAAqB,GAAG;IAC5B,CAAC,WAAW,EAAE,QAAQ,CAAC;IACvB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,WAAW,EAAE,KAAK,CAAC;IACpB,CAAC,QAAQ,EAAE,MAAM,CAAC;IAClB,CAAC,SAAS,EAAE,MAAM,CAAC;IACnB,CAAC,KAAK,EAAE,KAAK,CAAC;IACd,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,QAAQ,EAAE,OAAO,CAAC;IACnB,CAAC,WAAW,EAAE,UAAU,CAAC;IACzB,CAAC,MAAM,EAAE,MAAM,CAAC;IAChB,CAAC,UAAU,EAAE,UAAU,CAAC;IACxB,CAAC,UAAU,EAAE,OAAO,CAAC;IACrB,CAAC,WAAW,EAAE,KAAK,CAAC;IACpB,CAAC,SAAS,EAAE,SAAS,CAAC;IACtB,CAAC,MAAM,EAAE,MAAM,CAAC;IAChB,CAAC,YAAY,EAAE,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/constants.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export declare const IBC_PACKET_SEQ = "packet_sequence";
|
|
|
13
13
|
export declare const IBC_PACKET_DATA = "packet_data";
|
|
14
14
|
export declare const IBC_PACKET_CONN = "packet_connection";
|
|
15
15
|
export declare const IBC_TIMEOUT_MILLIS: number;
|
|
16
|
-
export declare const chainToAddressPrefix: (<const K1 extends "Cosmoshub" | "Evmos" | "Injective" | "Kujira" | "Osmosis" | "Sei" | "Terra" | "Terra2" | "Wormchain" | "Xpla" | "Dymension" | "Neutron" | "Stargaze" | "Celestia" | "Seda" | "Provenance">(args_0: K1) => {
|
|
16
|
+
export declare const chainToAddressPrefix: (<const K1 extends "Cosmoshub" | "Evmos" | "Injective" | "Kujira" | "Osmosis" | "Sei" | "Terra" | "Terra2" | "Wormchain" | "Xpla" | "Dymension" | "Neutron" | "Stargaze" | "Celestia" | "Seda" | "Provenance" | "Noble">(args_0: K1) => {
|
|
17
17
|
readonly Cosmoshub: "cosmos";
|
|
18
18
|
readonly Evmos: "evmos";
|
|
19
19
|
readonly Injective: "inj";
|
|
@@ -30,11 +30,12 @@ export declare const chainToAddressPrefix: (<const K1 extends "Cosmoshub" | "Evm
|
|
|
30
30
|
readonly Neutron: "neutron";
|
|
31
31
|
readonly Seda: "seda";
|
|
32
32
|
readonly Provenance: "pb";
|
|
33
|
+
readonly Noble: "noble";
|
|
33
34
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1]) & {
|
|
34
35
|
readonly has: (args_0: string) => boolean;
|
|
35
|
-
readonly get: (args_0: string) => "cosmos" | "evmos" | "inj" | "kuji" | "osmo" | "sei" | "terra" | "wormhole" | "xpla" | "celestia" | "stars" | "dym" | "neutron" | "seda" | "pb" | undefined;
|
|
36
|
+
readonly get: (args_0: string) => "cosmos" | "evmos" | "inj" | "kuji" | "osmo" | "sei" | "terra" | "wormhole" | "xpla" | "celestia" | "stars" | "dym" | "neutron" | "seda" | "pb" | "noble" | undefined;
|
|
36
37
|
};
|
|
37
|
-
export declare const addressPrefixToChain: (<const K1 extends "cosmos" | "evmos" | "inj" | "kuji" | "osmo" | "sei" | "terra" | "wormhole" | "xpla" | "celestia" | "stars" | "dym" | "neutron" | "seda" | "pb">(args_0: K1) => {
|
|
38
|
+
export declare const addressPrefixToChain: (<const K1 extends "cosmos" | "evmos" | "inj" | "kuji" | "osmo" | "sei" | "terra" | "wormhole" | "xpla" | "celestia" | "stars" | "dym" | "neutron" | "seda" | "pb" | "noble">(args_0: K1) => {
|
|
38
39
|
cosmos: ["Cosmoshub"];
|
|
39
40
|
evmos: ["Evmos"];
|
|
40
41
|
inj: ["Injective"];
|
|
@@ -50,9 +51,10 @@ export declare const addressPrefixToChain: (<const K1 extends "cosmos" | "evmos"
|
|
|
50
51
|
neutron: ["Neutron"];
|
|
51
52
|
seda: ["Seda"];
|
|
52
53
|
pb: ["Provenance"];
|
|
54
|
+
noble: ["Noble"];
|
|
53
55
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1]) & {
|
|
54
56
|
readonly has: (args_0: string) => boolean;
|
|
55
|
-
readonly get: (args_0: string) => ["Cosmoshub"] | ["Evmos"] | ["Injective"] | ["Kujira"] | ["Osmosis"] | ["Sei"] | ["Terra", "Terra2"] | ["Wormchain"] | ["Xpla"] | ["Celestia"] | ["Stargaze"] | ["Dymension"] | ["Neutron"] | ["Seda"] | ["Provenance"] | undefined;
|
|
57
|
+
readonly get: (args_0: string) => ["Cosmoshub"] | ["Evmos"] | ["Injective"] | ["Kujira"] | ["Osmosis"] | ["Sei"] | ["Terra", "Terra2"] | ["Wormchain"] | ["Xpla"] | ["Celestia"] | ["Stargaze"] | ["Dymension"] | ["Neutron"] | ["Seda"] | ["Provenance"] | ["Noble"] | undefined;
|
|
56
58
|
};
|
|
57
59
|
export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testnet" | "Devnet", const K2 extends keyof {
|
|
58
60
|
readonly Mainnet: {
|
|
@@ -71,6 +73,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
71
73
|
readonly Stargaze: "ustars";
|
|
72
74
|
readonly Neutron: "untrn";
|
|
73
75
|
readonly Provenance: "nhash";
|
|
76
|
+
readonly Noble: "uusdc";
|
|
74
77
|
};
|
|
75
78
|
readonly Testnet: {
|
|
76
79
|
readonly Cosmoshub: "uatom";
|
|
@@ -114,6 +117,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
114
117
|
readonly Stargaze: "ustars";
|
|
115
118
|
readonly Neutron: "untrn";
|
|
116
119
|
readonly Provenance: "nhash";
|
|
120
|
+
readonly Noble: "uusdc";
|
|
117
121
|
};
|
|
118
122
|
readonly Testnet: {
|
|
119
123
|
readonly Cosmoshub: "uatom";
|
|
@@ -157,6 +161,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
157
161
|
readonly Stargaze: "ustars";
|
|
158
162
|
readonly Neutron: "untrn";
|
|
159
163
|
readonly Provenance: "nhash";
|
|
164
|
+
readonly Noble: "uusdc";
|
|
160
165
|
};
|
|
161
166
|
readonly Testnet: {
|
|
162
167
|
readonly Cosmoshub: "uatom";
|
|
@@ -200,6 +205,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
200
205
|
readonly Stargaze: "ustars";
|
|
201
206
|
readonly Neutron: "untrn";
|
|
202
207
|
readonly Provenance: "nhash";
|
|
208
|
+
readonly Noble: "uusdc";
|
|
203
209
|
};
|
|
204
210
|
readonly Testnet: {
|
|
205
211
|
readonly Cosmoshub: "uatom";
|
|
@@ -232,7 +238,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
232
238
|
[key: symbol]: unknown;
|
|
233
239
|
} ? T_1[K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2] : never : never : never) & {
|
|
234
240
|
readonly has: (args_0: string, args_1: string) => boolean;
|
|
235
|
-
readonly get: (args_0: string, args_1: string) => "inj" | "kuji" | "uatom" | "aevmos" | "uosmo" | "usei" | "luna" | "uluna" | "uworm" | "uxpla" | "utia" | "adym" | "ustars" | "untrn" | "nhash" | "atevmos" | "aseda" | undefined;
|
|
241
|
+
readonly get: (args_0: string, args_1: string) => "inj" | "kuji" | "uatom" | "aevmos" | "uosmo" | "usei" | "luna" | "uluna" | "uworm" | "uxpla" | "utia" | "adym" | "ustars" | "untrn" | "nhash" | "uusdc" | "atevmos" | "aseda" | undefined;
|
|
236
242
|
} & {
|
|
237
243
|
readonly subMap: <const K extends "Mainnet" | "Testnet" | "Devnet">(key: K) => (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) extends infer T_2 ? T_2 extends (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) ? T_2 extends "Mainnet" | "Testnet" | "Devnet" ? {
|
|
238
244
|
readonly Mainnet: {
|
|
@@ -251,6 +257,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
251
257
|
readonly Stargaze: "ustars";
|
|
252
258
|
readonly Neutron: "untrn";
|
|
253
259
|
readonly Provenance: "nhash";
|
|
260
|
+
readonly Noble: "uusdc";
|
|
254
261
|
};
|
|
255
262
|
readonly Testnet: {
|
|
256
263
|
readonly Cosmoshub: "uatom";
|
|
@@ -298,6 +305,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
298
305
|
readonly Stargaze: "ustars";
|
|
299
306
|
readonly Neutron: "untrn";
|
|
300
307
|
readonly Provenance: "nhash";
|
|
308
|
+
readonly Noble: "uusdc";
|
|
301
309
|
};
|
|
302
310
|
readonly Testnet: {
|
|
303
311
|
readonly Cosmoshub: "uatom";
|
|
@@ -341,6 +349,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
341
349
|
readonly Stargaze: "ustars";
|
|
342
350
|
readonly Neutron: "untrn";
|
|
343
351
|
readonly Provenance: "nhash";
|
|
352
|
+
readonly Noble: "uusdc";
|
|
344
353
|
};
|
|
345
354
|
readonly Testnet: {
|
|
346
355
|
readonly Cosmoshub: "uatom";
|
|
@@ -384,6 +393,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
384
393
|
readonly Stargaze: "ustars";
|
|
385
394
|
readonly Neutron: "untrn";
|
|
386
395
|
readonly Provenance: "nhash";
|
|
396
|
+
readonly Noble: "uusdc";
|
|
387
397
|
};
|
|
388
398
|
readonly Testnet: {
|
|
389
399
|
readonly Cosmoshub: "uatom";
|
|
@@ -427,6 +437,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
427
437
|
readonly Stargaze: "ustars";
|
|
428
438
|
readonly Neutron: "untrn";
|
|
429
439
|
readonly Provenance: "nhash";
|
|
440
|
+
readonly Noble: "uusdc";
|
|
430
441
|
};
|
|
431
442
|
readonly Testnet: {
|
|
432
443
|
readonly Cosmoshub: "uatom";
|
|
@@ -475,6 +486,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
475
486
|
readonly Stargaze: "ustars";
|
|
476
487
|
readonly Neutron: "untrn";
|
|
477
488
|
readonly Provenance: "nhash";
|
|
489
|
+
readonly Noble: "uusdc";
|
|
478
490
|
};
|
|
479
491
|
readonly Testnet: {
|
|
480
492
|
readonly Cosmoshub: "uatom";
|
|
@@ -518,6 +530,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
518
530
|
readonly Stargaze: "ustars";
|
|
519
531
|
readonly Neutron: "untrn";
|
|
520
532
|
readonly Provenance: "nhash";
|
|
533
|
+
readonly Noble: "uusdc";
|
|
521
534
|
};
|
|
522
535
|
readonly Testnet: {
|
|
523
536
|
readonly Cosmoshub: "uatom";
|
|
@@ -561,6 +574,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
561
574
|
readonly Stargaze: "ustars";
|
|
562
575
|
readonly Neutron: "untrn";
|
|
563
576
|
readonly Provenance: "nhash";
|
|
577
|
+
readonly Noble: "uusdc";
|
|
564
578
|
};
|
|
565
579
|
readonly Testnet: {
|
|
566
580
|
readonly Cosmoshub: "uatom";
|
|
@@ -604,6 +618,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
604
618
|
readonly Stargaze: "ustars";
|
|
605
619
|
readonly Neutron: "untrn";
|
|
606
620
|
readonly Provenance: "nhash";
|
|
621
|
+
readonly Noble: "uusdc";
|
|
607
622
|
};
|
|
608
623
|
readonly Testnet: {
|
|
609
624
|
readonly Cosmoshub: "uatom";
|
|
@@ -648,6 +663,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
648
663
|
readonly Stargaze: "ustars";
|
|
649
664
|
readonly Neutron: "untrn";
|
|
650
665
|
readonly Provenance: "nhash";
|
|
666
|
+
readonly Noble: "uusdc";
|
|
651
667
|
};
|
|
652
668
|
readonly Testnet: {
|
|
653
669
|
readonly Cosmoshub: "uatom";
|
|
@@ -691,6 +707,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
691
707
|
readonly Stargaze: "ustars";
|
|
692
708
|
readonly Neutron: "untrn";
|
|
693
709
|
readonly Provenance: "nhash";
|
|
710
|
+
readonly Noble: "uusdc";
|
|
694
711
|
};
|
|
695
712
|
readonly Testnet: {
|
|
696
713
|
readonly Cosmoshub: "uatom";
|
|
@@ -734,6 +751,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
734
751
|
readonly Stargaze: "ustars";
|
|
735
752
|
readonly Neutron: "untrn";
|
|
736
753
|
readonly Provenance: "nhash";
|
|
754
|
+
readonly Noble: "uusdc";
|
|
737
755
|
};
|
|
738
756
|
readonly Testnet: {
|
|
739
757
|
readonly Cosmoshub: "uatom";
|
|
@@ -777,6 +795,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
777
795
|
readonly Stargaze: "ustars";
|
|
778
796
|
readonly Neutron: "untrn";
|
|
779
797
|
readonly Provenance: "nhash";
|
|
798
|
+
readonly Noble: "uusdc";
|
|
780
799
|
};
|
|
781
800
|
readonly Testnet: {
|
|
782
801
|
readonly Cosmoshub: "uatom";
|
|
@@ -820,6 +839,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
820
839
|
readonly Stargaze: "ustars";
|
|
821
840
|
readonly Neutron: "untrn";
|
|
822
841
|
readonly Provenance: "nhash";
|
|
842
|
+
readonly Noble: "uusdc";
|
|
823
843
|
};
|
|
824
844
|
readonly Testnet: {
|
|
825
845
|
readonly Cosmoshub: "uatom";
|
|
@@ -863,6 +883,7 @@ export declare const chainToNativeDenoms: (<const K1 extends "Mainnet" | "Testne
|
|
|
863
883
|
readonly Stargaze: "ustars";
|
|
864
884
|
readonly Neutron: "untrn";
|
|
865
885
|
readonly Provenance: "nhash";
|
|
886
|
+
readonly Noble: "uusdc";
|
|
866
887
|
};
|
|
867
888
|
readonly Testnet: {
|
|
868
889
|
readonly Cosmoshub: "uatom";
|
|
@@ -909,6 +930,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
909
930
|
ustars: "Stargaze";
|
|
910
931
|
untrn: "Neutron";
|
|
911
932
|
nhash: "Provenance";
|
|
933
|
+
uusdc: "Noble";
|
|
912
934
|
};
|
|
913
935
|
Testnet: {
|
|
914
936
|
uatom: "Cosmoshub";
|
|
@@ -952,6 +974,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
952
974
|
ustars: "Stargaze";
|
|
953
975
|
untrn: "Neutron";
|
|
954
976
|
nhash: "Provenance";
|
|
977
|
+
uusdc: "Noble";
|
|
955
978
|
};
|
|
956
979
|
Testnet: {
|
|
957
980
|
uatom: "Cosmoshub";
|
|
@@ -995,6 +1018,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
995
1018
|
ustars: "Stargaze";
|
|
996
1019
|
untrn: "Neutron";
|
|
997
1020
|
nhash: "Provenance";
|
|
1021
|
+
uusdc: "Noble";
|
|
998
1022
|
};
|
|
999
1023
|
Testnet: {
|
|
1000
1024
|
uatom: "Cosmoshub";
|
|
@@ -1038,6 +1062,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1038
1062
|
ustars: "Stargaze";
|
|
1039
1063
|
untrn: "Neutron";
|
|
1040
1064
|
nhash: "Provenance";
|
|
1065
|
+
uusdc: "Noble";
|
|
1041
1066
|
};
|
|
1042
1067
|
Testnet: {
|
|
1043
1068
|
uatom: "Cosmoshub";
|
|
@@ -1070,7 +1095,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1070
1095
|
[key: symbol]: unknown;
|
|
1071
1096
|
} ? T_1[K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2] : never : never : never) & {
|
|
1072
1097
|
readonly has: (args_0: string, args_1: string) => boolean;
|
|
1073
|
-
readonly get: (args_0: string, args_1: string) => "Cosmoshub" | "Evmos" | "Injective" | "Kujira" | "Osmosis" | "Sei" | "Terra" | "Terra2" | "Wormchain" | "Xpla" | "Dymension" | "Neutron" | "Stargaze" | "Celestia" | "Seda" | "Provenance" | undefined;
|
|
1098
|
+
readonly get: (args_0: string, args_1: string) => "Cosmoshub" | "Evmos" | "Injective" | "Kujira" | "Osmosis" | "Sei" | "Terra" | "Terra2" | "Wormchain" | "Xpla" | "Dymension" | "Neutron" | "Stargaze" | "Celestia" | "Seda" | "Provenance" | "Noble" | undefined;
|
|
1074
1099
|
} & {
|
|
1075
1100
|
readonly subMap: <const K extends "Mainnet" | "Testnet" | "Devnet">(key: K) => (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) extends infer T_2 ? T_2 extends (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) ? T_2 extends "Mainnet" | "Testnet" | "Devnet" ? {
|
|
1076
1101
|
Mainnet: {
|
|
@@ -1089,6 +1114,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1089
1114
|
ustars: "Stargaze";
|
|
1090
1115
|
untrn: "Neutron";
|
|
1091
1116
|
nhash: "Provenance";
|
|
1117
|
+
uusdc: "Noble";
|
|
1092
1118
|
};
|
|
1093
1119
|
Testnet: {
|
|
1094
1120
|
uatom: "Cosmoshub";
|
|
@@ -1136,6 +1162,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1136
1162
|
ustars: "Stargaze";
|
|
1137
1163
|
untrn: "Neutron";
|
|
1138
1164
|
nhash: "Provenance";
|
|
1165
|
+
uusdc: "Noble";
|
|
1139
1166
|
};
|
|
1140
1167
|
Testnet: {
|
|
1141
1168
|
uatom: "Cosmoshub";
|
|
@@ -1179,6 +1206,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1179
1206
|
ustars: "Stargaze";
|
|
1180
1207
|
untrn: "Neutron";
|
|
1181
1208
|
nhash: "Provenance";
|
|
1209
|
+
uusdc: "Noble";
|
|
1182
1210
|
};
|
|
1183
1211
|
Testnet: {
|
|
1184
1212
|
uatom: "Cosmoshub";
|
|
@@ -1222,6 +1250,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1222
1250
|
ustars: "Stargaze";
|
|
1223
1251
|
untrn: "Neutron";
|
|
1224
1252
|
nhash: "Provenance";
|
|
1253
|
+
uusdc: "Noble";
|
|
1225
1254
|
};
|
|
1226
1255
|
Testnet: {
|
|
1227
1256
|
uatom: "Cosmoshub";
|
|
@@ -1265,6 +1294,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1265
1294
|
ustars: "Stargaze";
|
|
1266
1295
|
untrn: "Neutron";
|
|
1267
1296
|
nhash: "Provenance";
|
|
1297
|
+
uusdc: "Noble";
|
|
1268
1298
|
};
|
|
1269
1299
|
Testnet: {
|
|
1270
1300
|
uatom: "Cosmoshub";
|
|
@@ -1313,6 +1343,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1313
1343
|
ustars: "Stargaze";
|
|
1314
1344
|
untrn: "Neutron";
|
|
1315
1345
|
nhash: "Provenance";
|
|
1346
|
+
uusdc: "Noble";
|
|
1316
1347
|
};
|
|
1317
1348
|
Testnet: {
|
|
1318
1349
|
uatom: "Cosmoshub";
|
|
@@ -1356,6 +1387,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1356
1387
|
ustars: "Stargaze";
|
|
1357
1388
|
untrn: "Neutron";
|
|
1358
1389
|
nhash: "Provenance";
|
|
1390
|
+
uusdc: "Noble";
|
|
1359
1391
|
};
|
|
1360
1392
|
Testnet: {
|
|
1361
1393
|
uatom: "Cosmoshub";
|
|
@@ -1399,6 +1431,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1399
1431
|
ustars: "Stargaze";
|
|
1400
1432
|
untrn: "Neutron";
|
|
1401
1433
|
nhash: "Provenance";
|
|
1434
|
+
uusdc: "Noble";
|
|
1402
1435
|
};
|
|
1403
1436
|
Testnet: {
|
|
1404
1437
|
uatom: "Cosmoshub";
|
|
@@ -1442,6 +1475,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1442
1475
|
ustars: "Stargaze";
|
|
1443
1476
|
untrn: "Neutron";
|
|
1444
1477
|
nhash: "Provenance";
|
|
1478
|
+
uusdc: "Noble";
|
|
1445
1479
|
};
|
|
1446
1480
|
Testnet: {
|
|
1447
1481
|
uatom: "Cosmoshub";
|
|
@@ -1486,6 +1520,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1486
1520
|
ustars: "Stargaze";
|
|
1487
1521
|
untrn: "Neutron";
|
|
1488
1522
|
nhash: "Provenance";
|
|
1523
|
+
uusdc: "Noble";
|
|
1489
1524
|
};
|
|
1490
1525
|
Testnet: {
|
|
1491
1526
|
uatom: "Cosmoshub";
|
|
@@ -1529,6 +1564,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1529
1564
|
ustars: "Stargaze";
|
|
1530
1565
|
untrn: "Neutron";
|
|
1531
1566
|
nhash: "Provenance";
|
|
1567
|
+
uusdc: "Noble";
|
|
1532
1568
|
};
|
|
1533
1569
|
Testnet: {
|
|
1534
1570
|
uatom: "Cosmoshub";
|
|
@@ -1572,6 +1608,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1572
1608
|
ustars: "Stargaze";
|
|
1573
1609
|
untrn: "Neutron";
|
|
1574
1610
|
nhash: "Provenance";
|
|
1611
|
+
uusdc: "Noble";
|
|
1575
1612
|
};
|
|
1576
1613
|
Testnet: {
|
|
1577
1614
|
uatom: "Cosmoshub";
|
|
@@ -1615,6 +1652,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1615
1652
|
ustars: "Stargaze";
|
|
1616
1653
|
untrn: "Neutron";
|
|
1617
1654
|
nhash: "Provenance";
|
|
1655
|
+
uusdc: "Noble";
|
|
1618
1656
|
};
|
|
1619
1657
|
Testnet: {
|
|
1620
1658
|
uatom: "Cosmoshub";
|
|
@@ -1658,6 +1696,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1658
1696
|
ustars: "Stargaze";
|
|
1659
1697
|
untrn: "Neutron";
|
|
1660
1698
|
nhash: "Provenance";
|
|
1699
|
+
uusdc: "Noble";
|
|
1661
1700
|
};
|
|
1662
1701
|
Testnet: {
|
|
1663
1702
|
uatom: "Cosmoshub";
|
|
@@ -1701,6 +1740,7 @@ export declare const nativeDenomToChain: (<const K1 extends "Mainnet" | "Testnet
|
|
|
1701
1740
|
ustars: "Stargaze";
|
|
1702
1741
|
untrn: "Neutron";
|
|
1703
1742
|
nhash: "Provenance";
|
|
1743
|
+
uusdc: "Noble";
|
|
1704
1744
|
};
|
|
1705
1745
|
Testnet: {
|
|
1706
1746
|
uatom: "Cosmoshub";
|
|
@@ -3473,6 +3513,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3473
3513
|
readonly Evmos: "25000000000";
|
|
3474
3514
|
readonly Dymension: "5000000000";
|
|
3475
3515
|
readonly Provenance: "2100";
|
|
3516
|
+
readonly Noble: "0.1";
|
|
3476
3517
|
};
|
|
3477
3518
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1] extends infer T ? T extends keyof {
|
|
3478
3519
|
readonly Mainnet: {
|
|
@@ -3490,6 +3531,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3490
3531
|
readonly Evmos: "25000000000";
|
|
3491
3532
|
readonly Dymension: "5000000000";
|
|
3492
3533
|
readonly Provenance: "2100";
|
|
3534
|
+
readonly Noble: "0.1";
|
|
3493
3535
|
};
|
|
3494
3536
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1] ? T extends `bigint(${infer V extends bigint})` ? V : T extends `boolean(${infer V_1 extends boolean})` ? V_1 : T : never : never>(args_0: K1, args_1: K2) => {
|
|
3495
3537
|
readonly Mainnet: {
|
|
@@ -3507,6 +3549,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3507
3549
|
readonly Evmos: "25000000000";
|
|
3508
3550
|
readonly Dymension: "5000000000";
|
|
3509
3551
|
readonly Provenance: "2100";
|
|
3552
|
+
readonly Noble: "0.1";
|
|
3510
3553
|
};
|
|
3511
3554
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1] extends infer T_1 ? T_1 extends {
|
|
3512
3555
|
readonly Mainnet: {
|
|
@@ -3524,6 +3567,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3524
3567
|
readonly Evmos: "25000000000";
|
|
3525
3568
|
readonly Dymension: "5000000000";
|
|
3526
3569
|
readonly Provenance: "2100";
|
|
3570
|
+
readonly Noble: "0.1";
|
|
3527
3571
|
};
|
|
3528
3572
|
}[K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1] ? T_1 extends {
|
|
3529
3573
|
[key: string]: unknown;
|
|
@@ -3531,7 +3575,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3531
3575
|
[key: symbol]: unknown;
|
|
3532
3576
|
} ? T_1[K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2] : never : never : never) & {
|
|
3533
3577
|
readonly has: (args_0: string, args_1: string) => boolean;
|
|
3534
|
-
readonly get: (args_0: string, args_1: string) => "28.325" | "0.015" | "0.025" | "0.02" | "0.0051" | "0.075" | "1.1" | "700000000" | "1147500000000" | "25000000000" | "5000000000" | "2100" | undefined;
|
|
3578
|
+
readonly get: (args_0: string, args_1: string) => "28.325" | "0.015" | "0.025" | "0.02" | "0.0051" | "0.075" | "1.1" | "700000000" | "1147500000000" | "25000000000" | "5000000000" | "2100" | "0.1" | undefined;
|
|
3535
3579
|
} & {
|
|
3536
3580
|
readonly subMap: <const K extends "Mainnet">(key: K) => (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) extends infer T_2 ? T_2 extends (K extends bigint ? `bigint(${K})` : K extends boolean ? `boolean(${K})` : K) ? T_2 extends "Mainnet" ? {
|
|
3537
3581
|
readonly Mainnet: {
|
|
@@ -3549,6 +3593,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3549
3593
|
readonly Evmos: "25000000000";
|
|
3550
3594
|
readonly Dymension: "5000000000";
|
|
3551
3595
|
readonly Provenance: "2100";
|
|
3596
|
+
readonly Noble: "0.1";
|
|
3552
3597
|
};
|
|
3553
3598
|
}[T_2] extends {
|
|
3554
3599
|
[key: string]: unknown;
|
|
@@ -3570,6 +3615,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3570
3615
|
readonly Evmos: "25000000000";
|
|
3571
3616
|
readonly Dymension: "5000000000";
|
|
3572
3617
|
readonly Provenance: "2100";
|
|
3618
|
+
readonly Noble: "0.1";
|
|
3573
3619
|
};
|
|
3574
3620
|
}[T_2] extends infer T_3 ? T_3 extends keyof {
|
|
3575
3621
|
readonly Mainnet: {
|
|
@@ -3587,6 +3633,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3587
3633
|
readonly Evmos: "25000000000";
|
|
3588
3634
|
readonly Dymension: "5000000000";
|
|
3589
3635
|
readonly Provenance: "2100";
|
|
3636
|
+
readonly Noble: "0.1";
|
|
3590
3637
|
};
|
|
3591
3638
|
}[T_2] ? T_3 extends `bigint(${infer V extends bigint})` ? V : T_3 extends `boolean(${infer V_1 extends boolean})` ? V_1 : T_3 : never : never>(args_0: K1_1) => {
|
|
3592
3639
|
readonly Mainnet: {
|
|
@@ -3604,6 +3651,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3604
3651
|
readonly Evmos: "25000000000";
|
|
3605
3652
|
readonly Dymension: "5000000000";
|
|
3606
3653
|
readonly Provenance: "2100";
|
|
3654
|
+
readonly Noble: "0.1";
|
|
3607
3655
|
};
|
|
3608
3656
|
}[T_2] extends infer T_4 ? T_4 extends {
|
|
3609
3657
|
readonly Mainnet: {
|
|
@@ -3621,6 +3669,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3621
3669
|
readonly Evmos: "25000000000";
|
|
3622
3670
|
readonly Dymension: "5000000000";
|
|
3623
3671
|
readonly Provenance: "2100";
|
|
3672
|
+
readonly Noble: "0.1";
|
|
3624
3673
|
};
|
|
3625
3674
|
}[T_2] ? T_4 extends {
|
|
3626
3675
|
[key: string]: unknown;
|
|
@@ -3643,6 +3692,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3643
3692
|
readonly Evmos: "25000000000";
|
|
3644
3693
|
readonly Dymension: "5000000000";
|
|
3645
3694
|
readonly Provenance: "2100";
|
|
3695
|
+
readonly Noble: "0.1";
|
|
3646
3696
|
};
|
|
3647
3697
|
}[T_2] extends infer T_5 ? T_5 extends {
|
|
3648
3698
|
readonly Mainnet: {
|
|
@@ -3660,6 +3710,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3660
3710
|
readonly Evmos: "25000000000";
|
|
3661
3711
|
readonly Dymension: "5000000000";
|
|
3662
3712
|
readonly Provenance: "2100";
|
|
3713
|
+
readonly Noble: "0.1";
|
|
3663
3714
|
};
|
|
3664
3715
|
}[T_2] ? T_5 extends Object ? keyof T_5 : never : never : never) extends infer T_6 ? T_6 extends ({
|
|
3665
3716
|
readonly Mainnet: {
|
|
@@ -3677,6 +3728,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3677
3728
|
readonly Evmos: "25000000000";
|
|
3678
3729
|
readonly Dymension: "5000000000";
|
|
3679
3730
|
readonly Provenance: "2100";
|
|
3731
|
+
readonly Noble: "0.1";
|
|
3680
3732
|
};
|
|
3681
3733
|
}[T_2] extends infer T_5 ? T_5 extends {
|
|
3682
3734
|
readonly Mainnet: {
|
|
@@ -3694,6 +3746,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3694
3746
|
readonly Evmos: "25000000000";
|
|
3695
3747
|
readonly Dymension: "5000000000";
|
|
3696
3748
|
readonly Provenance: "2100";
|
|
3749
|
+
readonly Noble: "0.1";
|
|
3697
3750
|
};
|
|
3698
3751
|
}[T_2] ? T_5 extends Object ? keyof T_5 : never : never : never) ? T_6 extends `bigint(${infer V extends bigint})` ? V : T_6 extends `boolean(${infer V_1 extends boolean})` ? V_1 : T_6 : never : never>) => boolean;
|
|
3699
3752
|
readonly get: (args_0: import("@wormhole-foundation/sdk-connect").Widen<({
|
|
@@ -3712,6 +3765,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3712
3765
|
readonly Evmos: "25000000000";
|
|
3713
3766
|
readonly Dymension: "5000000000";
|
|
3714
3767
|
readonly Provenance: "2100";
|
|
3768
|
+
readonly Noble: "0.1";
|
|
3715
3769
|
};
|
|
3716
3770
|
}[T_2] extends infer T_5 ? T_5 extends {
|
|
3717
3771
|
readonly Mainnet: {
|
|
@@ -3729,6 +3783,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3729
3783
|
readonly Evmos: "25000000000";
|
|
3730
3784
|
readonly Dymension: "5000000000";
|
|
3731
3785
|
readonly Provenance: "2100";
|
|
3786
|
+
readonly Noble: "0.1";
|
|
3732
3787
|
};
|
|
3733
3788
|
}[T_2] ? T_5 extends Object ? keyof T_5 : never : never : never) extends infer T_6 ? T_6 extends ({
|
|
3734
3789
|
readonly Mainnet: {
|
|
@@ -3746,6 +3801,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3746
3801
|
readonly Evmos: "25000000000";
|
|
3747
3802
|
readonly Dymension: "5000000000";
|
|
3748
3803
|
readonly Provenance: "2100";
|
|
3804
|
+
readonly Noble: "0.1";
|
|
3749
3805
|
};
|
|
3750
3806
|
}[T_2] extends infer T_5 ? T_5 extends {
|
|
3751
3807
|
readonly Mainnet: {
|
|
@@ -3763,6 +3819,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3763
3819
|
readonly Evmos: "25000000000";
|
|
3764
3820
|
readonly Dymension: "5000000000";
|
|
3765
3821
|
readonly Provenance: "2100";
|
|
3822
|
+
readonly Noble: "0.1";
|
|
3766
3823
|
};
|
|
3767
3824
|
}[T_2] ? T_5 extends Object ? keyof T_5 : never : never : never) ? T_6 extends `bigint(${infer V extends bigint})` ? V : T_6 extends `boolean(${infer V_1 extends boolean})` ? V_1 : T_6 : never : never>) => ({
|
|
3768
3825
|
readonly Mainnet: {
|
|
@@ -3780,6 +3837,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3780
3837
|
readonly Evmos: "25000000000";
|
|
3781
3838
|
readonly Dymension: "5000000000";
|
|
3782
3839
|
readonly Provenance: "2100";
|
|
3840
|
+
readonly Noble: "0.1";
|
|
3783
3841
|
};
|
|
3784
3842
|
}[T_2] extends infer T_7 ? T_7 extends {
|
|
3785
3843
|
readonly Mainnet: {
|
|
@@ -3797,6 +3855,7 @@ export declare const averageGasPrices: (<const K1 extends "Mainnet", const K2 ex
|
|
|
3797
3855
|
readonly Evmos: "25000000000";
|
|
3798
3856
|
readonly Dymension: "5000000000";
|
|
3799
3857
|
readonly Provenance: "2100";
|
|
3858
|
+
readonly Noble: "0.1";
|
|
3800
3859
|
};
|
|
3801
3860
|
}[T_2] ? T_7 extends Object ? T_7[keyof T_7] : never : never : never) | undefined;
|
|
3802
3861
|
} : never : never : never : never;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEjD,eAAO,MAAM,WAAW,UAAY,CAAC;AAErC,eAAO,MAAM,6BAA6B,yCAAyC,CAAC;AAEpF,eAAO,MAAM,YAAY,8CAA8C,CAAC;AAExE,eAAO,MAAM,iBAAiB,aAAa,CAAC;AAG5C,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAC7C,eAAO,MAAM,kBAAkB,gBAAgB,CAAC;AAGhD,eAAO,MAAM,cAAc,uBAAuB,CAAC;AACnD,eAAO,MAAM,cAAc,uBAAuB,CAAC;AACnD,eAAO,MAAM,mBAAmB,oBAAoB,CAAC;AACrD,eAAO,MAAM,mBAAmB,oBAAoB,CAAC;AACrD,eAAO,MAAM,cAAc,oBAAoB,CAAC;AAChD,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAC7C,eAAO,MAAM,eAAe,sBAAsB,CAAC;AAEnD,eAAO,MAAM,kBAAkB,QAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEjD,eAAO,MAAM,WAAW,UAAY,CAAC;AAErC,eAAO,MAAM,6BAA6B,yCAAyC,CAAC;AAEpF,eAAO,MAAM,YAAY,8CAA8C,CAAC;AAExE,eAAO,MAAM,iBAAiB,aAAa,CAAC;AAG5C,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAC7C,eAAO,MAAM,kBAAkB,gBAAgB,CAAC;AAGhD,eAAO,MAAM,cAAc,uBAAuB,CAAC;AACnD,eAAO,MAAM,cAAc,uBAAuB,CAAC;AACnD,eAAO,MAAM,mBAAmB,oBAAoB,CAAC;AACrD,eAAO,MAAM,mBAAmB,oBAAoB,CAAC;AACrD,eAAO,MAAM,cAAc,oBAAoB,CAAC;AAChD,eAAO,MAAM,eAAe,gBAAgB,CAAC;AAC7C,eAAO,MAAM,eAAe,sBAAsB,CAAC;AAEnD,eAAO,MAAM,kBAAkB,QAAiB,CAAC;AAsBjD,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;CAAkC,CAAC;AACpE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;CAA4C,CAAC;AAyD9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAC;AACjE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA+C,CAAC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"}
|
package/dist/esm/constants.js
CHANGED
|
@@ -32,6 +32,7 @@ const cosmwasmAddressPrefix = [
|
|
|
32
32
|
["Neutron", "neutron"],
|
|
33
33
|
["Seda", "seda"],
|
|
34
34
|
["Provenance", "pb"],
|
|
35
|
+
["Noble", "noble"],
|
|
35
36
|
];
|
|
36
37
|
export const chainToAddressPrefix = constMap(cosmwasmAddressPrefix);
|
|
37
38
|
export const addressPrefixToChain = constMap(cosmwasmAddressPrefix, [1, [0]]);
|
|
@@ -54,6 +55,7 @@ const cosmwasmNativeDenom = [
|
|
|
54
55
|
["Stargaze", "ustars"],
|
|
55
56
|
["Neutron", "untrn"],
|
|
56
57
|
["Provenance", "nhash"],
|
|
58
|
+
["Noble", "uusdc"],
|
|
57
59
|
],
|
|
58
60
|
],
|
|
59
61
|
[
|
|
@@ -191,6 +193,7 @@ const avgPrices = [
|
|
|
191
193
|
["Evmos", "25000000000"],
|
|
192
194
|
["Dymension", "5000000000"],
|
|
193
195
|
["Provenance", "2100"],
|
|
196
|
+
["Noble", "0.1"],
|
|
194
197
|
],
|
|
195
198
|
],
|
|
196
199
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAG5D,MAAM,CAAC,MAAM,WAAW,GAAG,SAAS,CAAC;AAErC,MAAM,CAAC,MAAM,6BAA6B,GAAG,sCAAsC,CAAC;AAEpF,MAAM,CAAC,MAAM,YAAY,GAAG,2CAA2C,CAAC;AAExE,MAAM,CAAC,MAAM,iBAAiB,GAAG,UAAU,CAAC;AAE5C,yBAAyB;AACzB,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAC;AAC7C,MAAM,CAAC,MAAM,kBAAkB,GAAG,aAAa,CAAC;AAEhD,kCAAkC;AAClC,MAAM,CAAC,MAAM,cAAc,GAAG,oBAAoB,CAAC;AACnD,MAAM,CAAC,MAAM,cAAc,GAAG,oBAAoB,CAAC;AACnD,MAAM,CAAC,MAAM,mBAAmB,GAAG,iBAAiB,CAAC;AACrD,MAAM,CAAC,MAAM,mBAAmB,GAAG,iBAAiB,CAAC;AACrD,MAAM,CAAC,MAAM,cAAc,GAAG,iBAAiB,CAAC;AAChD,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAC;AAC7C,MAAM,CAAC,MAAM,eAAe,GAAG,mBAAmB,CAAC;AAEnD,MAAM,CAAC,MAAM,kBAAkB,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,aAAa;AAE/D,MAAM,qBAAqB,GAAG;IAC5B,CAAC,WAAW,EAAE,QAAQ,CAAC;IACvB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,WAAW,EAAE,KAAK,CAAC;IACpB,CAAC,QAAQ,EAAE,MAAM,CAAC;IAClB,CAAC,SAAS,EAAE,MAAM,CAAC;IACnB,CAAC,KAAK,EAAE,KAAK,CAAC;IACd,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,QAAQ,EAAE,OAAO,CAAC;IACnB,CAAC,WAAW,EAAE,UAAU,CAAC;IACzB,CAAC,MAAM,EAAE,MAAM,CAAC;IAChB,CAAC,UAAU,EAAE,UAAU,CAAC;IACxB,CAAC,UAAU,EAAE,OAAO,CAAC;IACrB,CAAC,WAAW,EAAE,KAAK,CAAC;IACpB,CAAC,SAAS,EAAE,SAAS,CAAC;IACtB,CAAC,MAAM,EAAE,MAAM,CAAC;IAChB,CAAC,YAAY,EAAE,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wormhole-foundation/sdk-cosmwasm",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/wormhole-foundation/connect-sdk.git"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"test": "jest --config ./jest.config.ts"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@wormhole-foundation/sdk-connect": "1.3.
|
|
56
|
+
"@wormhole-foundation/sdk-connect": "1.3.1",
|
|
57
57
|
"@cosmjs/cosmwasm-stargate": "^0.32.0",
|
|
58
58
|
"@cosmjs/proto-signing": "^0.32.0",
|
|
59
59
|
"@cosmjs/stargate": "^0.32.0",
|