@paraspell/assets 14.3.3 → 14.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -1
- package/dist/index.mjs +222 -8
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,10 @@ interface TAssetV4<T = bigint> {
|
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
type TErc20Info = {
|
|
20
|
+
balanceSlot: number;
|
|
21
|
+
contract?: string;
|
|
22
|
+
};
|
|
19
23
|
type TAssetInfo = {
|
|
20
24
|
decimals: number;
|
|
21
25
|
symbol: string;
|
|
@@ -24,6 +28,7 @@ type TAssetInfo = {
|
|
|
24
28
|
location: TLocation;
|
|
25
29
|
existentialDeposit?: string;
|
|
26
30
|
isFeeAsset?: boolean;
|
|
31
|
+
erc20?: TErc20Info;
|
|
27
32
|
alias?: string;
|
|
28
33
|
};
|
|
29
34
|
type TAssetInfoWithId = TAssetInfo & {
|
|
@@ -300,4 +305,4 @@ declare const extractAssetLocation: <T = bigint>(asset: TAsset<T>) => TLocation;
|
|
|
300
305
|
declare const getAssetLocation: (chain: TChain, currency: TCurrencyInput) => TLocation | null;
|
|
301
306
|
|
|
302
307
|
export { CustomAssetConflictError, DuplicateAssetError, DuplicateAssetIdError, Foreign, ForeignAbstract, InvalidCurrencyError, Native, STABLECOIN_IDS, assertEdDefined, canonicalizeLocation, compareLocations, extractAssetLocation, findAssetInfo, findAssetInfoById, findAssetInfoByLoc, findAssetInfoBySymbol, findAssetInfoImpl, findAssetInfoOnDest, findAssetInfoOnDestImpl, findAssetInfoOrThrow, findAssetInfoOrThrowImpl, findAssetOnDestOrThrow, findAssetOnDestOrThrowImpl, findBestMatches, findNativeAssetInfo, findNativeAssetInfoImpl, findNativeAssetInfoOrThrow, findNativeAssetInfoOrThrowImpl, getAllAssetsSymbols, getAssetLocation, getAssets, getAssetsImpl, getAssetsObject, getAssetsObjectImpl, getEdFromAssetOrThrow, getExistentialDeposit, getExistentialDepositImpl, getExistentialDepositOrThrow, getExistentialDepositOrThrowImpl, getFeeAssets, getNativeAssetSymbol, getNativeAssetSymbolImpl, getNativeAssets, getNativeAssetsImpl, getOtherAssets, getOtherAssetsImpl, getRelayChainSymbol, getRelayChainSymbolImpl, getSupportedAssets, getSupportedAssetsImpl, getSupportedDestinations, hasDryRunSupport, hasDryRunSupportImpl, hasXcmPaymentApiSupport, hasXcmPaymentApiSupportImpl, isAdditionalSubstrateBridgeAsset, isAssetEqual, isBridgedSystemAsset, isChainEvm, isChainEvmImpl, isCustomAsset, isDestinationReachable, isDestinationReachableImpl, isStableCoinAsset, isSymbolMatch, isSymbolSpecifier, isSystemAsset, isTAsset, normalizeCustomAssets, normalizeLocation, normalizeSymbol };
|
|
303
|
-
export type { TAmount, TAsset, TAssetInfo, TAssetInfoWithId, TAssetJsonMap, TAssetV3, TAssetV4, TAssetWithFee, TChainAssetsInfo, TCurrency, TCurrencyCore, TCurrencyInput, TCurrencyInputWithAmount, TCurrencySymbol, TCurrencySymbolValue, TCustomAssetInfo, TCustomAssetsMap, TCustomAssetsMapNormalized, TCustomCtx, TLocationValue, TSingleCurrencyInput, TSingleCurrencyInputWithAmount, TSymbolSpecifier, WithAmount, WithComplexAmount, WithOptionalAmount };
|
|
308
|
+
export type { TAmount, TAsset, TAssetInfo, TAssetInfoWithId, TAssetJsonMap, TAssetV3, TAssetV4, TAssetWithFee, TChainAssetsInfo, TCurrency, TCurrencyCore, TCurrencyInput, TCurrencyInputWithAmount, TCurrencySymbol, TCurrencySymbolValue, TCustomAssetInfo, TCustomAssetsMap, TCustomAssetsMapNormalized, TCustomCtx, TErc20Info, TLocationValue, TSingleCurrencyInput, TSingleCurrencyInputWithAmount, TSymbolSpecifier, WithAmount, WithComplexAmount, WithOptionalAmount };
|
package/dist/index.mjs
CHANGED
|
@@ -2960,6 +2960,9 @@ var Hydration = {
|
|
|
2960
2960
|
symbol: "HUSDe",
|
|
2961
2961
|
decimals: 18,
|
|
2962
2962
|
existentialDeposit: "33000000000000000",
|
|
2963
|
+
erc20: {
|
|
2964
|
+
balanceSlot: 52
|
|
2965
|
+
},
|
|
2963
2966
|
location: {
|
|
2964
2967
|
parents: 1,
|
|
2965
2968
|
interior: {
|
|
@@ -2983,6 +2986,10 @@ var Hydration = {
|
|
|
2983
2986
|
symbol: "HOLLAR",
|
|
2984
2987
|
decimals: 18,
|
|
2985
2988
|
existentialDeposit: "20000000000000000",
|
|
2989
|
+
erc20: {
|
|
2990
|
+
balanceSlot: 3,
|
|
2991
|
+
contract: "0x531a654d1696ed52e7275a8cede955e82620f99a"
|
|
2992
|
+
},
|
|
2986
2993
|
location: {
|
|
2987
2994
|
parents: 1,
|
|
2988
2995
|
interior: {
|
|
@@ -2991,10 +2998,7 @@ var Hydration = {
|
|
|
2991
2998
|
Parachain: 2034
|
|
2992
2999
|
},
|
|
2993
3000
|
{
|
|
2994
|
-
|
|
2995
|
-
network: null,
|
|
2996
|
-
key: "0x531a654d1696ed52e7275a8cede955e82620f99a"
|
|
2997
|
-
}
|
|
3001
|
+
GeneralIndex: 222
|
|
2998
3002
|
}
|
|
2999
3003
|
]
|
|
3000
3004
|
}
|
|
@@ -3006,6 +3010,9 @@ var Hydration = {
|
|
|
3006
3010
|
symbol: "aSOL",
|
|
3007
3011
|
decimals: 9,
|
|
3008
3012
|
existentialDeposit: "221956",
|
|
3013
|
+
erc20: {
|
|
3014
|
+
balanceSlot: 52
|
|
3015
|
+
},
|
|
3009
3016
|
location: {
|
|
3010
3017
|
parents: 1,
|
|
3011
3018
|
interior: {
|
|
@@ -3029,6 +3036,9 @@ var Hydration = {
|
|
|
3029
3036
|
symbol: "aSIGIL",
|
|
3030
3037
|
decimals: 18,
|
|
3031
3038
|
existentialDeposit: "20000000000000000",
|
|
3039
|
+
erc20: {
|
|
3040
|
+
balanceSlot: 52
|
|
3041
|
+
},
|
|
3032
3042
|
location: {
|
|
3033
3043
|
parents: 1,
|
|
3034
3044
|
interior: {
|
|
@@ -3052,6 +3062,9 @@ var Hydration = {
|
|
|
3052
3062
|
symbol: "GETH",
|
|
3053
3063
|
decimals: 18,
|
|
3054
3064
|
existentialDeposit: "8202803876747",
|
|
3065
|
+
erc20: {
|
|
3066
|
+
balanceSlot: 52
|
|
3067
|
+
},
|
|
3055
3068
|
location: {
|
|
3056
3069
|
parents: 1,
|
|
3057
3070
|
interior: {
|
|
@@ -3099,6 +3112,9 @@ var Hydration = {
|
|
|
3099
3112
|
symbol: "aDOT",
|
|
3100
3113
|
decimals: 10,
|
|
3101
3114
|
existentialDeposit: "54125333",
|
|
3115
|
+
erc20: {
|
|
3116
|
+
balanceSlot: 52
|
|
3117
|
+
},
|
|
3102
3118
|
location: {
|
|
3103
3119
|
parents: 1,
|
|
3104
3120
|
interior: {
|
|
@@ -3122,6 +3138,9 @@ var Hydration = {
|
|
|
3122
3138
|
symbol: "aapyUSD",
|
|
3123
3139
|
decimals: 18,
|
|
3124
3140
|
existentialDeposit: "14705882352941200",
|
|
3141
|
+
erc20: {
|
|
3142
|
+
balanceSlot: 52
|
|
3143
|
+
},
|
|
3125
3144
|
location: {
|
|
3126
3145
|
parents: 1,
|
|
3127
3146
|
interior: {
|
|
@@ -3145,6 +3164,9 @@ var Hydration = {
|
|
|
3145
3164
|
symbol: "HUSDT",
|
|
3146
3165
|
decimals: 18,
|
|
3147
3166
|
existentialDeposit: "33000000000000000",
|
|
3167
|
+
erc20: {
|
|
3168
|
+
balanceSlot: 52
|
|
3169
|
+
},
|
|
3148
3170
|
location: {
|
|
3149
3171
|
parents: 1,
|
|
3150
3172
|
interior: {
|
|
@@ -3242,6 +3264,9 @@ var Hydration = {
|
|
|
3242
3264
|
symbol: "GIGAHDX",
|
|
3243
3265
|
decimals: 12,
|
|
3244
3266
|
existentialDeposit: "0",
|
|
3267
|
+
erc20: {
|
|
3268
|
+
balanceSlot: 52
|
|
3269
|
+
},
|
|
3245
3270
|
location: {
|
|
3246
3271
|
parents: 1,
|
|
3247
3272
|
interior: {
|
|
@@ -3483,6 +3508,9 @@ var Hydration = {
|
|
|
3483
3508
|
symbol: "a3-Pool",
|
|
3484
3509
|
decimals: 18,
|
|
3485
3510
|
existentialDeposit: "33000000000000000",
|
|
3511
|
+
erc20: {
|
|
3512
|
+
balanceSlot: 52
|
|
3513
|
+
},
|
|
3486
3514
|
location: {
|
|
3487
3515
|
parents: 1,
|
|
3488
3516
|
interior: {
|
|
@@ -3529,6 +3557,9 @@ var Hydration = {
|
|
|
3529
3557
|
symbol: "HUSDS",
|
|
3530
3558
|
decimals: 18,
|
|
3531
3559
|
existentialDeposit: "33000000000000000",
|
|
3560
|
+
erc20: {
|
|
3561
|
+
balanceSlot: 52
|
|
3562
|
+
},
|
|
3532
3563
|
location: {
|
|
3533
3564
|
parents: 1,
|
|
3534
3565
|
interior: {
|
|
@@ -3603,6 +3634,9 @@ var Hydration = {
|
|
|
3603
3634
|
symbol: "atBTC",
|
|
3604
3635
|
decimals: 18,
|
|
3605
3636
|
existentialDeposit: "208779411374",
|
|
3637
|
+
erc20: {
|
|
3638
|
+
balanceSlot: 52
|
|
3639
|
+
},
|
|
3606
3640
|
location: {
|
|
3607
3641
|
parents: 1,
|
|
3608
3642
|
interior: {
|
|
@@ -3736,6 +3770,9 @@ var Hydration = {
|
|
|
3736
3770
|
symbol: "HEURC",
|
|
3737
3771
|
decimals: 18,
|
|
3738
3772
|
existentialDeposit: "17241379310344828",
|
|
3773
|
+
erc20: {
|
|
3774
|
+
balanceSlot: 52
|
|
3775
|
+
},
|
|
3739
3776
|
location: {
|
|
3740
3777
|
parents: 1,
|
|
3741
3778
|
interior: {
|
|
@@ -3844,6 +3881,32 @@ var Hydration = {
|
|
|
3844
3881
|
},
|
|
3845
3882
|
isFeeAsset: true
|
|
3846
3883
|
},
|
|
3884
|
+
{
|
|
3885
|
+
assetId: "1001354",
|
|
3886
|
+
symbol: "aDOT-HOLLAR",
|
|
3887
|
+
decimals: 18,
|
|
3888
|
+
existentialDeposit: "20000000000000000",
|
|
3889
|
+
erc20: {
|
|
3890
|
+
balanceSlot: 0
|
|
3891
|
+
},
|
|
3892
|
+
location: {
|
|
3893
|
+
parents: 1,
|
|
3894
|
+
interior: {
|
|
3895
|
+
X2: [
|
|
3896
|
+
{
|
|
3897
|
+
Parachain: 2034
|
|
3898
|
+
},
|
|
3899
|
+
{
|
|
3900
|
+
AccountKey20: {
|
|
3901
|
+
network: null,
|
|
3902
|
+
key: "0xa206d0959813f17c17c87147271c49065438648a"
|
|
3903
|
+
}
|
|
3904
|
+
}
|
|
3905
|
+
]
|
|
3906
|
+
}
|
|
3907
|
+
},
|
|
3908
|
+
isFeeAsset: true
|
|
3909
|
+
},
|
|
3847
3910
|
{
|
|
3848
3911
|
assetId: "41",
|
|
3849
3912
|
symbol: "CFG",
|
|
@@ -3933,6 +3996,9 @@ var Hydration = {
|
|
|
3933
3996
|
symbol: "aPAXG",
|
|
3934
3997
|
decimals: 18,
|
|
3935
3998
|
existentialDeposit: "4675946889957",
|
|
3999
|
+
erc20: {
|
|
4000
|
+
balanceSlot: 52
|
|
4001
|
+
},
|
|
3936
4002
|
location: {
|
|
3937
4003
|
parents: 1,
|
|
3938
4004
|
interior: {
|
|
@@ -4106,6 +4172,9 @@ var Hydration = {
|
|
|
4106
4172
|
symbol: "aUSDT",
|
|
4107
4173
|
decimals: 6,
|
|
4108
4174
|
existentialDeposit: "22409",
|
|
4175
|
+
erc20: {
|
|
4176
|
+
balanceSlot: 52
|
|
4177
|
+
},
|
|
4109
4178
|
location: {
|
|
4110
4179
|
parents: 1,
|
|
4111
4180
|
interior: {
|
|
@@ -4229,6 +4298,9 @@ var Hydration = {
|
|
|
4229
4298
|
symbol: "uBIL",
|
|
4230
4299
|
decimals: 18,
|
|
4231
4300
|
existentialDeposit: "20000000000000000",
|
|
4301
|
+
erc20: {
|
|
4302
|
+
balanceSlot: 51
|
|
4303
|
+
},
|
|
4232
4304
|
location: {
|
|
4233
4305
|
parents: 1,
|
|
4234
4306
|
interior: {
|
|
@@ -4494,6 +4566,9 @@ var Hydration = {
|
|
|
4494
4566
|
symbol: "aUSDC",
|
|
4495
4567
|
decimals: 6,
|
|
4496
4568
|
existentialDeposit: "22409",
|
|
4569
|
+
erc20: {
|
|
4570
|
+
balanceSlot: 52
|
|
4571
|
+
},
|
|
4497
4572
|
location: {
|
|
4498
4573
|
parents: 1,
|
|
4499
4574
|
interior: {
|
|
@@ -4517,6 +4592,9 @@ var Hydration = {
|
|
|
4517
4592
|
symbol: "aEURC",
|
|
4518
4593
|
decimals: 6,
|
|
4519
4594
|
existentialDeposit: "17241",
|
|
4595
|
+
erc20: {
|
|
4596
|
+
balanceSlot: 52
|
|
4597
|
+
},
|
|
4520
4598
|
location: {
|
|
4521
4599
|
parents: 1,
|
|
4522
4600
|
interior: {
|
|
@@ -4592,6 +4670,9 @@ var Hydration = {
|
|
|
4592
4670
|
symbol: "avDOT",
|
|
4593
4671
|
decimals: 10,
|
|
4594
4672
|
existentialDeposit: "36627790",
|
|
4673
|
+
erc20: {
|
|
4674
|
+
balanceSlot: 52
|
|
4675
|
+
},
|
|
4595
4676
|
location: {
|
|
4596
4677
|
parents: 1,
|
|
4597
4678
|
interior: {
|
|
@@ -4615,6 +4696,9 @@ var Hydration = {
|
|
|
4615
4696
|
symbol: "aETH",
|
|
4616
4697
|
decimals: 18,
|
|
4617
4698
|
existentialDeposit: "8202803876747",
|
|
4699
|
+
erc20: {
|
|
4700
|
+
balanceSlot: 52
|
|
4701
|
+
},
|
|
4618
4702
|
location: {
|
|
4619
4703
|
parents: 1,
|
|
4620
4704
|
interior: {
|
|
@@ -4754,6 +4838,9 @@ var Hydration = {
|
|
|
4754
4838
|
symbol: "HUSDC",
|
|
4755
4839
|
decimals: 18,
|
|
4756
4840
|
existentialDeposit: "33000000000000000",
|
|
4841
|
+
erc20: {
|
|
4842
|
+
balanceSlot: 52
|
|
4843
|
+
},
|
|
4757
4844
|
location: {
|
|
4758
4845
|
parents: 1,
|
|
4759
4846
|
interior: {
|
|
@@ -4800,6 +4887,9 @@ var Hydration = {
|
|
|
4800
4887
|
symbol: "aWBTC",
|
|
4801
4888
|
decimals: 8,
|
|
4802
4889
|
existentialDeposit: "40",
|
|
4890
|
+
erc20: {
|
|
4891
|
+
balanceSlot: 52
|
|
4892
|
+
},
|
|
4803
4893
|
location: {
|
|
4804
4894
|
parents: 1,
|
|
4805
4895
|
interior: {
|
|
@@ -4962,6 +5052,9 @@ var Hydration = {
|
|
|
4962
5052
|
symbol: "BIL",
|
|
4963
5053
|
decimals: 18,
|
|
4964
5054
|
existentialDeposit: "20000000000000000",
|
|
5055
|
+
erc20: {
|
|
5056
|
+
balanceSlot: 52
|
|
5057
|
+
},
|
|
4965
5058
|
location: {
|
|
4966
5059
|
parents: 1,
|
|
4967
5060
|
interior: {
|
|
@@ -5060,6 +5153,9 @@ var Hydration = {
|
|
|
5060
5153
|
symbol: "GDOT",
|
|
5061
5154
|
decimals: 18,
|
|
5062
5155
|
existentialDeposit: "5290724013368937",
|
|
5156
|
+
erc20: {
|
|
5157
|
+
balanceSlot: 52
|
|
5158
|
+
},
|
|
5063
5159
|
location: {
|
|
5064
5160
|
parents: 1,
|
|
5065
5161
|
interior: {
|
|
@@ -5166,6 +5262,9 @@ var Hydration = {
|
|
|
5166
5262
|
symbol: "GSOL",
|
|
5167
5263
|
decimals: 18,
|
|
5168
5264
|
existentialDeposit: "221802682843910",
|
|
5265
|
+
erc20: {
|
|
5266
|
+
balanceSlot: 52
|
|
5267
|
+
},
|
|
5169
5268
|
location: {
|
|
5170
5269
|
parents: 1,
|
|
5171
5270
|
interior: {
|
|
@@ -5189,6 +5288,9 @@ var Hydration = {
|
|
|
5189
5288
|
symbol: "aPRIME",
|
|
5190
5289
|
decimals: 6,
|
|
5191
5290
|
existentialDeposit: "9901",
|
|
5291
|
+
erc20: {
|
|
5292
|
+
balanceSlot: 52
|
|
5293
|
+
},
|
|
5192
5294
|
location: {
|
|
5193
5295
|
parents: 1,
|
|
5194
5296
|
interior: {
|
|
@@ -5379,6 +5481,29 @@ var AssetHubPolkadot = {
|
|
|
5379
5481
|
existentialDeposit: "500000000000000",
|
|
5380
5482
|
alias: "WETH1"
|
|
5381
5483
|
},
|
|
5484
|
+
{
|
|
5485
|
+
assetId: "50000546",
|
|
5486
|
+
symbol: "DOT",
|
|
5487
|
+
decimals: 10,
|
|
5488
|
+
location: {
|
|
5489
|
+
parents: 1,
|
|
5490
|
+
interior: {
|
|
5491
|
+
X3: [
|
|
5492
|
+
{
|
|
5493
|
+
Parachain: 1000
|
|
5494
|
+
},
|
|
5495
|
+
{
|
|
5496
|
+
PalletInstance: 50
|
|
5497
|
+
},
|
|
5498
|
+
{
|
|
5499
|
+
GeneralIndex: 50000546
|
|
5500
|
+
}
|
|
5501
|
+
]
|
|
5502
|
+
}
|
|
5503
|
+
},
|
|
5504
|
+
existentialDeposit: "1",
|
|
5505
|
+
alias: "DOT6"
|
|
5506
|
+
},
|
|
5382
5507
|
{
|
|
5383
5508
|
assetId: "50000075",
|
|
5384
5509
|
symbol: "BILL",
|
|
@@ -5747,6 +5872,29 @@ var AssetHubPolkadot = {
|
|
|
5747
5872
|
existentialDeposit: "1",
|
|
5748
5873
|
alias: "DOT5"
|
|
5749
5874
|
},
|
|
5875
|
+
{
|
|
5876
|
+
assetId: "50000545",
|
|
5877
|
+
symbol: "USDt",
|
|
5878
|
+
decimals: 6,
|
|
5879
|
+
location: {
|
|
5880
|
+
parents: 1,
|
|
5881
|
+
interior: {
|
|
5882
|
+
X3: [
|
|
5883
|
+
{
|
|
5884
|
+
Parachain: 1000
|
|
5885
|
+
},
|
|
5886
|
+
{
|
|
5887
|
+
PalletInstance: 50
|
|
5888
|
+
},
|
|
5889
|
+
{
|
|
5890
|
+
GeneralIndex: 50000545
|
|
5891
|
+
}
|
|
5892
|
+
]
|
|
5893
|
+
}
|
|
5894
|
+
},
|
|
5895
|
+
existentialDeposit: "1",
|
|
5896
|
+
alias: "USDt5"
|
|
5897
|
+
},
|
|
5750
5898
|
{
|
|
5751
5899
|
assetId: "50000534",
|
|
5752
5900
|
symbol: "DOT",
|
|
@@ -5908,6 +6056,29 @@ var AssetHubPolkadot = {
|
|
|
5908
6056
|
existentialDeposit: "10000",
|
|
5909
6057
|
alias: "USDt2"
|
|
5910
6058
|
},
|
|
6059
|
+
{
|
|
6060
|
+
assetId: "50000547",
|
|
6061
|
+
symbol: "DOT",
|
|
6062
|
+
decimals: 10,
|
|
6063
|
+
location: {
|
|
6064
|
+
parents: 1,
|
|
6065
|
+
interior: {
|
|
6066
|
+
X3: [
|
|
6067
|
+
{
|
|
6068
|
+
Parachain: 1000
|
|
6069
|
+
},
|
|
6070
|
+
{
|
|
6071
|
+
PalletInstance: 50
|
|
6072
|
+
},
|
|
6073
|
+
{
|
|
6074
|
+
GeneralIndex: 50000547
|
|
6075
|
+
}
|
|
6076
|
+
]
|
|
6077
|
+
}
|
|
6078
|
+
},
|
|
6079
|
+
existentialDeposit: "1",
|
|
6080
|
+
alias: "DOT7"
|
|
6081
|
+
},
|
|
5911
6082
|
{
|
|
5912
6083
|
assetId: "201",
|
|
5913
6084
|
symbol: "WUD",
|
|
@@ -14224,6 +14395,9 @@ var HydrationPaseo = {
|
|
|
14224
14395
|
symbol: "HUSDe",
|
|
14225
14396
|
decimals: 18,
|
|
14226
14397
|
existentialDeposit: "33000000000000000",
|
|
14398
|
+
erc20: {
|
|
14399
|
+
balanceSlot: 52
|
|
14400
|
+
},
|
|
14227
14401
|
location: {
|
|
14228
14402
|
parents: 1,
|
|
14229
14403
|
interior: {
|
|
@@ -14247,6 +14421,10 @@ var HydrationPaseo = {
|
|
|
14247
14421
|
symbol: "HOLLAR",
|
|
14248
14422
|
decimals: 18,
|
|
14249
14423
|
existentialDeposit: "0",
|
|
14424
|
+
erc20: {
|
|
14425
|
+
balanceSlot: 3,
|
|
14426
|
+
contract: "0x531a654d1696ed52e7275a8cede955e82620f99a"
|
|
14427
|
+
},
|
|
14250
14428
|
location: {
|
|
14251
14429
|
parents: 1,
|
|
14252
14430
|
interior: {
|
|
@@ -14255,10 +14433,7 @@ var HydrationPaseo = {
|
|
|
14255
14433
|
Parachain: 2034
|
|
14256
14434
|
},
|
|
14257
14435
|
{
|
|
14258
|
-
|
|
14259
|
-
network: null,
|
|
14260
|
-
key: "0x531a654d1696ed52e7275a8cede955e82620f99a"
|
|
14261
|
-
}
|
|
14436
|
+
GeneralIndex: 222
|
|
14262
14437
|
}
|
|
14263
14438
|
]
|
|
14264
14439
|
}
|
|
@@ -14270,6 +14445,9 @@ var HydrationPaseo = {
|
|
|
14270
14445
|
symbol: "GETH",
|
|
14271
14446
|
decimals: 18,
|
|
14272
14447
|
existentialDeposit: "8202803876747",
|
|
14448
|
+
erc20: {
|
|
14449
|
+
balanceSlot: 52
|
|
14450
|
+
},
|
|
14273
14451
|
location: {
|
|
14274
14452
|
parents: 1,
|
|
14275
14453
|
interior: {
|
|
@@ -14317,6 +14495,9 @@ var HydrationPaseo = {
|
|
|
14317
14495
|
symbol: "aDOT",
|
|
14318
14496
|
decimals: 10,
|
|
14319
14497
|
existentialDeposit: "54125333",
|
|
14498
|
+
erc20: {
|
|
14499
|
+
balanceSlot: 52
|
|
14500
|
+
},
|
|
14320
14501
|
location: {
|
|
14321
14502
|
parents: 1,
|
|
14322
14503
|
interior: {
|
|
@@ -14340,6 +14521,9 @@ var HydrationPaseo = {
|
|
|
14340
14521
|
symbol: "HUSDT",
|
|
14341
14522
|
decimals: 18,
|
|
14342
14523
|
existentialDeposit: "33000000000000000",
|
|
14524
|
+
erc20: {
|
|
14525
|
+
balanceSlot: 52
|
|
14526
|
+
},
|
|
14343
14527
|
location: {
|
|
14344
14528
|
parents: 1,
|
|
14345
14529
|
interior: {
|
|
@@ -14616,6 +14800,9 @@ var HydrationPaseo = {
|
|
|
14616
14800
|
symbol: "a3-Pool",
|
|
14617
14801
|
decimals: 18,
|
|
14618
14802
|
existentialDeposit: "33000000000000000",
|
|
14803
|
+
erc20: {
|
|
14804
|
+
balanceSlot: 52
|
|
14805
|
+
},
|
|
14619
14806
|
location: {
|
|
14620
14807
|
parents: 1,
|
|
14621
14808
|
interior: {
|
|
@@ -14662,6 +14849,9 @@ var HydrationPaseo = {
|
|
|
14662
14849
|
symbol: "HUSDS",
|
|
14663
14850
|
decimals: 18,
|
|
14664
14851
|
existentialDeposit: "33000000000000000",
|
|
14852
|
+
erc20: {
|
|
14853
|
+
balanceSlot: 52
|
|
14854
|
+
},
|
|
14665
14855
|
location: {
|
|
14666
14856
|
parents: 1,
|
|
14667
14857
|
interior: {
|
|
@@ -14736,6 +14926,9 @@ var HydrationPaseo = {
|
|
|
14736
14926
|
symbol: "atBTC",
|
|
14737
14927
|
decimals: 18,
|
|
14738
14928
|
existentialDeposit: "208779411374",
|
|
14929
|
+
erc20: {
|
|
14930
|
+
balanceSlot: 52
|
|
14931
|
+
},
|
|
14739
14932
|
location: {
|
|
14740
14933
|
parents: 1,
|
|
14741
14934
|
interior: {
|
|
@@ -15102,6 +15295,9 @@ var HydrationPaseo = {
|
|
|
15102
15295
|
symbol: "aUSDT",
|
|
15103
15296
|
decimals: 6,
|
|
15104
15297
|
existentialDeposit: "22409",
|
|
15298
|
+
erc20: {
|
|
15299
|
+
balanceSlot: 52
|
|
15300
|
+
},
|
|
15105
15301
|
location: {
|
|
15106
15302
|
parents: 1,
|
|
15107
15303
|
interior: {
|
|
@@ -15390,6 +15586,9 @@ var HydrationPaseo = {
|
|
|
15390
15586
|
symbol: "aUSDC",
|
|
15391
15587
|
decimals: 6,
|
|
15392
15588
|
existentialDeposit: "22409",
|
|
15589
|
+
erc20: {
|
|
15590
|
+
balanceSlot: 52
|
|
15591
|
+
},
|
|
15393
15592
|
location: {
|
|
15394
15593
|
parents: 1,
|
|
15395
15594
|
interior: {
|
|
@@ -15465,6 +15664,9 @@ var HydrationPaseo = {
|
|
|
15465
15664
|
symbol: "avDOT",
|
|
15466
15665
|
decimals: 10,
|
|
15467
15666
|
existentialDeposit: "36627790",
|
|
15667
|
+
erc20: {
|
|
15668
|
+
balanceSlot: 52
|
|
15669
|
+
},
|
|
15468
15670
|
location: {
|
|
15469
15671
|
parents: 1,
|
|
15470
15672
|
interior: {
|
|
@@ -15488,6 +15690,9 @@ var HydrationPaseo = {
|
|
|
15488
15690
|
symbol: "aETH",
|
|
15489
15691
|
decimals: 18,
|
|
15490
15692
|
existentialDeposit: "8202803876747",
|
|
15693
|
+
erc20: {
|
|
15694
|
+
balanceSlot: 52
|
|
15695
|
+
},
|
|
15491
15696
|
location: {
|
|
15492
15697
|
parents: 1,
|
|
15493
15698
|
interior: {
|
|
@@ -15600,6 +15805,9 @@ var HydrationPaseo = {
|
|
|
15600
15805
|
symbol: "HUSDC",
|
|
15601
15806
|
decimals: 18,
|
|
15602
15807
|
existentialDeposit: "33000000000000000",
|
|
15808
|
+
erc20: {
|
|
15809
|
+
balanceSlot: 52
|
|
15810
|
+
},
|
|
15603
15811
|
location: {
|
|
15604
15812
|
parents: 1,
|
|
15605
15813
|
interior: {
|
|
@@ -15646,6 +15854,9 @@ var HydrationPaseo = {
|
|
|
15646
15854
|
symbol: "aWBTC",
|
|
15647
15855
|
decimals: 8,
|
|
15648
15856
|
existentialDeposit: "40",
|
|
15857
|
+
erc20: {
|
|
15858
|
+
balanceSlot: 52
|
|
15859
|
+
},
|
|
15649
15860
|
location: {
|
|
15650
15861
|
parents: 1,
|
|
15651
15862
|
interior: {
|
|
@@ -15883,6 +16094,9 @@ var HydrationPaseo = {
|
|
|
15883
16094
|
symbol: "GDOT",
|
|
15884
16095
|
decimals: 18,
|
|
15885
16096
|
existentialDeposit: "5290724013368937",
|
|
16097
|
+
erc20: {
|
|
16098
|
+
balanceSlot: 52
|
|
16099
|
+
},
|
|
15886
16100
|
location: {
|
|
15887
16101
|
parents: 1,
|
|
15888
16102
|
interior: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paraspell/assets",
|
|
3
|
-
"version": "14.3.
|
|
3
|
+
"version": "14.3.5",
|
|
4
4
|
"description": "Assets for ParaSpell XCM/XCMP tool for developers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@paraspell/sdk-common": "14.3.
|
|
25
|
+
"@paraspell/sdk-common": "14.3.5"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@babel/plugin-syntax-import-attributes": "^7.29.7",
|