@paraspell/sdk-core 11.9.2 → 11.10.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/dist/index.cjs CHANGED
@@ -940,6 +940,365 @@ var getRelayChainOf = function getRelayChainOf(chain) {
940
940
  return getChain(chain).ecosystem;
941
941
  };
942
942
 
943
+ var createChainClient = /*#__PURE__*/function () {
944
+ var _ref = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(api, chain) {
945
+ return _regenerator().w(function (_context) {
946
+ while (1) switch (_context.n) {
947
+ case 0:
948
+ _context.n = 1;
949
+ return api.init(chain);
950
+ case 1:
951
+ return _context.a(2, api.getApi());
952
+ }
953
+ }, _callee);
954
+ }));
955
+ return function createChainClient(_x, _x2) {
956
+ return _ref.apply(this, arguments);
957
+ };
958
+ }();
959
+
960
+ /* eslint-disable @typescript-eslint/no-explicit-any */
961
+ /* eslint-disable @typescript-eslint/no-unsafe-member-access */
962
+ /* eslint-disable @typescript-eslint/no-unsafe-assignment */
963
+ var getLocationTokenId = function getLocationTokenId(location, chain) {
964
+ if (location.interior.type === 'Here') {
965
+ // native token
966
+ return assets.getNativeAssetSymbol(chain);
967
+ }
968
+ var foreignAssets = assets.getOtherAssets(chain);
969
+ if (location.interior.type === 'X2') {
970
+ if (location.interior.value[0].type === 'PalletInstance' && location.interior.value[0].value === 50 && location.interior.value[1].type === 'GeneralIndex') {
971
+ var _foreignAssets$find$a, _foreignAssets$find;
972
+ var assetId = location.interior.value[1].value;
973
+ return (_foreignAssets$find$a = (_foreignAssets$find = foreignAssets.find(function (asset) {
974
+ return asset.assetId === String(assetId);
975
+ })) === null || _foreignAssets$find === void 0 ? void 0 : _foreignAssets$find.assetId) !== null && _foreignAssets$find$a !== void 0 ? _foreignAssets$find$a : null;
976
+ }
977
+ }
978
+ return null;
979
+ };
980
+
981
+ var computeFeeFromDryRun = function computeFeeFromDryRun(dryRun, chain, executionFee) {
982
+ var isFeeAsset = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
983
+ // Extract delivery fees from emitted events
984
+ var deliveryFees = [];
985
+ var assetConversionFee = 0n;
986
+ var _iterator = _createForOfIteratorHelper(dryRun.value.emitted_events),
987
+ _step;
988
+ try {
989
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
990
+ var _e$value, _e$value2;
991
+ var e = _step.value;
992
+ var isXcmEvent = e.type === 'XcmPallet' || e.type === 'PolkadotXcm' || e.type === 'CumulusXcm';
993
+ var isFeesPaid = e.value.type === 'FeesPaid';
994
+ if (isXcmEvent && isFeesPaid && e.value.value.fees) {
995
+ var _iterator2 = _createForOfIteratorHelper(e.value.value.fees),
996
+ _step2;
997
+ try {
998
+ for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
999
+ var feeItem = _step2.value;
1000
+ if (feeItem.fun.type === 'NonFungible') continue;
1001
+ var plancks = feeItem.fun.value;
1002
+ var tokenSymbol = getLocationTokenId(feeItem.id, chain);
1003
+ if (!tokenSymbol || !plancks) continue;
1004
+ deliveryFees.push({
1005
+ plancks: plancks,
1006
+ tokenSymbol: tokenSymbol
1007
+ });
1008
+ }
1009
+ } catch (err) {
1010
+ _iterator2.e(err);
1011
+ } finally {
1012
+ _iterator2.f();
1013
+ }
1014
+ }
1015
+ if (isFeeAsset && e.type === 'AssetConversion' && ((_e$value = e.value) === null || _e$value === void 0 ? void 0 : _e$value.type) === 'SwapCreditExecuted' && (_e$value2 = e.value) !== null && _e$value2 !== void 0 && _e$value2.value && e.value.value.amount_in !== undefined && e.value.value.amount_in !== null) {
1016
+ assetConversionFee += e.value.value.amount_in;
1017
+ }
1018
+ }
1019
+ } catch (err) {
1020
+ _iterator.e(err);
1021
+ } finally {
1022
+ _iterator.f();
1023
+ }
1024
+ if (isFeeAsset && assetConversionFee > 0n) {
1025
+ return assetConversionFee;
1026
+ } else {
1027
+ var nativeAssetSymbol = assets.getNativeAssetSymbol(chain);
1028
+ var totalDeliveryFees = deliveryFees.filter(function (df) {
1029
+ return df.tokenSymbol === nativeAssetSymbol;
1030
+ }).reduce(function (acc, df) {
1031
+ return acc + df.plancks;
1032
+ }, 0n);
1033
+ return totalDeliveryFees + executionFee;
1034
+ }
1035
+ };
1036
+
1037
+ var getLocationTokenIdPjs = function getLocationTokenIdPjs(location, chain) {
1038
+ if (location.interior === 'Here') {
1039
+ // native token
1040
+ return assets.getNativeAssetSymbol(chain);
1041
+ }
1042
+ var foreignAssets = assets.getOtherAssets(chain);
1043
+ if (location.interior.X2 && sdkCommon.hasJunction(location, 'PalletInstance', '50') && sdkCommon.hasJunction(location, 'GeneralIndex')) {
1044
+ var _foreignAssets$find$s, _foreignAssets$find;
1045
+ var assetId = sdkCommon.getJunctionValue(location, 'GeneralIndex');
1046
+ return (_foreignAssets$find$s = (_foreignAssets$find = foreignAssets.find(function (asset) {
1047
+ return asset.assetId === String(assetId);
1048
+ })) === null || _foreignAssets$find === void 0 ? void 0 : _foreignAssets$find.symbol) !== null && _foreignAssets$find$s !== void 0 ? _foreignAssets$find$s : null;
1049
+ }
1050
+ return null;
1051
+ };
1052
+
1053
+ var computeFeeFromDryRunPjs = function computeFeeFromDryRunPjs(dryRun, chain, executionFee) {
1054
+ // Extract delivery fees from emitted events
1055
+ var deliveryFees = [];
1056
+ var _iterator = _createForOfIteratorHelper(dryRun.Ok.emittedEvents),
1057
+ _step;
1058
+ try {
1059
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
1060
+ var e = _step.value;
1061
+ var isXcmEvent = e.section === 'xcmPallet' || e.section === 'polkadotXcm' || e.section === 'cumulusXcm';
1062
+ var isFeesPaid = e.method === 'FeesPaid';
1063
+ if (isXcmEvent && isFeesPaid && e.data.fees) {
1064
+ var _iterator2 = _createForOfIteratorHelper(e.data.fees),
1065
+ _step2;
1066
+ try {
1067
+ for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
1068
+ var feeItem = _step2.value;
1069
+ if (feeItem.fun.NonFungible) continue;
1070
+ var plancks = BigInt(feeItem.fun.Fungible.replace(/,/g, ''));
1071
+ var tokenSymbol = getLocationTokenIdPjs(feeItem.id, chain);
1072
+ if (!tokenSymbol || !plancks) continue;
1073
+ deliveryFees.push({
1074
+ plancks: plancks,
1075
+ tokenSymbol: tokenSymbol
1076
+ });
1077
+ }
1078
+ } catch (err) {
1079
+ _iterator2.e(err);
1080
+ } finally {
1081
+ _iterator2.f();
1082
+ }
1083
+ }
1084
+ }
1085
+ } catch (err) {
1086
+ _iterator.e(err);
1087
+ } finally {
1088
+ _iterator.f();
1089
+ }
1090
+ var nativeAssetSymbol = assets.getNativeAssetSymbol(chain);
1091
+ // Sum the fees that match the feeToken
1092
+ var totalDeliveryFees = deliveryFees.filter(function (df) {
1093
+ return df.tokenSymbol === nativeAssetSymbol;
1094
+ }).reduce(function (acc, df) {
1095
+ return acc + df.plancks;
1096
+ }, 0n);
1097
+ return totalDeliveryFees + executionFee;
1098
+ };
1099
+
1100
+ /**
1101
+ * The options for the batch builder.
1102
+ */
1103
+ exports.BatchMode = void 0;
1104
+ (function (BatchMode) {
1105
+ /**
1106
+ * Does not commit if one of the calls in the batch fails.
1107
+ */
1108
+ BatchMode["BATCH_ALL"] = "BATCH_ALL";
1109
+ /**
1110
+ * Commits each successful call regardless if a call fails.
1111
+ */
1112
+ BatchMode["BATCH"] = "BATCH";
1113
+ })(exports.BatchMode || (exports.BatchMode = {}));
1114
+
1115
+ exports.XTokensError = void 0;
1116
+ (function (XTokensError) {
1117
+ XTokensError["AssetHasNoReserve"] = "AssetHasNoReserve";
1118
+ XTokensError["NotCrossChainTransfer"] = "NotCrossChainTransfer";
1119
+ XTokensError["InvalidDest"] = "InvalidDest";
1120
+ XTokensError["NotCrossChainTransferableCurrency"] = "NotCrossChainTransferableCurrency";
1121
+ XTokensError["UnweighableMessage"] = "UnweighableMessage";
1122
+ XTokensError["XcmExecutionFailed"] = "XcmExecutionFailed";
1123
+ XTokensError["CannotReanchor"] = "CannotReanchor";
1124
+ XTokensError["InvalidAncestry"] = "InvalidAncestry";
1125
+ XTokensError["InvalidAsset"] = "InvalidAsset";
1126
+ XTokensError["DestinationNotInvertible"] = "DestinationNotInvertible";
1127
+ XTokensError["BadVersion"] = "BadVersion";
1128
+ XTokensError["DistinctReserveForAssetAndFee"] = "DistinctReserveForAssetAndFee";
1129
+ XTokensError["ZeroFee"] = "ZeroFee";
1130
+ XTokensError["ZeroAmount"] = "ZeroAmount";
1131
+ XTokensError["TooManyAssetsBeingSent"] = "TooManyAssetsBeingSent";
1132
+ XTokensError["AssetIndexNonExistent"] = "AssetIndexNonExistent";
1133
+ XTokensError["FeeNotEnough"] = "FeeNotEnough";
1134
+ XTokensError["NotSupportedLocation"] = "NotSupportedLocation";
1135
+ XTokensError["MinXcmFeeNotDefined"] = "MinXcmFeeNotDefined";
1136
+ XTokensError["RateLimited"] = "RateLimited";
1137
+ })(exports.XTokensError || (exports.XTokensError = {}));
1138
+ exports.PolkadotXcmError = void 0;
1139
+ (function (PolkadotXcmError) {
1140
+ PolkadotXcmError["Unreachable"] = "Unreachable";
1141
+ PolkadotXcmError["SendFailure"] = "SendFailure";
1142
+ PolkadotXcmError["Filtered"] = "Filtered";
1143
+ PolkadotXcmError["UnweighableMessage"] = "UnweighableMessage";
1144
+ PolkadotXcmError["DestinationNotInvertible"] = "DestinationNotInvertible";
1145
+ PolkadotXcmError["Empty"] = "Empty";
1146
+ PolkadotXcmError["CannotReanchor"] = "CannotReanchor";
1147
+ PolkadotXcmError["TooManyAssets"] = "TooManyAssets";
1148
+ PolkadotXcmError["InvalidOrigin"] = "InvalidOrigin";
1149
+ PolkadotXcmError["BadVersion"] = "BadVersion";
1150
+ PolkadotXcmError["BadLocation"] = "BadLocation";
1151
+ PolkadotXcmError["NoSubscription"] = "NoSubscription";
1152
+ PolkadotXcmError["AlreadySubscribed"] = "AlreadySubscribed";
1153
+ PolkadotXcmError["CannotCheckOutTeleport"] = "CannotCheckOutTeleport";
1154
+ PolkadotXcmError["LowBalance"] = "LowBalance";
1155
+ PolkadotXcmError["TooManyLocks"] = "TooManyLocks";
1156
+ PolkadotXcmError["AccountNotSovereign"] = "AccountNotSovereign";
1157
+ PolkadotXcmError["FeesNotMet"] = "FeesNotMet";
1158
+ PolkadotXcmError["LockNotFound"] = "LockNotFound";
1159
+ PolkadotXcmError["InUse"] = "InUse";
1160
+ PolkadotXcmError["REMOVED"] = "REMOVED";
1161
+ PolkadotXcmError["InvalidAssetUnknownReserve"] = "InvalidAssetUnknownReserve";
1162
+ PolkadotXcmError["InvalidAssetUnsupportedReserve"] = "InvalidAssetUnsupportedReserve";
1163
+ PolkadotXcmError["TooManyReserves"] = "TooManyReserves";
1164
+ PolkadotXcmError["LocalExecutionIncomplete"] = "LocalExecutionIncomplete";
1165
+ PolkadotXcmError["TooManyAuthorizedAliases"] = "TooManyAuthorizedAliases";
1166
+ PolkadotXcmError["ExpiresInPast"] = "ExpiresInPast";
1167
+ PolkadotXcmError["AliasNotFound"] = "AliasNotFound";
1168
+ PolkadotXcmError["LocalExecutionIncompleteWithError"] = "LocalExecutionIncompleteWithError";
1169
+ })(exports.PolkadotXcmError || (exports.PolkadotXcmError = {}));
1170
+
1171
+ var resolveModuleError = function resolveModuleError(chain, error) {
1172
+ var palletDetails = pallets.getSupportedPalletsDetails(chain).find(function (p) {
1173
+ return p.index === Number(error.index);
1174
+ });
1175
+ if (!palletDetails) {
1176
+ throw new InvalidParameterError("Pallet with index ".concat(error.index, " not found"));
1177
+ }
1178
+ // Use only the first byte of the error to get the error index
1179
+ var errorIndex = Number(error.error.slice(0, 4));
1180
+ var name = palletDetails.name;
1181
+ if (name !== 'XTokens' && name !== 'PolkadotXcm' && name !== 'XcmPallet') {
1182
+ throw new InvalidParameterError("Pallet ".concat(name, " is not supported"));
1183
+ }
1184
+ var failureReason = name === 'XTokens' ? Object.values(exports.XTokensError)[errorIndex] : Object.values(exports.PolkadotXcmError)[errorIndex];
1185
+ if (!failureReason) {
1186
+ throw new InvalidParameterError("Error index ".concat(errorIndex, " not found in ").concat(name, " pallet"));
1187
+ }
1188
+ return failureReason;
1189
+ };
1190
+
1191
+ var isAssetHub = function isAssetHub(chain) {
1192
+ return chain === 'AssetHubPolkadot' || chain === 'AssetHubKusama';
1193
+ };
1194
+ var isBridgeHub = function isBridgeHub(chain) {
1195
+ return chain === 'BridgeHubPolkadot' || chain === 'BridgeHubKusama';
1196
+ };
1197
+ var isPeople = function isPeople(chain) {
1198
+ return chain === 'PeoplePolkadot' || chain === 'PeopleKusama';
1199
+ };
1200
+ var isSystemPara = function isSystemPara(chain) {
1201
+ return isAssetHub(chain) || isBridgeHub(chain) || isPeople(chain);
1202
+ };
1203
+ var mul = function mul(v, num) {
1204
+ var den = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1n;
1205
+ return v * num / den;
1206
+ };
1207
+ var padFee = function padFee(raw, origin, dest, side) {
1208
+ var relayOrigin = sdkCommon.isRelayChain(origin);
1209
+ var relayDest = sdkCommon.isRelayChain(dest);
1210
+ var sysParaOrigin = isSystemPara(origin);
1211
+ var sysParaDest = isSystemPara(dest);
1212
+ var relayToPara = relayOrigin && !relayDest;
1213
+ var sysParaToPara = sysParaOrigin && !sysParaDest;
1214
+ var paraToPara = !relayOrigin && !sysParaOrigin;
1215
+ if (sysParaToPara) return raw * 40n;
1216
+ if (relayToPara) return side === 'origin' ? mul(raw, 320n, 100n) : mul(raw, 3000n, 100n);
1217
+ if (paraToPara && side == 'origin' && origin === 'Mythos' && dest !== 'Ethereum') {
1218
+ return 150000000000000000n;
1219
+ }
1220
+ if (paraToPara) return mul(raw, 130n, 100n);
1221
+ // apply default 30% padding
1222
+ return mul(raw, 130n, 100n);
1223
+ };
1224
+ var padFeeBy = function padFeeBy(amount, percent) {
1225
+ return mul(amount, BigInt(100 + percent), 100n);
1226
+ };
1227
+
1228
+ var resolveScenario = function resolveScenario(origin, destination) {
1229
+ if (sdkCommon.isRelayChain(origin)) return 'RelayToPara';
1230
+ var isRelayDestination = !sdkCommon.isTLocation(destination) && sdkCommon.isRelayChain(destination);
1231
+ if (isRelayDestination) return 'ParaToRelay';
1232
+ return 'ParaToPara';
1233
+ };
1234
+
1235
+ var createX1Payload = function createX1Payload(version, junction) {
1236
+ return version === sdkCommon.Version.V3 ? {
1237
+ X1: junction
1238
+ } : {
1239
+ X1: [junction]
1240
+ };
1241
+ };
1242
+
1243
+ var createAccountPayload = function createAccountPayload(api, address) {
1244
+ return viem.isAddress(address) ? {
1245
+ AccountKey20: {
1246
+ key: address
1247
+ }
1248
+ } : {
1249
+ AccountId32: {
1250
+ id: api.accountToHex(address)
1251
+ }
1252
+ };
1253
+ };
1254
+ var createBeneficiaryLocXTokens = function createBeneficiaryLocXTokens(_ref) {
1255
+ var api = _ref.api,
1256
+ recipientAddress = _ref.address,
1257
+ origin = _ref.origin,
1258
+ destination = _ref.destination,
1259
+ version = _ref.version,
1260
+ paraId = _ref.paraId;
1261
+ if (sdkCommon.isTLocation(recipientAddress)) {
1262
+ return recipientAddress;
1263
+ }
1264
+ var scenario = resolveScenario(origin, destination);
1265
+ var accountPayload = createAccountPayload(api, recipientAddress);
1266
+ if (scenario === 'ParaToRelay') {
1267
+ return {
1268
+ parents: sdkCommon.Parents.ONE,
1269
+ interior: createX1Payload(version, {
1270
+ AccountId32: {
1271
+ id: api.accountToHex(recipientAddress)
1272
+ }
1273
+ })
1274
+ };
1275
+ } else if (scenario === 'ParaToPara') {
1276
+ return {
1277
+ parents: sdkCommon.Parents.ONE,
1278
+ interior: {
1279
+ X2: [{
1280
+ Parachain: paraId
1281
+ }, accountPayload]
1282
+ }
1283
+ };
1284
+ }
1285
+ return {
1286
+ parents: sdkCommon.Parents.ZERO,
1287
+ interior: createX1Payload(version, accountPayload)
1288
+ };
1289
+ };
1290
+ var createBeneficiaryLocation = function createBeneficiaryLocation(_ref2) {
1291
+ var api = _ref2.api,
1292
+ address = _ref2.address,
1293
+ version = _ref2.version;
1294
+ if (sdkCommon.isTLocation(address)) return address;
1295
+ var accountPayload = createAccountPayload(api, address);
1296
+ return {
1297
+ parents: sdkCommon.Parents.ZERO,
1298
+ interior: createX1Payload(version, accountPayload)
1299
+ };
1300
+ };
1301
+
943
1302
  var AssetHubPolkadot$1 = {
944
1303
  name: "Asset Hub",
945
1304
  info: "PolkadotAssetHub",
@@ -1061,2005 +1420,1647 @@ var Astar$1 = {
1061
1420
  ]
1062
1421
  };
1063
1422
  var BifrostPolkadot$1 = {
1064
- name: "Bifrost",
1065
- info: "bifrost",
1066
- paraId: 2030,
1067
- providers: [
1068
- {
1069
- name: "IBP1",
1070
- endpoint: "wss://bifrost-polkadot.ibp.network"
1071
- },
1072
- {
1073
- name: "IBP2",
1074
- endpoint: "wss://bifrost-polkadot.dotters.network"
1075
- },
1076
- {
1077
- name: "Liebi",
1078
- endpoint: "wss://hk.p.bifrost-rpc.liebi.com/ws"
1079
- },
1080
- {
1081
- name: "LiebiEU",
1082
- endpoint: "wss://eu.bifrost-polkadot-rpc.liebi.com/ws"
1083
- }
1084
- ]
1085
- };
1086
- var BridgeHubPolkadot$1 = {
1087
- name: "Bridge Hub",
1088
- info: "polkadotBridgeHub",
1089
- paraId: 1002,
1090
- providers: [
1091
- {
1092
- name: "Dwellir",
1093
- endpoint: "wss://bridge-hub-polkadot-rpc.n.dwellir.com"
1094
- },
1095
- {
1096
- name: "Dwellir Tunisia",
1097
- endpoint: "wss://polkadot-bridge-hub-rpc-tn.dwellir.com"
1098
- },
1099
- {
1100
- name: "IBP1",
1101
- endpoint: "wss://sys.ibp.network/bridgehub-polkadot"
1102
- },
1103
- {
1104
- name: "IBP2",
1105
- endpoint: "wss://bridge-hub-polkadot.dotters.network"
1106
- },
1107
- {
1108
- name: "LuckyFriday",
1109
- endpoint: "wss://rpc-bridge-hub-polkadot.luckyfriday.io"
1110
- },
1111
- {
1112
- name: "OnFinality",
1113
- endpoint: "wss://bridgehub-polkadot.api.onfinality.io/public-ws"
1114
- },
1115
- {
1116
- name: "Parity",
1117
- endpoint: "wss://polkadot-bridge-hub-rpc.polkadot.io"
1118
- },
1119
- {
1120
- name: "RadiumBlock",
1121
- endpoint: "wss://bridgehub-polkadot.public.curie.radiumblock.co/ws"
1122
- },
1123
- {
1124
- name: "Stakeworld",
1125
- endpoint: "wss://dot-rpc.stakeworld.io/bridgehub"
1126
- }
1127
- ]
1128
- };
1129
- var Centrifuge$1 = {
1130
- name: "Centrifuge",
1131
- info: "centrifuge",
1132
- paraId: 2031,
1133
- providers: [
1134
- {
1135
- name: "LuckyFriday",
1136
- endpoint: "wss://rpc-centrifuge.luckyfriday.io"
1137
- },
1138
- {
1139
- name: "OnFinality",
1140
- endpoint: "wss://centrifuge-parachain.api.onfinality.io/public-ws"
1141
- }
1142
- ]
1143
- };
1144
- var ComposableFinance$1 = {
1145
- name: "Composable Finance",
1146
- info: "composable",
1147
- paraId: 2019,
1148
- providers: [
1149
- {
1150
- name: "Composable",
1151
- endpoint: "wss://rpc.composable.finance"
1152
- }
1153
- ]
1154
- };
1155
- var Darwinia$1 = {
1156
- name: "Darwinia",
1157
- info: "darwinia",
1158
- paraId: 2046,
1159
- providers: [
1160
- {
1161
- name: "Darwinia",
1162
- endpoint: "wss://rpc.darwinia.network"
1163
- },
1164
- {
1165
- name: "Dwellir",
1166
- endpoint: "wss://darwinia-rpc.n.dwellir.com"
1167
- },
1168
- {
1169
- name: "Subquery",
1170
- endpoint: "wss://darwinia.rpc.subquery.network/public/ws"
1171
- }
1172
- ]
1173
- };
1174
- var EnergyWebX$1 = {
1175
- name: "Energy Web X",
1176
- info: "ewx",
1177
- paraId: 3345,
1178
- providers: [
1179
- {
1180
- name: "Energy Web",
1181
- endpoint: "wss://public-rpc.mainnet.energywebx.com/"
1182
- }
1183
- ]
1184
- };
1185
- var Hydration$1 = {
1186
- name: "Hydration",
1187
- info: "hydradx",
1188
- paraId: 2034,
1189
- providers: [
1190
- {
1191
- name: "Dwellir",
1192
- endpoint: "wss://hydration-rpc.n.dwellir.com"
1193
- },
1194
- {
1195
- name: "Helikon",
1196
- endpoint: "wss://rpc.helikon.io/hydradx"
1197
- },
1198
- {
1199
- name: "IBP1",
1200
- endpoint: "wss://hydration.ibp.network"
1201
- },
1202
- {
1203
- name: "IBP2",
1204
- endpoint: "wss://hydration.dotters.network"
1205
- }
1206
- ]
1207
- };
1208
- var IntegriteePolkadot$1 = {
1209
- name: "Integritee Network",
1210
- info: "integritee",
1211
- paraId: 2039,
1212
- providers: [
1213
- {
1214
- name: "Integritee",
1215
- endpoint: "wss://polkadot.api.integritee.network"
1216
- }
1217
- ]
1218
- };
1219
- var Interlay$1 = {
1220
- name: "Interlay",
1221
- info: "interlay",
1222
- paraId: 2032,
1223
- providers: [
1224
- {
1225
- name: "Kintsugi Labs",
1226
- endpoint: "wss://api.interlay.io/parachain"
1227
- },
1228
- {
1229
- name: "LuckyFriday",
1230
- endpoint: "wss://rpc-interlay.luckyfriday.io/"
1231
- }
1232
- ]
1233
- };
1234
- var Heima$1 = {
1235
- name: "Heima",
1236
- info: "heima",
1237
- paraId: 2013,
1238
- providers: [
1239
- {
1240
- name: "Dwellir",
1241
- endpoint: "wss://heima-rpc.n.dwellir.com"
1242
- },
1243
- {
1244
- name: "Heima",
1245
- endpoint: "wss://rpc.heima-parachain.heima.network"
1246
- }
1247
- ]
1248
- };
1249
- var Jamton$1 = {
1250
- name: "JAMTON",
1251
- info: "jamton",
1252
- paraId: 3397,
1253
- providers: [
1254
- {
1255
- name: "Jamton",
1256
- endpoint: "wss://rpc.jamton.network"
1257
- }
1258
- ]
1259
- };
1260
- var Moonbeam$1 = {
1261
- name: "Moonbeam",
1262
- info: "moonbeam",
1263
- paraId: 2004,
1264
- providers: [
1265
- {
1266
- name: "Allnodes",
1267
- endpoint: "wss://moonbeam-rpc.publicnode.com"
1268
- },
1269
- {
1270
- name: "Blast",
1271
- endpoint: "wss://moonbeam.public.blastapi.io"
1272
- },
1273
- {
1274
- name: "Dwellir",
1275
- endpoint: "wss://moonbeam-rpc.n.dwellir.com"
1276
- },
1277
- {
1278
- name: "IBP1",
1279
- endpoint: "wss://moonbeam.ibp.network"
1280
- },
1281
- {
1282
- name: "IBP2",
1283
- endpoint: "wss://moonbeam.dotters.network"
1284
- },
1285
- {
1286
- name: "Moonbeam Foundation",
1287
- endpoint: "wss://wss.api.moonbeam.network"
1288
- },
1289
- {
1290
- name: "OnFinality",
1291
- endpoint: "wss://moonbeam.api.onfinality.io/public-ws"
1292
- },
1293
- {
1294
- name: "RadiumBlock",
1295
- endpoint: "wss://moonbeam.public.curie.radiumblock.co/ws"
1296
- },
1297
- {
1298
- name: "UnitedBloc",
1299
- endpoint: "wss://moonbeam.unitedbloc.com"
1300
- }
1301
- ]
1302
- };
1303
- var CoretimePolkadot$1 = {
1304
- name: "Coretime",
1305
- info: "polkadotCoretime",
1306
- paraId: 1005,
1423
+ name: "Bifrost",
1424
+ info: "bifrost",
1425
+ paraId: 2030,
1307
1426
  providers: [
1308
- {
1309
- name: "Dwellir",
1310
- endpoint: "wss://coretime-polkadot-rpc.n.dwellir.com"
1311
- },
1312
1427
  {
1313
1428
  name: "IBP1",
1314
- endpoint: "wss://sys.ibp.network/coretime-polkadot"
1429
+ endpoint: "wss://bifrost-polkadot.ibp.network"
1315
1430
  },
1316
1431
  {
1317
1432
  name: "IBP2",
1318
- endpoint: "wss://coretime-polkadot.dotters.network"
1319
- },
1320
- {
1321
- name: "LuckyFriday",
1322
- endpoint: "wss://rpc-coretime-polkadot.luckyfriday.io"
1323
- },
1324
- {
1325
- name: "OnFinality",
1326
- endpoint: "wss://coretime-polkadot.api.onfinality.io/public-ws"
1433
+ endpoint: "wss://bifrost-polkadot.dotters.network"
1327
1434
  },
1328
1435
  {
1329
- name: "Parity",
1330
- endpoint: "wss://polkadot-coretime-rpc.polkadot.io"
1436
+ name: "Liebi",
1437
+ endpoint: "wss://hk.p.bifrost-rpc.liebi.com/ws"
1331
1438
  },
1332
1439
  {
1333
- name: "Stakeworld",
1334
- endpoint: "wss://dot-rpc.stakeworld.io/coretime"
1440
+ name: "LiebiEU",
1441
+ endpoint: "wss://eu.bifrost-polkadot-rpc.liebi.com/ws"
1335
1442
  }
1336
1443
  ]
1337
1444
  };
1338
- var Collectives$1 = {
1339
- name: "Collectives",
1340
- info: "polkadotCollectives",
1341
- paraId: 1001,
1445
+ var BridgeHubPolkadot$1 = {
1446
+ name: "Bridge Hub",
1447
+ info: "polkadotBridgeHub",
1448
+ paraId: 1002,
1342
1449
  providers: [
1343
1450
  {
1344
1451
  name: "Dwellir",
1345
- endpoint: "wss://collectives-polkadot-rpc.n.dwellir.com"
1452
+ endpoint: "wss://bridge-hub-polkadot-rpc.n.dwellir.com"
1346
1453
  },
1347
1454
  {
1348
1455
  name: "Dwellir Tunisia",
1349
- endpoint: "wss://polkadot-collectives-rpc-tn.dwellir.com"
1456
+ endpoint: "wss://polkadot-bridge-hub-rpc-tn.dwellir.com"
1350
1457
  },
1351
1458
  {
1352
1459
  name: "IBP1",
1353
- endpoint: "wss://sys.ibp.network/collectives-polkadot"
1460
+ endpoint: "wss://sys.ibp.network/bridgehub-polkadot"
1354
1461
  },
1355
1462
  {
1356
1463
  name: "IBP2",
1357
- endpoint: "wss://collectives-polkadot.dotters.network"
1464
+ endpoint: "wss://bridge-hub-polkadot.dotters.network"
1358
1465
  },
1359
1466
  {
1360
1467
  name: "LuckyFriday",
1361
- endpoint: "wss://rpc-collectives-polkadot.luckyfriday.io"
1468
+ endpoint: "wss://rpc-bridge-hub-polkadot.luckyfriday.io"
1362
1469
  },
1363
1470
  {
1364
1471
  name: "OnFinality",
1365
- endpoint: "wss://collectives.api.onfinality.io/public-ws"
1472
+ endpoint: "wss://bridgehub-polkadot.api.onfinality.io/public-ws"
1366
1473
  },
1367
1474
  {
1368
1475
  name: "Parity",
1369
- endpoint: "wss://polkadot-collectives-rpc.polkadot.io"
1476
+ endpoint: "wss://polkadot-bridge-hub-rpc.polkadot.io"
1370
1477
  },
1371
1478
  {
1372
1479
  name: "RadiumBlock",
1373
- endpoint: "wss://collectives.public.curie.radiumblock.co/ws"
1480
+ endpoint: "wss://bridgehub-polkadot.public.curie.radiumblock.co/ws"
1374
1481
  },
1375
1482
  {
1376
1483
  name: "Stakeworld",
1377
- endpoint: "wss://dot-rpc.stakeworld.io/collectives"
1484
+ endpoint: "wss://dot-rpc.stakeworld.io/bridgehub"
1378
1485
  }
1379
1486
  ]
1380
1487
  };
1381
- var Crust$1 = {
1382
- name: "Crust",
1383
- info: "crustParachain",
1384
- paraId: 2008,
1488
+ var Centrifuge$1 = {
1489
+ name: "Centrifuge",
1490
+ info: "centrifuge",
1491
+ paraId: 2031,
1385
1492
  providers: [
1386
1493
  {
1387
- name: "Crust",
1388
- endpoint: "wss://crust-parachain.crustapps.net"
1389
- },
1390
- {
1391
- name: "Crust APP",
1392
- endpoint: "wss://crust-parachain.crustnetwork.app"
1393
- },
1394
- {
1395
- name: "Crust CC",
1396
- endpoint: "wss://crust-parachain.crustnetwork.cc"
1494
+ name: "LuckyFriday",
1495
+ endpoint: "wss://rpc-centrifuge.luckyfriday.io"
1397
1496
  },
1398
1497
  {
1399
- name: "Crust XYZ",
1400
- endpoint: "wss://crust-parachain.crustnetwork.xyz"
1498
+ name: "OnFinality",
1499
+ endpoint: "wss://centrifuge-parachain.api.onfinality.io/public-ws"
1401
1500
  }
1402
1501
  ]
1403
1502
  };
1404
- var Manta$1 = {
1405
- name: "Manta",
1406
- info: "manta",
1407
- paraId: 2104,
1503
+ var ComposableFinance$1 = {
1504
+ name: "Composable Finance",
1505
+ info: "composable",
1506
+ paraId: 2019,
1408
1507
  providers: [
1409
1508
  {
1410
- name: "Manta Network",
1411
- endpoint: "wss://ws.manta.systems"
1509
+ name: "Composable",
1510
+ endpoint: "wss://rpc.composable.finance"
1412
1511
  }
1413
1512
  ]
1414
1513
  };
1415
- var Nodle$1 = {
1416
- name: "Nodle",
1417
- info: "nodle",
1418
- paraId: 2026,
1514
+ var Darwinia$1 = {
1515
+ name: "Darwinia",
1516
+ info: "darwinia",
1517
+ paraId: 2046,
1419
1518
  providers: [
1420
1519
  {
1421
- name: "Dwellir",
1422
- endpoint: "wss://nodle-rpc.dwellir.com"
1520
+ name: "Darwinia",
1521
+ endpoint: "wss://rpc.darwinia.network"
1423
1522
  },
1424
1523
  {
1425
- name: "OnFinality",
1426
- endpoint: "wss://nodle-parachain.api.onfinality.io/public-ws"
1427
- }
1428
- ]
1429
- };
1430
- var NeuroWeb$1 = {
1431
- name: "NeuroWeb",
1432
- info: "neuroweb",
1433
- paraId: 2043,
1434
- providers: [
1524
+ name: "Dwellir",
1525
+ endpoint: "wss://darwinia-rpc.n.dwellir.com"
1526
+ },
1435
1527
  {
1436
- name: "TraceLabs",
1437
- endpoint: "wss://parachain-rpc.origin-trail.network"
1528
+ name: "Subquery",
1529
+ endpoint: "wss://darwinia.rpc.subquery.network/public/ws"
1438
1530
  }
1439
1531
  ]
1440
1532
  };
1441
- var Pendulum$1 = {
1442
- name: "Pendulum",
1443
- info: "pendulum",
1444
- paraId: 2094,
1533
+ var EnergyWebX$1 = {
1534
+ name: "Energy Web X",
1535
+ info: "ewx",
1536
+ paraId: 3345,
1445
1537
  providers: [
1446
1538
  {
1447
- name: "PendulumChain",
1448
- endpoint: "wss://rpc-pendulum.prd.pendulumchain.tech"
1539
+ name: "Energy Web",
1540
+ endpoint: "wss://public-rpc.mainnet.energywebx.com/"
1449
1541
  }
1450
1542
  ]
1451
1543
  };
1452
- var Phala$1 = {
1453
- name: "Phala Network",
1454
- info: "phala",
1455
- paraId: 2035,
1544
+ var Hydration$1 = {
1545
+ name: "Hydration",
1546
+ info: "hydradx",
1547
+ paraId: 2034,
1456
1548
  providers: [
1457
1549
  {
1458
1550
  name: "Dwellir",
1459
- endpoint: "wss://phala-rpc.n.dwellir.com"
1551
+ endpoint: "wss://hydration-rpc.n.dwellir.com"
1460
1552
  },
1461
1553
  {
1462
1554
  name: "Helikon",
1463
- endpoint: "wss://rpc.helikon.io/phala"
1464
- },
1465
- {
1466
- name: "OnFinality",
1467
- endpoint: "wss://phala.api.onfinality.io/public-ws"
1555
+ endpoint: "wss://rpc.helikon.io/hydradx"
1468
1556
  },
1469
- {
1470
- name: "RadiumBlock",
1471
- endpoint: "wss://phala.public.curie.radiumblock.co/ws"
1472
- }
1473
- ]
1474
- };
1475
- var Subsocial$1 = {
1476
- name: "Subsocial",
1477
- info: "subsocial",
1478
- paraId: 2101,
1479
- providers: [
1480
- {
1481
- name: "Dappforce",
1482
- endpoint: "wss://para.subsocial.network"
1483
- }
1484
- ]
1485
- };
1486
- var KiltSpiritnet$1 = {
1487
- name: "KILT Spiritnet",
1488
- info: "kilt",
1489
- paraId: 2086,
1490
- providers: [
1491
1557
  {
1492
1558
  name: "IBP1",
1493
- endpoint: "wss://kilt.ibp.network"
1559
+ endpoint: "wss://hydration.ibp.network"
1494
1560
  },
1495
1561
  {
1496
1562
  name: "IBP2",
1497
- endpoint: "wss://kilt.dotters.network"
1498
- },
1499
- {
1500
- name: "KILT Foundation",
1501
- endpoint: "wss://spiritnet.kilt.io/"
1563
+ endpoint: "wss://hydration.dotters.network"
1502
1564
  }
1503
1565
  ]
1504
1566
  };
1505
- var Curio$1 = {
1506
- name: "Curio",
1507
- info: "curio",
1508
- paraId: 3339,
1567
+ var IntegriteePolkadot$1 = {
1568
+ name: "Integritee Network",
1569
+ info: "integritee",
1570
+ paraId: 2039,
1509
1571
  providers: [
1510
1572
  {
1511
- name: "Curio",
1512
- endpoint: "wss://parachain.curioinvest.com/"
1573
+ name: "Integritee",
1574
+ endpoint: "wss://polkadot.api.integritee.network"
1513
1575
  }
1514
1576
  ]
1515
1577
  };
1516
- var Mythos$1 = {
1517
- name: "Mythos",
1518
- info: "mythos",
1519
- paraId: 3369,
1578
+ var Interlay$1 = {
1579
+ name: "Interlay",
1580
+ info: "interlay",
1581
+ paraId: 2032,
1520
1582
  providers: [
1521
1583
  {
1522
- name: "Helikon",
1523
- endpoint: "wss://rpc.helikon.io/mythos"
1524
- },
1525
- {
1526
- name: "IBP1",
1527
- endpoint: "wss://mythos.ibp.network"
1528
- },
1529
- {
1530
- name: "IBP2",
1531
- endpoint: "wss://mythos.dotters.network"
1584
+ name: "Kintsugi Labs",
1585
+ endpoint: "wss://api.interlay.io/parachain"
1532
1586
  },
1533
1587
  {
1534
- name: "parity",
1535
- endpoint: "wss://polkadot-mythos-rpc.polkadot.io"
1536
- }
1537
- ]
1538
- };
1539
- var Peaq$1 = {
1540
- name: "peaq",
1541
- info: "peaq",
1542
- paraId: 3338,
1543
- providers: [
1544
- {
1545
- name: "OnFinality",
1546
- endpoint: "wss://peaq.api.onfinality.io/public-ws"
1588
+ name: "LuckyFriday",
1589
+ endpoint: "wss://rpc-interlay.luckyfriday.io/"
1547
1590
  }
1548
1591
  ]
1549
1592
  };
1550
- var Polimec$1 = {
1551
- name: "Polimec",
1552
- info: "polimec",
1553
- paraId: 3344,
1593
+ var Heima$1 = {
1594
+ name: "Heima",
1595
+ info: "heima",
1596
+ paraId: 2013,
1554
1597
  providers: [
1555
1598
  {
1556
- name: "Amforc",
1557
- endpoint: "wss://polimec.rpc.amforc.com"
1558
- },
1559
- {
1560
- name: "Helikon",
1561
- endpoint: "wss://rpc.helikon.io/polimec"
1562
- },
1563
- {
1564
- name: "IBP1",
1565
- endpoint: "wss://polimec.ibp.network"
1566
- },
1567
- {
1568
- name: "IBP2",
1569
- endpoint: "wss://polimec.dotters.network"
1599
+ name: "Dwellir",
1600
+ endpoint: "wss://heima-rpc.n.dwellir.com"
1570
1601
  },
1571
1602
  {
1572
- name: "Polimec Foundation",
1573
- endpoint: "wss://rpc.polimec.org"
1603
+ name: "Heima",
1604
+ endpoint: "wss://rpc.heima-parachain.heima.network"
1574
1605
  }
1575
1606
  ]
1576
1607
  };
1577
- var RobonomicsPolkadot$1 = {
1578
- name: "Robonomics",
1579
- info: "robonomics",
1580
- paraId: 3388,
1608
+ var Jamton$1 = {
1609
+ name: "JAMTON",
1610
+ info: "jamton",
1611
+ paraId: 3397,
1581
1612
  providers: [
1582
1613
  {
1583
- name: "Airalab",
1584
- endpoint: "wss://polkadot.rpc.robonomics.network/"
1614
+ name: "Jamton",
1615
+ endpoint: "wss://rpc.jamton.network"
1585
1616
  }
1586
1617
  ]
1587
1618
  };
1588
- var PeoplePolkadot$1 = {
1589
- name: "People",
1590
- info: "polkadotPeople",
1591
- paraId: 1004,
1619
+ var Moonbeam$1 = {
1620
+ name: "Moonbeam",
1621
+ info: "moonbeam",
1622
+ paraId: 2004,
1592
1623
  providers: [
1624
+ {
1625
+ name: "Allnodes",
1626
+ endpoint: "wss://moonbeam-rpc.publicnode.com"
1627
+ },
1628
+ {
1629
+ name: "Blast",
1630
+ endpoint: "wss://moonbeam.public.blastapi.io"
1631
+ },
1593
1632
  {
1594
1633
  name: "Dwellir",
1595
- endpoint: "wss://people-polkadot-rpc.n.dwellir.com"
1634
+ endpoint: "wss://moonbeam-rpc.n.dwellir.com"
1596
1635
  },
1597
1636
  {
1598
1637
  name: "IBP1",
1599
- endpoint: "wss://sys.ibp.network/people-polkadot"
1638
+ endpoint: "wss://moonbeam.ibp.network"
1600
1639
  },
1601
1640
  {
1602
1641
  name: "IBP2",
1603
- endpoint: "wss://people-polkadot.dotters.network"
1642
+ endpoint: "wss://moonbeam.dotters.network"
1604
1643
  },
1605
1644
  {
1606
- name: "LuckyFriday",
1607
- endpoint: "wss://rpc-people-polkadot.luckyfriday.io"
1645
+ name: "Moonbeam Foundation",
1646
+ endpoint: "wss://wss.api.moonbeam.network"
1608
1647
  },
1609
1648
  {
1610
1649
  name: "OnFinality",
1611
- endpoint: "wss://people-polkadot.api.onfinality.io/public-ws"
1650
+ endpoint: "wss://moonbeam.api.onfinality.io/public-ws"
1612
1651
  },
1613
1652
  {
1614
- name: "Parity",
1615
- endpoint: "wss://polkadot-people-rpc.polkadot.io"
1653
+ name: "RadiumBlock",
1654
+ endpoint: "wss://moonbeam.public.curie.radiumblock.co/ws"
1616
1655
  },
1617
1656
  {
1618
- name: "Stakeworld",
1619
- endpoint: "wss://dot-rpc.stakeworld.io/people"
1657
+ name: "UnitedBloc",
1658
+ endpoint: "wss://moonbeam.unitedbloc.com"
1620
1659
  }
1621
1660
  ]
1622
1661
  };
1623
- var Unique$1 = {
1624
- name: "Unique Network",
1625
- info: "unique",
1626
- paraId: 2037,
1662
+ var CoretimePolkadot$1 = {
1663
+ name: "Coretime",
1664
+ info: "polkadotCoretime",
1665
+ paraId: 1005,
1627
1666
  providers: [
1628
1667
  {
1629
- name: "Geo Load Balancer",
1630
- endpoint: "wss://ws.unique.network"
1668
+ name: "Dwellir",
1669
+ endpoint: "wss://coretime-polkadot-rpc.n.dwellir.com"
1631
1670
  },
1632
1671
  {
1633
1672
  name: "IBP1",
1634
- endpoint: "wss://unique.ibp.network"
1673
+ endpoint: "wss://sys.ibp.network/coretime-polkadot"
1635
1674
  },
1636
1675
  {
1637
1676
  name: "IBP2",
1638
- endpoint: "wss://unique.dotters.network"
1677
+ endpoint: "wss://coretime-polkadot.dotters.network"
1639
1678
  },
1640
1679
  {
1641
- name: "Unique America",
1642
- endpoint: "wss://us-ws.unique.network"
1680
+ name: "LuckyFriday",
1681
+ endpoint: "wss://rpc-coretime-polkadot.luckyfriday.io"
1643
1682
  },
1644
1683
  {
1645
- name: "Unique Asia",
1646
- endpoint: "wss://asia-ws.unique.network"
1684
+ name: "OnFinality",
1685
+ endpoint: "wss://coretime-polkadot.api.onfinality.io/public-ws"
1647
1686
  },
1648
1687
  {
1649
- name: "Unique Europe",
1650
- endpoint: "wss://eu-ws.unique.network"
1651
- }
1652
- ]
1653
- };
1654
- var Xode$1 = {
1655
- name: "Xode",
1656
- info: "xode",
1657
- paraId: 3417,
1658
- providers: [
1659
- {
1660
- name: "XodeCommunity",
1661
- endpoint: "wss://polkadot-rpcnode.xode.net"
1688
+ name: "Parity",
1689
+ endpoint: "wss://polkadot-coretime-rpc.polkadot.io"
1662
1690
  },
1663
1691
  {
1664
- name: "Zeeve",
1665
- endpoint: "wss://xode-polkadot-rpc-01.zeeve.net/y0yxg038wn1fncc/rpc"
1692
+ name: "Stakeworld",
1693
+ endpoint: "wss://dot-rpc.stakeworld.io/coretime"
1666
1694
  }
1667
1695
  ]
1668
1696
  };
1669
- var AssetHubKusama$1 = {
1670
- name: "Asset Hub",
1671
- info: "KusamaAssetHub",
1672
- paraId: 1000,
1697
+ var Collectives$1 = {
1698
+ name: "Collectives",
1699
+ info: "polkadotCollectives",
1700
+ paraId: 1001,
1673
1701
  providers: [
1674
1702
  {
1675
1703
  name: "Dwellir",
1676
- endpoint: "wss://asset-hub-kusama-rpc.n.dwellir.com"
1704
+ endpoint: "wss://collectives-polkadot-rpc.n.dwellir.com"
1677
1705
  },
1678
1706
  {
1679
1707
  name: "Dwellir Tunisia",
1680
- endpoint: "wss://statemine-rpc-tn.dwellir.com"
1708
+ endpoint: "wss://polkadot-collectives-rpc-tn.dwellir.com"
1681
1709
  },
1682
1710
  {
1683
1711
  name: "IBP1",
1684
- endpoint: "wss://sys.ibp.network/asset-hub-kusama"
1712
+ endpoint: "wss://sys.ibp.network/collectives-polkadot"
1685
1713
  },
1686
1714
  {
1687
1715
  name: "IBP2",
1688
- endpoint: "wss://asset-hub-kusama.dotters.network"
1716
+ endpoint: "wss://collectives-polkadot.dotters.network"
1689
1717
  },
1690
1718
  {
1691
1719
  name: "LuckyFriday",
1692
- endpoint: "wss://rpc-asset-hub-kusama.luckyfriday.io"
1720
+ endpoint: "wss://rpc-collectives-polkadot.luckyfriday.io"
1693
1721
  },
1694
1722
  {
1695
1723
  name: "OnFinality",
1696
- endpoint: "wss://assethub-kusama.api.onfinality.io/public-ws"
1724
+ endpoint: "wss://collectives.api.onfinality.io/public-ws"
1697
1725
  },
1698
1726
  {
1699
1727
  name: "Parity",
1700
- endpoint: "wss://kusama-asset-hub-rpc.polkadot.io"
1728
+ endpoint: "wss://polkadot-collectives-rpc.polkadot.io"
1701
1729
  },
1702
1730
  {
1703
1731
  name: "RadiumBlock",
1704
- endpoint: "wss://statemine.public.curie.radiumblock.co/ws"
1732
+ endpoint: "wss://collectives.public.curie.radiumblock.co/ws"
1705
1733
  },
1706
1734
  {
1707
1735
  name: "Stakeworld",
1708
- endpoint: "wss://ksm-rpc.stakeworld.io/assethub"
1736
+ endpoint: "wss://dot-rpc.stakeworld.io/collectives"
1709
1737
  }
1710
1738
  ]
1711
1739
  };
1712
- var BridgeHubKusama$1 = {
1713
- name: "Bridge Hub",
1714
- info: "kusamaBridgeHub",
1715
- paraId: 1002,
1740
+ var Crust$1 = {
1741
+ name: "Crust",
1742
+ info: "crustParachain",
1743
+ paraId: 2008,
1716
1744
  providers: [
1717
1745
  {
1718
- name: "Dwellir",
1719
- endpoint: "wss://bridge-hub-kusama-rpc.n.dwellir.com"
1746
+ name: "Crust",
1747
+ endpoint: "wss://crust-parachain.crustapps.net"
1720
1748
  },
1721
1749
  {
1722
- name: "Dwellir Tunisia",
1723
- endpoint: "wss://kusama-bridge-hub-rpc-tn.dwellir.com"
1750
+ name: "Crust APP",
1751
+ endpoint: "wss://crust-parachain.crustnetwork.app"
1724
1752
  },
1725
1753
  {
1726
- name: "IBP1",
1727
- endpoint: "wss://sys.ibp.network/bridgehub-kusama"
1754
+ name: "Crust CC",
1755
+ endpoint: "wss://crust-parachain.crustnetwork.cc"
1728
1756
  },
1729
1757
  {
1730
- name: "IBP2",
1731
- endpoint: "wss://bridge-hub-kusama.dotters.network"
1732
- },
1758
+ name: "Crust XYZ",
1759
+ endpoint: "wss://crust-parachain.crustnetwork.xyz"
1760
+ }
1761
+ ]
1762
+ };
1763
+ var Manta$1 = {
1764
+ name: "Manta",
1765
+ info: "manta",
1766
+ paraId: 2104,
1767
+ providers: [
1733
1768
  {
1734
- name: "LuckyFriday",
1735
- endpoint: "wss://rpc-bridge-hub-kusama.luckyfriday.io"
1769
+ name: "Manta Network",
1770
+ endpoint: "wss://ws.manta.systems"
1771
+ }
1772
+ ]
1773
+ };
1774
+ var Nodle$1 = {
1775
+ name: "Nodle",
1776
+ info: "nodle",
1777
+ paraId: 2026,
1778
+ providers: [
1779
+ {
1780
+ name: "Dwellir",
1781
+ endpoint: "wss://nodle-rpc.dwellir.com"
1736
1782
  },
1737
1783
  {
1738
1784
  name: "OnFinality",
1739
- endpoint: "wss://bridgehub-kusama.api.onfinality.io/public-ws"
1785
+ endpoint: "wss://nodle-parachain.api.onfinality.io/public-ws"
1786
+ }
1787
+ ]
1788
+ };
1789
+ var NeuroWeb$1 = {
1790
+ name: "NeuroWeb",
1791
+ info: "neuroweb",
1792
+ paraId: 2043,
1793
+ providers: [
1794
+ {
1795
+ name: "TraceLabs",
1796
+ endpoint: "wss://parachain-rpc.origin-trail.network"
1797
+ }
1798
+ ]
1799
+ };
1800
+ var Pendulum$1 = {
1801
+ name: "Pendulum",
1802
+ info: "pendulum",
1803
+ paraId: 2094,
1804
+ providers: [
1805
+ {
1806
+ name: "PendulumChain",
1807
+ endpoint: "wss://rpc-pendulum.prd.pendulumchain.tech"
1808
+ }
1809
+ ]
1810
+ };
1811
+ var Phala$1 = {
1812
+ name: "Phala Network",
1813
+ info: "phala",
1814
+ paraId: 2035,
1815
+ providers: [
1816
+ {
1817
+ name: "Dwellir",
1818
+ endpoint: "wss://phala-rpc.n.dwellir.com"
1740
1819
  },
1741
1820
  {
1742
- name: "Parity",
1743
- endpoint: "wss://kusama-bridge-hub-rpc.polkadot.io"
1821
+ name: "Helikon",
1822
+ endpoint: "wss://rpc.helikon.io/phala"
1744
1823
  },
1745
1824
  {
1746
- name: "RadiumBlock",
1747
- endpoint: "wss://bridgehub-kusama.public.curie.radiumblock.co/ws"
1825
+ name: "OnFinality",
1826
+ endpoint: "wss://phala.api.onfinality.io/public-ws"
1748
1827
  },
1749
1828
  {
1750
- name: "Stakeworld",
1751
- endpoint: "wss://ksm-rpc.stakeworld.io/bridgehub"
1829
+ name: "RadiumBlock",
1830
+ endpoint: "wss://phala.public.curie.radiumblock.co/ws"
1752
1831
  }
1753
1832
  ]
1754
1833
  };
1755
- var IntegriteeKusama$1 = {
1756
- name: "Integritee Network",
1757
- info: "integritee",
1758
- paraId: 2015,
1834
+ var Subsocial$1 = {
1835
+ name: "Subsocial",
1836
+ info: "subsocial",
1837
+ paraId: 2101,
1759
1838
  providers: [
1760
1839
  {
1761
- name: "Integritee",
1762
- endpoint: "wss://kusama.api.integritee.network"
1840
+ name: "Dappforce",
1841
+ endpoint: "wss://para.subsocial.network"
1842
+ }
1843
+ ]
1844
+ };
1845
+ var KiltSpiritnet$1 = {
1846
+ name: "KILT Spiritnet",
1847
+ info: "kilt",
1848
+ paraId: 2086,
1849
+ providers: [
1850
+ {
1851
+ name: "IBP1",
1852
+ endpoint: "wss://kilt.ibp.network"
1763
1853
  },
1764
1854
  {
1765
- name: "OnFinality",
1766
- endpoint: "wss://integritee-kusama.api.onfinality.io/public-ws"
1855
+ name: "IBP2",
1856
+ endpoint: "wss://kilt.dotters.network"
1857
+ },
1858
+ {
1859
+ name: "KILT Foundation",
1860
+ endpoint: "wss://spiritnet.kilt.io/"
1767
1861
  }
1768
1862
  ]
1769
1863
  };
1770
- var Karura$1 = {
1771
- name: "Karura",
1772
- info: "karura",
1773
- paraId: 2000,
1864
+ var Curio$1 = {
1865
+ name: "Curio",
1866
+ info: "curio",
1867
+ paraId: 3339,
1774
1868
  providers: [
1775
1869
  {
1776
- name: "Acala Foundation 0",
1777
- endpoint: "wss://karura-rpc-0.aca-api.network"
1778
- },
1870
+ name: "Curio",
1871
+ endpoint: "wss://parachain.curioinvest.com/"
1872
+ }
1873
+ ]
1874
+ };
1875
+ var Mythos$1 = {
1876
+ name: "Mythos",
1877
+ info: "mythos",
1878
+ paraId: 3369,
1879
+ providers: [
1779
1880
  {
1780
- name: "Acala Foundation 1",
1781
- endpoint: "wss://karura-rpc-1.aca-api.network"
1881
+ name: "Helikon",
1882
+ endpoint: "wss://rpc.helikon.io/mythos"
1782
1883
  },
1783
1884
  {
1784
- name: "Acala Foundation 2",
1785
- endpoint: "wss://karura-rpc-2.aca-api.network/ws"
1885
+ name: "IBP1",
1886
+ endpoint: "wss://mythos.ibp.network"
1786
1887
  },
1787
1888
  {
1788
- name: "Acala Foundation 3",
1789
- endpoint: "wss://karura-rpc-3.aca-api.network/ws"
1889
+ name: "IBP2",
1890
+ endpoint: "wss://mythos.dotters.network"
1790
1891
  },
1791
1892
  {
1792
- name: "Dwellir",
1793
- endpoint: "wss://karura-rpc.n.dwellir.com"
1893
+ name: "parity",
1894
+ endpoint: "wss://polkadot-mythos-rpc.polkadot.io"
1794
1895
  }
1795
1896
  ]
1796
1897
  };
1797
- var Kintsugi$1 = {
1798
- name: "Kintsugi BTC",
1799
- info: "kintsugi",
1800
- paraId: 2092,
1898
+ var Peaq$1 = {
1899
+ name: "peaq",
1900
+ info: "peaq",
1901
+ paraId: 3338,
1801
1902
  providers: [
1802
- {
1803
- name: "Kintsugi Labs",
1804
- endpoint: "wss://api-kusama.interlay.io/parachain"
1805
- },
1806
1903
  {
1807
1904
  name: "OnFinality",
1808
- endpoint: "wss://kintsugi.api.onfinality.io/public-ws"
1905
+ endpoint: "wss://peaq.api.onfinality.io/public-ws"
1809
1906
  }
1810
1907
  ]
1811
1908
  };
1812
- var Moonriver$1 = {
1813
- name: "Moonriver",
1814
- info: "moonriver",
1815
- paraId: 2023,
1909
+ var Polimec$1 = {
1910
+ name: "Polimec",
1911
+ info: "polimec",
1912
+ paraId: 3344,
1816
1913
  providers: [
1817
1914
  {
1818
- name: "Allnodes",
1819
- endpoint: "wss://moonriver-rpc.publicnode.com"
1915
+ name: "Amforc",
1916
+ endpoint: "wss://polimec.rpc.amforc.com"
1820
1917
  },
1821
1918
  {
1822
- name: "Dwellir",
1823
- endpoint: "wss://moonriver-rpc.n.dwellir.com"
1919
+ name: "Helikon",
1920
+ endpoint: "wss://rpc.helikon.io/polimec"
1824
1921
  },
1825
1922
  {
1826
- name: "Moonbeam Foundation",
1827
- endpoint: "wss://wss.api.moonriver.moonbeam.network"
1923
+ name: "IBP1",
1924
+ endpoint: "wss://polimec.ibp.network"
1828
1925
  },
1829
1926
  {
1830
- name: "OnFinality",
1831
- endpoint: "wss://moonriver.api.onfinality.io/public-ws"
1927
+ name: "IBP2",
1928
+ endpoint: "wss://polimec.dotters.network"
1832
1929
  },
1833
1930
  {
1834
- name: "RadiumBlock",
1835
- endpoint: "wss://moonriver.public.curie.radiumblock.co/ws"
1836
- },
1931
+ name: "Polimec Foundation",
1932
+ endpoint: "wss://rpc.polimec.org"
1933
+ }
1934
+ ]
1935
+ };
1936
+ var RobonomicsPolkadot$1 = {
1937
+ name: "Robonomics",
1938
+ info: "robonomics",
1939
+ paraId: 3388,
1940
+ providers: [
1837
1941
  {
1838
- name: "UnitedBloc",
1839
- endpoint: "wss://moonriver.unitedbloc.com"
1942
+ name: "Airalab",
1943
+ endpoint: "wss://polkadot.rpc.robonomics.network/"
1840
1944
  }
1841
1945
  ]
1842
1946
  };
1843
- var CoretimeKusama$1 = {
1844
- name: "Coretime",
1845
- info: "kusamaCoretime",
1846
- paraId: 1005,
1947
+ var PeoplePolkadot$1 = {
1948
+ name: "People",
1949
+ info: "polkadotPeople",
1950
+ paraId: 1004,
1847
1951
  providers: [
1848
1952
  {
1849
1953
  name: "Dwellir",
1850
- endpoint: "wss://coretime-kusama-rpc.n.dwellir.com"
1954
+ endpoint: "wss://people-polkadot-rpc.n.dwellir.com"
1851
1955
  },
1852
1956
  {
1853
1957
  name: "IBP1",
1854
- endpoint: "wss://sys.ibp.network/coretime-kusama"
1958
+ endpoint: "wss://sys.ibp.network/people-polkadot"
1855
1959
  },
1856
1960
  {
1857
1961
  name: "IBP2",
1858
- endpoint: "wss://coretime-kusama.dotters.network"
1962
+ endpoint: "wss://people-polkadot.dotters.network"
1859
1963
  },
1860
1964
  {
1861
1965
  name: "LuckyFriday",
1862
- endpoint: "wss://rpc-coretime-kusama.luckyfriday.io"
1966
+ endpoint: "wss://rpc-people-polkadot.luckyfriday.io"
1863
1967
  },
1864
1968
  {
1865
1969
  name: "OnFinality",
1866
- endpoint: "wss://coretime-kusama.api.onfinality.io/public-ws"
1970
+ endpoint: "wss://people-polkadot.api.onfinality.io/public-ws"
1867
1971
  },
1868
1972
  {
1869
1973
  name: "Parity",
1870
- endpoint: "wss://kusama-coretime-rpc.polkadot.io"
1974
+ endpoint: "wss://polkadot-people-rpc.polkadot.io"
1871
1975
  },
1872
1976
  {
1873
1977
  name: "Stakeworld",
1874
- endpoint: "wss://ksm-rpc.stakeworld.io/coretime"
1978
+ endpoint: "wss://dot-rpc.stakeworld.io/people"
1875
1979
  }
1876
1980
  ]
1877
1981
  };
1878
- var Encointer$1 = {
1879
- name: "Encointer Network",
1880
- info: "encointer",
1881
- paraId: 1001,
1982
+ var Unique$1 = {
1983
+ name: "Unique Network",
1984
+ info: "unique",
1985
+ paraId: 2037,
1882
1986
  providers: [
1883
1987
  {
1884
- name: "Dwellir",
1885
- endpoint: "wss://encointer-kusama-rpc.n.dwellir.com"
1886
- },
1887
- {
1888
- name: "Encointer Association",
1889
- endpoint: "wss://kusama.api.encointer.org"
1988
+ name: "Geo Load Balancer",
1989
+ endpoint: "wss://ws.unique.network"
1890
1990
  },
1891
1991
  {
1892
1992
  name: "IBP1",
1893
- endpoint: "wss://sys.ibp.network/encointer-kusama"
1993
+ endpoint: "wss://unique.ibp.network"
1894
1994
  },
1895
1995
  {
1896
1996
  name: "IBP2",
1897
- endpoint: "wss://encointer-kusama.dotters.network"
1997
+ endpoint: "wss://unique.dotters.network"
1898
1998
  },
1899
1999
  {
1900
- name: "LuckyFriday",
1901
- endpoint: "wss://rpc-encointer-kusama.luckyfriday.io"
1902
- }
1903
- ]
1904
- };
1905
- var Altair$1 = {
1906
- name: "Altair",
1907
- info: "altair",
1908
- paraId: 2088,
1909
- providers: [
1910
- {
1911
- name: "OnFinality",
1912
- endpoint: "wss://altair.api.onfinality.io/public-ws"
1913
- }
1914
- ]
1915
- };
1916
- var Amplitude$1 = {
1917
- name: "Amplitude",
1918
- info: "amplitude",
1919
- paraId: 2124,
1920
- providers: [
1921
- {
1922
- name: "PendulumChain",
1923
- endpoint: "wss://rpc-amplitude.pendulumchain.tech"
1924
- }
1925
- ]
1926
- };
1927
- var Basilisk$1 = {
1928
- name: "Basilisk",
1929
- info: "basilisk",
1930
- paraId: 2090,
1931
- providers: [
2000
+ name: "Unique America",
2001
+ endpoint: "wss://us-ws.unique.network"
2002
+ },
1932
2003
  {
1933
- name: "Basilisk",
1934
- endpoint: "wss://rpc.basilisk.cloud"
2004
+ name: "Unique Asia",
2005
+ endpoint: "wss://asia-ws.unique.network"
1935
2006
  },
1936
2007
  {
1937
- name: "Dwellir",
1938
- endpoint: "wss://basilisk-rpc.n.dwellir.com"
2008
+ name: "Unique Europe",
2009
+ endpoint: "wss://eu-ws.unique.network"
1939
2010
  }
1940
2011
  ]
1941
2012
  };
1942
- var BifrostKusama$1 = {
1943
- name: "Bifrost",
1944
- info: "bifrost",
1945
- paraId: 2001,
2013
+ var Xode$1 = {
2014
+ name: "Xode",
2015
+ info: "xode",
2016
+ paraId: 3417,
1946
2017
  providers: [
1947
2018
  {
1948
- name: "Liebi",
1949
- endpoint: "wss://bifrost-rpc.liebi.com/ws"
2019
+ name: "XodeCommunity",
2020
+ endpoint: "wss://polkadot-rpcnode.xode.net"
1950
2021
  },
1951
2022
  {
1952
- name: "LiebiUS",
1953
- endpoint: "wss://us.bifrost-rpc.liebi.com/ws"
2023
+ name: "Zeeve",
2024
+ endpoint: "wss://xode-polkadot-rpc-01.zeeve.net/y0yxg038wn1fncc/rpc"
1954
2025
  }
1955
2026
  ]
1956
2027
  };
1957
- var CrustShadow$1 = {
1958
- name: "Crust Shadow",
1959
- info: "shadow",
1960
- paraId: 2012,
2028
+ var AssetHubKusama$1 = {
2029
+ name: "Asset Hub",
2030
+ info: "KusamaAssetHub",
2031
+ paraId: 1000,
1961
2032
  providers: [
1962
2033
  {
1963
- name: "Crust",
1964
- endpoint: "wss://rpc-shadow.crust.network/"
2034
+ name: "Dwellir",
2035
+ endpoint: "wss://asset-hub-kusama-rpc.n.dwellir.com"
1965
2036
  },
1966
2037
  {
1967
- name: "Crust APP",
1968
- endpoint: "wss://rpc-shadow.crustnetwork.app"
2038
+ name: "Dwellir Tunisia",
2039
+ endpoint: "wss://statemine-rpc-tn.dwellir.com"
1969
2040
  },
1970
2041
  {
1971
- name: "Crust CC",
1972
- endpoint: "wss://rpc-shadow.crustnetwork.cc"
2042
+ name: "IBP1",
2043
+ endpoint: "wss://sys.ibp.network/asset-hub-kusama"
1973
2044
  },
1974
2045
  {
1975
- name: "Crust XYZ",
1976
- endpoint: "wss://rpc-shadow.crustnetwork.xyz"
1977
- }
1978
- ]
1979
- };
1980
- var Crab$1 = {
1981
- name: "Crab",
1982
- info: "crab",
1983
- paraId: 2105,
1984
- providers: [
1985
- {
1986
- name: "Darwinia",
1987
- endpoint: "wss://crab-rpc.darwinia.network/"
2046
+ name: "IBP2",
2047
+ endpoint: "wss://asset-hub-kusama.dotters.network"
1988
2048
  },
1989
2049
  {
1990
- name: "Dwellir",
1991
- endpoint: "wss://darwiniacrab-rpc.n.dwellir.com"
1992
- }
1993
- ]
1994
- };
1995
- var Laos$1 = {
1996
- name: "Laos",
1997
- info: "laos",
1998
- paraId: 3370,
1999
- providers: [
2000
- {
2001
- name: "laosfoundation.io",
2002
- endpoint: "wss://rpc.laos.laosfoundation.io"
2003
- }
2004
- ]
2005
- };
2006
- var Quartz$1 = {
2007
- name: "QUARTZ by UNIQUE",
2008
- info: "quartz",
2009
- paraId: 2095,
2010
- providers: [
2050
+ name: "LuckyFriday",
2051
+ endpoint: "wss://rpc-asset-hub-kusama.luckyfriday.io"
2052
+ },
2011
2053
  {
2012
- name: "Geo Load Balancer",
2013
- endpoint: "wss://ws-quartz.unique.network"
2054
+ name: "OnFinality",
2055
+ endpoint: "wss://assethub-kusama.api.onfinality.io/public-ws"
2014
2056
  },
2015
2057
  {
2016
- name: "Unique Europe",
2017
- endpoint: "wss://eu-ws-quartz.unique.network"
2018
- }
2019
- ]
2020
- };
2021
- var RobonomicsKusama$1 = {
2022
- name: "Robonomics",
2023
- info: "robonomics",
2024
- paraId: 2048,
2025
- providers: [
2058
+ name: "Parity",
2059
+ endpoint: "wss://kusama-asset-hub-rpc.polkadot.io"
2060
+ },
2026
2061
  {
2027
- name: "Airalab",
2028
- endpoint: "wss://kusama.rpc.robonomics.network/"
2062
+ name: "RadiumBlock",
2063
+ endpoint: "wss://statemine.public.curie.radiumblock.co/ws"
2064
+ },
2065
+ {
2066
+ name: "Stakeworld",
2067
+ endpoint: "wss://ksm-rpc.stakeworld.io/assethub"
2029
2068
  }
2030
2069
  ]
2031
2070
  };
2032
- var PeopleKusama$1 = {
2033
- name: "People",
2034
- info: "kusamaPeople",
2035
- paraId: 1004,
2071
+ var BridgeHubKusama$1 = {
2072
+ name: "Bridge Hub",
2073
+ info: "kusamaBridgeHub",
2074
+ paraId: 1002,
2036
2075
  providers: [
2037
2076
  {
2038
2077
  name: "Dwellir",
2039
- endpoint: "wss://people-kusama-rpc.n.dwellir.com"
2078
+ endpoint: "wss://bridge-hub-kusama-rpc.n.dwellir.com"
2040
2079
  },
2041
2080
  {
2042
- name: "Helixstreet",
2043
- endpoint: "wss://rpc-people-kusama.helixstreet.io"
2081
+ name: "Dwellir Tunisia",
2082
+ endpoint: "wss://kusama-bridge-hub-rpc-tn.dwellir.com"
2044
2083
  },
2045
2084
  {
2046
2085
  name: "IBP1",
2047
- endpoint: "wss://sys.ibp.network/people-kusama"
2086
+ endpoint: "wss://sys.ibp.network/bridgehub-kusama"
2048
2087
  },
2049
2088
  {
2050
2089
  name: "IBP2",
2051
- endpoint: "wss://people-kusama.dotters.network"
2090
+ endpoint: "wss://bridge-hub-kusama.dotters.network"
2052
2091
  },
2053
2092
  {
2054
2093
  name: "LuckyFriday",
2055
- endpoint: "wss://rpc-people-kusama.luckyfriday.io"
2094
+ endpoint: "wss://rpc-bridge-hub-kusama.luckyfriday.io"
2056
2095
  },
2057
2096
  {
2058
2097
  name: "OnFinality",
2059
- endpoint: "wss://people-kusama.api.onfinality.io/public-ws"
2098
+ endpoint: "wss://bridgehub-kusama.api.onfinality.io/public-ws"
2060
2099
  },
2061
2100
  {
2062
2101
  name: "Parity",
2063
- endpoint: "wss://kusama-people-rpc.polkadot.io"
2102
+ endpoint: "wss://kusama-bridge-hub-rpc.polkadot.io"
2103
+ },
2104
+ {
2105
+ name: "RadiumBlock",
2106
+ endpoint: "wss://bridgehub-kusama.public.curie.radiumblock.co/ws"
2064
2107
  },
2065
2108
  {
2066
2109
  name: "Stakeworld",
2067
- endpoint: "wss://ksm-rpc.stakeworld.io/people"
2110
+ endpoint: "wss://ksm-rpc.stakeworld.io/bridgehub"
2068
2111
  }
2069
2112
  ]
2070
2113
  };
2071
- var Shiden$1 = {
2072
- name: "Shiden",
2073
- info: "shiden",
2074
- paraId: 2007,
2114
+ var IntegriteeKusama$1 = {
2115
+ name: "Integritee Network",
2116
+ info: "integritee",
2117
+ paraId: 2015,
2075
2118
  providers: [
2076
2119
  {
2077
- name: "Astar",
2078
- endpoint: "wss://rpc.shiden.astar.network"
2079
- },
2080
- {
2081
- name: "Dwellir",
2082
- endpoint: "wss://shiden-rpc.n.dwellir.com"
2120
+ name: "Integritee",
2121
+ endpoint: "wss://kusama.api.integritee.network"
2083
2122
  },
2084
2123
  {
2085
2124
  name: "OnFinality",
2086
- endpoint: "wss://shiden.api.onfinality.io/public-ws"
2087
- },
2088
- {
2089
- name: "RadiumBlock",
2090
- endpoint: "wss://shiden.public.curie.radiumblock.co/ws"
2125
+ endpoint: "wss://integritee-kusama.api.onfinality.io/public-ws"
2091
2126
  }
2092
2127
  ]
2093
2128
  };
2094
- var Zeitgeist$1 = {
2095
- name: "Zeitgeist",
2096
- info: "zeitgeist",
2097
- paraId: 2092,
2129
+ var Karura$1 = {
2130
+ name: "Karura",
2131
+ info: "karura",
2132
+ paraId: 2000,
2098
2133
  providers: [
2099
2134
  {
2100
- name: "OnFinality",
2101
- endpoint: "wss://zeitgeist.api.onfinality.io/public-ws"
2102
- }
2103
- ]
2104
- };
2105
- var AssetHubWestend$1 = {
2106
- name: "Asset Hub",
2107
- info: "WestendAssetHub",
2108
- paraId: 1000,
2109
- providers: [
2135
+ name: "Acala Foundation 0",
2136
+ endpoint: "wss://karura-rpc-0.aca-api.network"
2137
+ },
2110
2138
  {
2111
- name: "Dwellir",
2112
- endpoint: "wss://asset-hub-westend-rpc.n.dwellir.com"
2139
+ name: "Acala Foundation 1",
2140
+ endpoint: "wss://karura-rpc-1.aca-api.network"
2113
2141
  },
2114
2142
  {
2115
- name: "Dwellir Tunisia",
2116
- endpoint: "wss://westmint-rpc-tn.dwellir.com"
2143
+ name: "Acala Foundation 2",
2144
+ endpoint: "wss://karura-rpc-2.aca-api.network/ws"
2117
2145
  },
2118
2146
  {
2119
- name: "Parity",
2120
- endpoint: "wss://westend-asset-hub-rpc.polkadot.io"
2147
+ name: "Acala Foundation 3",
2148
+ endpoint: "wss://karura-rpc-3.aca-api.network/ws"
2121
2149
  },
2122
2150
  {
2123
- name: "Permanence DAO EU",
2124
- endpoint: "wss://asset-hub-westend.rpc.permanence.io"
2151
+ name: "Dwellir",
2152
+ endpoint: "wss://karura-rpc.n.dwellir.com"
2125
2153
  }
2126
2154
  ]
2127
2155
  };
2128
- var BridgeHubWestend$1 = {
2129
- name: "Bridge Hub",
2130
- info: "westendBridgeHub",
2131
- paraId: 1002,
2156
+ var Kintsugi$1 = {
2157
+ name: "Kintsugi BTC",
2158
+ info: "kintsugi",
2159
+ paraId: 2092,
2132
2160
  providers: [
2133
2161
  {
2134
- name: "Dwellir",
2135
- endpoint: "wss://bridge-hub-westend-rpc.n.dwellir.com"
2136
- },
2137
- {
2138
- name: "Dwellir Tunisia",
2139
- endpoint: "wss://westend-bridge-hub-rpc-tn.dwellir.com"
2162
+ name: "Kintsugi Labs",
2163
+ endpoint: "wss://api-kusama.interlay.io/parachain"
2140
2164
  },
2141
2165
  {
2142
- name: "Parity",
2143
- endpoint: "wss://westend-bridge-hub-rpc.polkadot.io"
2166
+ name: "OnFinality",
2167
+ endpoint: "wss://kintsugi.api.onfinality.io/public-ws"
2144
2168
  }
2145
2169
  ]
2146
2170
  };
2147
- var CollectivesWestend$1 = {
2148
- name: "Collectives",
2149
- info: "westendCollectives",
2150
- paraId: 1001,
2171
+ var Moonriver$1 = {
2172
+ name: "Moonriver",
2173
+ info: "moonriver",
2174
+ paraId: 2023,
2151
2175
  providers: [
2152
2176
  {
2153
- name: "Dwellir",
2154
- endpoint: "wss://collectives-westend-rpc.n.dwellir.com"
2155
- },
2156
- {
2157
- name: "Dwellir Tunisia",
2158
- endpoint: "wss://westend-collectives-rpc-tn.dwellir.com"
2177
+ name: "Allnodes",
2178
+ endpoint: "wss://moonriver-rpc.publicnode.com"
2159
2179
  },
2160
- {
2161
- name: "Parity",
2162
- endpoint: "wss://westend-collectives-rpc.polkadot.io"
2163
- }
2164
- ]
2165
- };
2166
- var CoretimeWestend$1 = {
2167
- name: "Coretime",
2168
- info: "westendCoretime",
2169
- paraId: 1005,
2170
- providers: [
2171
2180
  {
2172
2181
  name: "Dwellir",
2173
- endpoint: "wss://coretime-westend-rpc.n.dwellir.com"
2182
+ endpoint: "wss://moonriver-rpc.n.dwellir.com"
2174
2183
  },
2175
2184
  {
2176
- name: "Parity",
2177
- endpoint: "wss://westend-coretime-rpc.polkadot.io"
2178
- }
2179
- ]
2180
- };
2181
- var Penpal$1 = {
2182
- name: "Penpal",
2183
- info: "westendPenpal",
2184
- paraId: 2042,
2185
- providers: [
2186
- {
2187
- name: "Parity",
2188
- endpoint: "wss://westend-penpal-rpc.polkadot.io"
2189
- }
2190
- ]
2191
- };
2192
- var PeopleWestend$1 = {
2193
- name: "People",
2194
- info: "westendPeople",
2195
- paraId: 1004,
2196
- providers: [
2185
+ name: "Moonbeam Foundation",
2186
+ endpoint: "wss://wss.api.moonriver.moonbeam.network"
2187
+ },
2197
2188
  {
2198
- name: "Dwellir",
2199
- endpoint: "wss://people-westend-rpc.n.dwellir.com"
2189
+ name: "OnFinality",
2190
+ endpoint: "wss://moonriver.api.onfinality.io/public-ws"
2200
2191
  },
2201
2192
  {
2202
- name: "Parity",
2203
- endpoint: "wss://westend-people-rpc.polkadot.io"
2204
- }
2205
- ]
2206
- };
2207
- var AjunaPaseo$1 = {
2208
- name: "Ajuna Network (Paseo)",
2209
- info: "Ajuna(paseo)",
2210
- paraId: 2051,
2211
- providers: [
2193
+ name: "RadiumBlock",
2194
+ endpoint: "wss://moonriver.public.curie.radiumblock.co/ws"
2195
+ },
2212
2196
  {
2213
- name: "BajunNetwork",
2214
- endpoint: "wss://rpc-paseo.ajuna.network"
2197
+ name: "UnitedBloc",
2198
+ endpoint: "wss://moonriver.unitedbloc.com"
2215
2199
  }
2216
2200
  ]
2217
2201
  };
2218
- var AssetHubPaseo$1 = {
2219
- name: "Asset Hub",
2220
- info: "PaseoAssetHub",
2221
- paraId: 1000,
2202
+ var CoretimeKusama$1 = {
2203
+ name: "Coretime",
2204
+ info: "kusamaCoretime",
2205
+ paraId: 1005,
2222
2206
  providers: [
2223
2207
  {
2224
2208
  name: "Dwellir",
2225
- endpoint: "wss://asset-hub-paseo-rpc.n.dwellir.com"
2209
+ endpoint: "wss://coretime-kusama-rpc.n.dwellir.com"
2226
2210
  },
2227
2211
  {
2228
2212
  name: "IBP1",
2229
- endpoint: "wss://sys.ibp.network/asset-hub-paseo"
2213
+ endpoint: "wss://sys.ibp.network/coretime-kusama"
2230
2214
  },
2231
2215
  {
2232
2216
  name: "IBP2",
2233
- endpoint: "wss://asset-hub-paseo.dotters.network"
2217
+ endpoint: "wss://coretime-kusama.dotters.network"
2234
2218
  },
2235
2219
  {
2236
- name: "StakeWorld",
2237
- endpoint: "wss://pas-rpc.stakeworld.io/assethub"
2220
+ name: "LuckyFriday",
2221
+ endpoint: "wss://rpc-coretime-kusama.luckyfriday.io"
2238
2222
  },
2239
2223
  {
2240
- name: "TurboFlakes",
2241
- endpoint: "wss://sys.turboflakes.io/asset-hub-paseo"
2242
- }
2243
- ]
2244
- };
2245
- var BifrostPaseo$1 = {
2246
- name: "Bifrost",
2247
- info: "Bifrost(Paseo)",
2248
- paraId: 2030,
2249
- providers: [
2224
+ name: "OnFinality",
2225
+ endpoint: "wss://coretime-kusama.api.onfinality.io/public-ws"
2226
+ },
2250
2227
  {
2251
- name: "Liebi",
2252
- endpoint: "wss://bifrost-rpc.paseo.liebi.com/ws"
2228
+ name: "Parity",
2229
+ endpoint: "wss://kusama-coretime-rpc.polkadot.io"
2230
+ },
2231
+ {
2232
+ name: "Stakeworld",
2233
+ endpoint: "wss://ksm-rpc.stakeworld.io/coretime"
2253
2234
  }
2254
2235
  ]
2255
2236
  };
2256
- var BridgeHubPaseo$1 = {
2257
- name: "Bridge Hub",
2258
- info: "PaseoBridgeHub",
2259
- paraId: 1002,
2237
+ var Encointer$1 = {
2238
+ name: "Encointer Network",
2239
+ info: "encointer",
2240
+ paraId: 1001,
2260
2241
  providers: [
2261
2242
  {
2262
- name: "IBP1",
2263
- endpoint: "wss://sys.ibp.network/bridgehub-paseo"
2243
+ name: "Dwellir",
2244
+ endpoint: "wss://encointer-kusama-rpc.n.dwellir.com"
2264
2245
  },
2265
2246
  {
2266
- name: "IBP2",
2267
- endpoint: "wss://bridge-hub-paseo.dotters.network"
2268
- }
2269
- ]
2270
- };
2271
- var CoretimePaseo$1 = {
2272
- name: "Coretime",
2273
- info: "PaseoCoretime",
2274
- paraId: 1005,
2275
- providers: [
2247
+ name: "Encointer Association",
2248
+ endpoint: "wss://kusama.api.encointer.org"
2249
+ },
2276
2250
  {
2277
2251
  name: "IBP1",
2278
- endpoint: "wss://sys.ibp.network/coretime-paseo"
2252
+ endpoint: "wss://sys.ibp.network/encointer-kusama"
2253
+ },
2254
+ {
2255
+ name: "IBP2",
2256
+ endpoint: "wss://encointer-kusama.dotters.network"
2279
2257
  },
2280
2258
  {
2281
- name: "IBP2",
2282
- endpoint: "wss://coretime-paseo.dotters.network"
2259
+ name: "LuckyFriday",
2260
+ endpoint: "wss://rpc-encointer-kusama.luckyfriday.io"
2283
2261
  }
2284
2262
  ]
2285
2263
  };
2286
- var EnergyWebXPaseo$1 = {
2287
- name: "PEX",
2288
- info: "paseoEwx",
2289
- paraId: 3345,
2264
+ var Altair$1 = {
2265
+ name: "Altair",
2266
+ info: "altair",
2267
+ paraId: 2088,
2290
2268
  providers: [
2291
2269
  {
2292
- name: "Energy Web",
2293
- endpoint: "wss://public-rpc.testnet.energywebx.com/"
2270
+ name: "OnFinality",
2271
+ endpoint: "wss://altair.api.onfinality.io/public-ws"
2294
2272
  }
2295
2273
  ]
2296
2274
  };
2297
- var HeimaPaseo$1 = {
2298
- name: "Heima paseo",
2299
- info: "heima-paseo",
2300
- paraId: 2106,
2275
+ var Amplitude$1 = {
2276
+ name: "Amplitude",
2277
+ info: "amplitude",
2278
+ paraId: 2124,
2301
2279
  providers: [
2302
2280
  {
2303
- name: "Heima",
2304
- endpoint: "wss://rpc.paseo-parachain.heima.network"
2281
+ name: "PendulumChain",
2282
+ endpoint: "wss://rpc-amplitude.pendulumchain.tech"
2305
2283
  }
2306
2284
  ]
2307
2285
  };
2308
- var HydrationPaseo$1 = {
2309
- name: "Hydration (Paseo)",
2310
- info: "rococoHydraDX",
2311
- paraId: 2034,
2286
+ var Basilisk$1 = {
2287
+ name: "Basilisk",
2288
+ info: "basilisk",
2289
+ paraId: 2090,
2312
2290
  providers: [
2313
2291
  {
2314
- name: "Galactic Council",
2315
- endpoint: "wss://paseo-rpc.play.hydration.cloud"
2316
- }
2317
- ]
2318
- };
2319
- var IntegriteePaseo$1 = {
2320
- name: "Integritee Network (Paseo)",
2321
- info: "integritee",
2322
- paraId: 2039,
2323
- providers: [
2292
+ name: "Basilisk",
2293
+ endpoint: "wss://rpc.basilisk.cloud"
2294
+ },
2324
2295
  {
2325
- name: "Integritee",
2326
- endpoint: "wss://paseo.api.integritee.network"
2296
+ name: "Dwellir",
2297
+ endpoint: "wss://basilisk-rpc.n.dwellir.com"
2327
2298
  }
2328
2299
  ]
2329
2300
  };
2330
- var KiltPaseo$1 = {
2331
- name: "KILT Peregrine",
2332
- info: "kilt",
2333
- paraId: 2086,
2301
+ var BifrostKusama$1 = {
2302
+ name: "Bifrost",
2303
+ info: "bifrost",
2304
+ paraId: 2001,
2334
2305
  providers: [
2335
2306
  {
2336
- name: "KILT Foundation",
2337
- endpoint: "wss://peregrine.kilt.io/"
2338
- }
2339
- ]
2340
- };
2341
- var LaosPaseo$1 = {
2342
- name: "Laos Sigma",
2343
- info: "laos-sigma",
2344
- paraId: 4006,
2345
- providers: [
2307
+ name: "Liebi",
2308
+ endpoint: "wss://bifrost-rpc.liebi.com/ws"
2309
+ },
2346
2310
  {
2347
- name: "freeverse.io",
2348
- endpoint: "wss://rpc.laossigma.laosfoundation.io"
2311
+ name: "LiebiUS",
2312
+ endpoint: "wss://us.bifrost-rpc.liebi.com/ws"
2349
2313
  }
2350
2314
  ]
2351
2315
  };
2352
- var NeuroWebPaseo$1 = {
2353
- name: "NeuroWeb Testnet",
2354
- info: "NeuroWeb",
2355
- paraId: 2043,
2316
+ var CrustShadow$1 = {
2317
+ name: "Crust Shadow",
2318
+ info: "shadow",
2319
+ paraId: 2012,
2356
2320
  providers: [
2357
2321
  {
2358
- name: "TraceLabs",
2359
- endpoint: "wss://parachain-testnet-rpc.origin-trail.network/"
2322
+ name: "Crust",
2323
+ endpoint: "wss://rpc-shadow.crust.network/"
2324
+ },
2325
+ {
2326
+ name: "Crust APP",
2327
+ endpoint: "wss://rpc-shadow.crustnetwork.app"
2328
+ },
2329
+ {
2330
+ name: "Crust CC",
2331
+ endpoint: "wss://rpc-shadow.crustnetwork.cc"
2332
+ },
2333
+ {
2334
+ name: "Crust XYZ",
2335
+ endpoint: "wss://rpc-shadow.crustnetwork.xyz"
2360
2336
  }
2361
2337
  ]
2362
2338
  };
2363
- var NodlePaseo$1 = {
2364
- name: "Nodle",
2365
- info: "NodleParadis",
2366
- paraId: 2026,
2339
+ var Crab$1 = {
2340
+ name: "Crab",
2341
+ info: "crab",
2342
+ paraId: 2105,
2367
2343
  providers: [
2368
2344
  {
2369
- name: "OnFinality",
2370
- endpoint: "wss://node-7273232234617282560.nv.onfinality.io/ws?apikey=b937a7d7-7395-49b9-b745-60a0342fa365"
2345
+ name: "Darwinia",
2346
+ endpoint: "wss://crab-rpc.darwinia.network/"
2347
+ },
2348
+ {
2349
+ name: "Dwellir",
2350
+ endpoint: "wss://darwiniacrab-rpc.n.dwellir.com"
2371
2351
  }
2372
2352
  ]
2373
2353
  };
2374
- var PAssetHub$1 = {
2375
- name: "PAssetHub - Contracts",
2376
- info: "PAssetHub - Contracts",
2377
- paraId: 1111,
2354
+ var Laos$1 = {
2355
+ name: "Laos",
2356
+ info: "laos",
2357
+ paraId: 3370,
2378
2358
  providers: [
2379
2359
  {
2380
- name: "IBP1",
2381
- endpoint: "wss://passet-hub-paseo.ibp.network"
2382
- },
2383
- {
2384
- name: "IBP2",
2385
- endpoint: "wss://passet-hub-paseo.dotters.network"
2386
- },
2387
- {
2388
- name: "Parity",
2389
- endpoint: "wss://testnet-passet-hub.polkadot.io"
2360
+ name: "laosfoundation.io",
2361
+ endpoint: "wss://rpc.laos.laosfoundation.io"
2390
2362
  }
2391
2363
  ]
2392
2364
  };
2393
- var PeoplePaseo$1 = {
2394
- name: "People",
2395
- info: "PaseoPeopleChain",
2396
- paraId: 1004,
2365
+ var Quartz$1 = {
2366
+ name: "QUARTZ by UNIQUE",
2367
+ info: "quartz",
2368
+ paraId: 2095,
2397
2369
  providers: [
2398
2370
  {
2399
- name: "Amforc",
2400
- endpoint: "wss://people-paseo.rpc.amforc.com"
2401
- },
2402
- {
2403
- name: "IBP1",
2404
- endpoint: "wss://sys.ibp.network/people-paseo"
2371
+ name: "Geo Load Balancer",
2372
+ endpoint: "wss://ws-quartz.unique.network"
2405
2373
  },
2406
2374
  {
2407
- name: "IBP2",
2408
- endpoint: "wss://people-paseo.dotters.network"
2375
+ name: "Unique Europe",
2376
+ endpoint: "wss://eu-ws-quartz.unique.network"
2409
2377
  }
2410
2378
  ]
2411
2379
  };
2412
- var ZeitgeistPaseo$1 = {
2413
- name: "Zeitgeist Battery Station",
2414
- info: "ZeitgeistBatteryStation",
2415
- paraId: 2101,
2380
+ var RobonomicsKusama$1 = {
2381
+ name: "Robonomics",
2382
+ info: "robonomics",
2383
+ paraId: 2048,
2416
2384
  providers: [
2417
2385
  {
2418
- name: "Zeitgeist",
2419
- endpoint: "wss://bsr.zeitgeist.pm"
2386
+ name: "Airalab",
2387
+ endpoint: "wss://kusama.rpc.robonomics.network/"
2420
2388
  }
2421
2389
  ]
2422
2390
  };
2423
- var Polkadot = {
2424
- name: "Polkadot Relay",
2425
- info: "polkadot",
2426
- paraId: 0,
2391
+ var PeopleKusama$1 = {
2392
+ name: "People",
2393
+ info: "kusamaPeople",
2394
+ paraId: 1004,
2427
2395
  providers: [
2428
- {
2429
- name: "Allnodes",
2430
- endpoint: "wss://polkadot-rpc.publicnode.com"
2431
- },
2432
- {
2433
- name: "Blockops",
2434
- endpoint: "wss://polkadot-public-rpc.blockops.network/ws"
2435
- },
2436
2396
  {
2437
2397
  name: "Dwellir",
2438
- endpoint: "wss://polkadot-rpc.n.dwellir.com"
2439
- },
2440
- {
2441
- name: "Dwellir Tunisia",
2442
- endpoint: "wss://polkadot-rpc-tn.dwellir.com"
2398
+ endpoint: "wss://people-kusama-rpc.n.dwellir.com"
2443
2399
  },
2444
2400
  {
2445
2401
  name: "Helixstreet",
2446
- endpoint: "wss://rpc-polkadot.helixstreet.io"
2402
+ endpoint: "wss://rpc-people-kusama.helixstreet.io"
2447
2403
  },
2448
2404
  {
2449
2405
  name: "IBP1",
2450
- endpoint: "wss://rpc.ibp.network/polkadot"
2406
+ endpoint: "wss://sys.ibp.network/people-kusama"
2451
2407
  },
2452
2408
  {
2453
2409
  name: "IBP2",
2454
- endpoint: "wss://polkadot.dotters.network"
2410
+ endpoint: "wss://people-kusama.dotters.network"
2455
2411
  },
2456
2412
  {
2457
2413
  name: "LuckyFriday",
2458
- endpoint: "wss://rpc-polkadot.luckyfriday.io"
2414
+ endpoint: "wss://rpc-people-kusama.luckyfriday.io"
2459
2415
  },
2460
2416
  {
2461
2417
  name: "OnFinality",
2462
- endpoint: "wss://polkadot.api.onfinality.io/public-ws"
2418
+ endpoint: "wss://people-kusama.api.onfinality.io/public-ws"
2463
2419
  },
2464
2420
  {
2465
- name: "Permanence DAO EU",
2466
- endpoint: "wss://polkadot.rpc.permanence.io"
2421
+ name: "Parity",
2422
+ endpoint: "wss://kusama-people-rpc.polkadot.io"
2467
2423
  },
2468
2424
  {
2469
- name: "RadiumBlock",
2470
- endpoint: "wss://polkadot.public.curie.radiumblock.co/ws"
2425
+ name: "Stakeworld",
2426
+ endpoint: "wss://ksm-rpc.stakeworld.io/people"
2427
+ }
2428
+ ]
2429
+ };
2430
+ var Shiden$1 = {
2431
+ name: "Shiden",
2432
+ info: "shiden",
2433
+ paraId: 2007,
2434
+ providers: [
2435
+ {
2436
+ name: "Astar",
2437
+ endpoint: "wss://rpc.shiden.astar.network"
2471
2438
  },
2472
2439
  {
2473
- name: "Simply Staking",
2474
- endpoint: "wss://spectrum-03.simplystaking.xyz/cG9sa2Fkb3QtMDMtOTFkMmYwZGYtcG9sa2Fkb3Q/LjwBJpV3dIKyWQ/polkadot/mainnet/"
2440
+ name: "Dwellir",
2441
+ endpoint: "wss://shiden-rpc.n.dwellir.com"
2442
+ },
2443
+ {
2444
+ name: "OnFinality",
2445
+ endpoint: "wss://shiden.api.onfinality.io/public-ws"
2446
+ },
2447
+ {
2448
+ name: "RadiumBlock",
2449
+ endpoint: "wss://shiden.public.curie.radiumblock.co/ws"
2450
+ }
2451
+ ]
2452
+ };
2453
+ var Zeitgeist$1 = {
2454
+ name: "Zeitgeist",
2455
+ info: "zeitgeist",
2456
+ paraId: 2092,
2457
+ providers: [
2458
+ {
2459
+ name: "OnFinality",
2460
+ endpoint: "wss://zeitgeist.api.onfinality.io/public-ws"
2461
+ }
2462
+ ]
2463
+ };
2464
+ var AssetHubWestend$1 = {
2465
+ name: "Asset Hub",
2466
+ info: "WestendAssetHub",
2467
+ paraId: 1000,
2468
+ providers: [
2469
+ {
2470
+ name: "Dwellir",
2471
+ endpoint: "wss://asset-hub-westend-rpc.n.dwellir.com"
2472
+ },
2473
+ {
2474
+ name: "Dwellir Tunisia",
2475
+ endpoint: "wss://westmint-rpc-tn.dwellir.com"
2475
2476
  },
2476
2477
  {
2477
- name: "Stakeworld",
2478
- endpoint: "wss://dot-rpc.stakeworld.io"
2478
+ name: "Parity",
2479
+ endpoint: "wss://westend-asset-hub-rpc.polkadot.io"
2479
2480
  },
2480
2481
  {
2481
- name: "SubQuery",
2482
- endpoint: "wss://polkadot.rpc.subquery.network/public/ws"
2482
+ name: "Permanence DAO EU",
2483
+ endpoint: "wss://asset-hub-westend.rpc.permanence.io"
2483
2484
  }
2484
2485
  ]
2485
2486
  };
2486
- var Kusama = {
2487
- name: "Kusama Relay",
2488
- info: "kusama",
2489
- paraId: 0,
2487
+ var BridgeHubWestend$1 = {
2488
+ name: "Bridge Hub",
2489
+ info: "westendBridgeHub",
2490
+ paraId: 1002,
2490
2491
  providers: [
2491
2492
  {
2492
- name: "Allnodes",
2493
- endpoint: "wss://kusama-rpc.publicnode.com"
2493
+ name: "Dwellir",
2494
+ endpoint: "wss://bridge-hub-westend-rpc.n.dwellir.com"
2494
2495
  },
2495
2496
  {
2496
- name: "Blockops",
2497
- endpoint: "wss://kusama-public-rpc.blockops.network/ws"
2497
+ name: "Dwellir Tunisia",
2498
+ endpoint: "wss://westend-bridge-hub-rpc-tn.dwellir.com"
2498
2499
  },
2500
+ {
2501
+ name: "Parity",
2502
+ endpoint: "wss://westend-bridge-hub-rpc.polkadot.io"
2503
+ }
2504
+ ]
2505
+ };
2506
+ var CollectivesWestend$1 = {
2507
+ name: "Collectives",
2508
+ info: "westendCollectives",
2509
+ paraId: 1001,
2510
+ providers: [
2499
2511
  {
2500
2512
  name: "Dwellir",
2501
- endpoint: "wss://kusama-rpc.n.dwellir.com"
2513
+ endpoint: "wss://collectives-westend-rpc.n.dwellir.com"
2502
2514
  },
2503
2515
  {
2504
2516
  name: "Dwellir Tunisia",
2505
- endpoint: "wss://kusama-rpc-tn.dwellir.com"
2517
+ endpoint: "wss://westend-collectives-rpc-tn.dwellir.com"
2506
2518
  },
2507
2519
  {
2508
- name: "Helixstreet",
2509
- endpoint: "wss://rpc-kusama.helixstreet.io"
2510
- },
2520
+ name: "Parity",
2521
+ endpoint: "wss://westend-collectives-rpc.polkadot.io"
2522
+ }
2523
+ ]
2524
+ };
2525
+ var CoretimeWestend$1 = {
2526
+ name: "Coretime",
2527
+ info: "westendCoretime",
2528
+ paraId: 1005,
2529
+ providers: [
2511
2530
  {
2512
- name: "IBP1",
2513
- endpoint: "wss://rpc.ibp.network/kusama"
2531
+ name: "Dwellir",
2532
+ endpoint: "wss://coretime-westend-rpc.n.dwellir.com"
2514
2533
  },
2515
2534
  {
2516
- name: "IBP2",
2517
- endpoint: "wss://kusama.dotters.network"
2518
- },
2535
+ name: "Parity",
2536
+ endpoint: "wss://westend-coretime-rpc.polkadot.io"
2537
+ }
2538
+ ]
2539
+ };
2540
+ var Penpal$1 = {
2541
+ name: "Penpal",
2542
+ info: "westendPenpal",
2543
+ paraId: 2042,
2544
+ providers: [
2519
2545
  {
2520
- name: "LuckyFriday",
2521
- endpoint: "wss://rpc-kusama.luckyfriday.io"
2522
- },
2546
+ name: "Parity",
2547
+ endpoint: "wss://westend-penpal-rpc.polkadot.io"
2548
+ }
2549
+ ]
2550
+ };
2551
+ var PeopleWestend$1 = {
2552
+ name: "People",
2553
+ info: "westendPeople",
2554
+ paraId: 1004,
2555
+ providers: [
2523
2556
  {
2524
- name: "OnFinality",
2525
- endpoint: "wss://kusama.api.onfinality.io/public-ws"
2557
+ name: "Dwellir",
2558
+ endpoint: "wss://people-westend-rpc.n.dwellir.com"
2526
2559
  },
2527
2560
  {
2528
- name: "RadiumBlock",
2529
- endpoint: "wss://kusama.public.curie.radiumblock.co/ws"
2530
- },
2561
+ name: "Parity",
2562
+ endpoint: "wss://westend-people-rpc.polkadot.io"
2563
+ }
2564
+ ]
2565
+ };
2566
+ var AjunaPaseo$1 = {
2567
+ name: "Ajuna Network (Paseo)",
2568
+ info: "Ajuna(paseo)",
2569
+ paraId: 2051,
2570
+ providers: [
2531
2571
  {
2532
- name: "Stakeworld",
2533
- endpoint: "wss://ksm-rpc.stakeworld.io"
2572
+ name: "BajunNetwork",
2573
+ endpoint: "wss://rpc-paseo.ajuna.network"
2534
2574
  }
2535
2575
  ]
2536
2576
  };
2537
- var Westend = {
2538
- name: "Westend Relay",
2539
- info: "westend",
2540
- paraId: 0,
2577
+ var AssetHubPaseo$1 = {
2578
+ name: "Asset Hub",
2579
+ info: "PaseoAssetHub",
2580
+ paraId: 1000,
2541
2581
  providers: [
2542
2582
  {
2543
2583
  name: "Dwellir",
2544
- endpoint: "wss://westend-rpc.n.dwellir.com"
2584
+ endpoint: "wss://asset-hub-paseo-rpc.n.dwellir.com"
2545
2585
  },
2546
2586
  {
2547
- name: "Dwellir Tunisia",
2548
- endpoint: "wss://westend-rpc-tn.dwellir.com"
2587
+ name: "IBP1",
2588
+ endpoint: "wss://sys.ibp.network/asset-hub-paseo"
2549
2589
  },
2550
2590
  {
2551
- name: "OnFinality",
2552
- endpoint: "wss://westend.api.onfinality.io/public-ws"
2591
+ name: "IBP2",
2592
+ endpoint: "wss://asset-hub-paseo.dotters.network"
2553
2593
  },
2554
2594
  {
2555
- name: "Parity",
2556
- endpoint: "wss://westend-rpc.polkadot.io"
2595
+ name: "StakeWorld",
2596
+ endpoint: "wss://pas-rpc.stakeworld.io/assethub"
2557
2597
  },
2558
2598
  {
2559
- name: "RadiumBlock",
2560
- endpoint: "wss://westend.public.curie.radiumblock.co/ws"
2599
+ name: "TurboFlakes",
2600
+ endpoint: "wss://sys.turboflakes.io/asset-hub-paseo"
2561
2601
  }
2562
2602
  ]
2563
2603
  };
2564
- var Paseo = {
2565
- name: "Paseo Relay",
2566
- info: "paseo",
2567
- paraId: 0,
2604
+ var BifrostPaseo$1 = {
2605
+ name: "Bifrost",
2606
+ info: "Bifrost(Paseo)",
2607
+ paraId: 2030,
2568
2608
  providers: [
2569
2609
  {
2570
- name: "Amforc",
2571
- endpoint: "wss://paseo.rpc.amforc.com"
2572
- },
2573
- {
2574
- name: "Dwellir",
2575
- endpoint: "wss://paseo-rpc.n.dwellir.com"
2576
- },
2610
+ name: "Liebi",
2611
+ endpoint: "wss://bifrost-rpc.paseo.liebi.com/ws"
2612
+ }
2613
+ ]
2614
+ };
2615
+ var BridgeHubPaseo$1 = {
2616
+ name: "Bridge Hub",
2617
+ info: "PaseoBridgeHub",
2618
+ paraId: 1002,
2619
+ providers: [
2577
2620
  {
2578
2621
  name: "IBP1",
2579
- endpoint: "wss://rpc.ibp.network/paseo"
2622
+ endpoint: "wss://sys.ibp.network/bridgehub-paseo"
2580
2623
  },
2581
2624
  {
2582
2625
  name: "IBP2",
2583
- endpoint: "wss://paseo.dotters.network"
2584
- },
2585
- {
2586
- name: "StakeWorld",
2587
- endpoint: "wss://pas-rpc.stakeworld.io"
2626
+ endpoint: "wss://bridge-hub-paseo.dotters.network"
2588
2627
  }
2589
2628
  ]
2590
2629
  };
2591
- var configs = {
2592
- AssetHubPolkadot: AssetHubPolkadot$1,
2593
- Acala: Acala$1,
2594
- Ajuna: Ajuna$1,
2595
- Astar: Astar$1,
2596
- BifrostPolkadot: BifrostPolkadot$1,
2597
- BridgeHubPolkadot: BridgeHubPolkadot$1,
2598
- Centrifuge: Centrifuge$1,
2599
- ComposableFinance: ComposableFinance$1,
2600
- Darwinia: Darwinia$1,
2601
- EnergyWebX: EnergyWebX$1,
2602
- Hydration: Hydration$1,
2603
- IntegriteePolkadot: IntegriteePolkadot$1,
2604
- Interlay: Interlay$1,
2605
- Heima: Heima$1,
2606
- Jamton: Jamton$1,
2607
- Moonbeam: Moonbeam$1,
2608
- CoretimePolkadot: CoretimePolkadot$1,
2609
- Collectives: Collectives$1,
2610
- Crust: Crust$1,
2611
- Manta: Manta$1,
2612
- Nodle: Nodle$1,
2613
- NeuroWeb: NeuroWeb$1,
2614
- Pendulum: Pendulum$1,
2615
- Phala: Phala$1,
2616
- Subsocial: Subsocial$1,
2617
- KiltSpiritnet: KiltSpiritnet$1,
2618
- Curio: Curio$1,
2619
- Mythos: Mythos$1,
2620
- Peaq: Peaq$1,
2621
- Polimec: Polimec$1,
2622
- RobonomicsPolkadot: RobonomicsPolkadot$1,
2623
- PeoplePolkadot: PeoplePolkadot$1,
2624
- Unique: Unique$1,
2625
- Xode: Xode$1,
2626
- AssetHubKusama: AssetHubKusama$1,
2627
- BridgeHubKusama: BridgeHubKusama$1,
2628
- IntegriteeKusama: IntegriteeKusama$1,
2629
- Karura: Karura$1,
2630
- Kintsugi: Kintsugi$1,
2631
- Moonriver: Moonriver$1,
2632
- CoretimeKusama: CoretimeKusama$1,
2633
- Encointer: Encointer$1,
2634
- Altair: Altair$1,
2635
- Amplitude: Amplitude$1,
2636
- Basilisk: Basilisk$1,
2637
- BifrostKusama: BifrostKusama$1,
2638
- CrustShadow: CrustShadow$1,
2639
- Crab: Crab$1,
2640
- Laos: Laos$1,
2641
- Quartz: Quartz$1,
2642
- RobonomicsKusama: RobonomicsKusama$1,
2643
- PeopleKusama: PeopleKusama$1,
2644
- Shiden: Shiden$1,
2645
- Zeitgeist: Zeitgeist$1,
2646
- AssetHubWestend: AssetHubWestend$1,
2647
- BridgeHubWestend: BridgeHubWestend$1,
2648
- CollectivesWestend: CollectivesWestend$1,
2649
- CoretimeWestend: CoretimeWestend$1,
2650
- Penpal: Penpal$1,
2651
- PeopleWestend: PeopleWestend$1,
2652
- AjunaPaseo: AjunaPaseo$1,
2653
- AssetHubPaseo: AssetHubPaseo$1,
2654
- BifrostPaseo: BifrostPaseo$1,
2655
- BridgeHubPaseo: BridgeHubPaseo$1,
2656
- CoretimePaseo: CoretimePaseo$1,
2657
- EnergyWebXPaseo: EnergyWebXPaseo$1,
2658
- HeimaPaseo: HeimaPaseo$1,
2659
- HydrationPaseo: HydrationPaseo$1,
2660
- IntegriteePaseo: IntegriteePaseo$1,
2661
- KiltPaseo: KiltPaseo$1,
2662
- LaosPaseo: LaosPaseo$1,
2663
- NeuroWebPaseo: NeuroWebPaseo$1,
2664
- NodlePaseo: NodlePaseo$1,
2665
- PAssetHub: PAssetHub$1,
2666
- PeoplePaseo: PeoplePaseo$1,
2667
- ZeitgeistPaseo: ZeitgeistPaseo$1,
2668
- Polkadot: Polkadot,
2669
- Kusama: Kusama,
2670
- Westend: Westend,
2671
- Paseo: Paseo
2630
+ var CoretimePaseo$1 = {
2631
+ name: "Coretime",
2632
+ info: "PaseoCoretime",
2633
+ paraId: 1005,
2634
+ providers: [
2635
+ {
2636
+ name: "IBP1",
2637
+ endpoint: "wss://sys.ibp.network/coretime-paseo"
2638
+ },
2639
+ {
2640
+ name: "IBP2",
2641
+ endpoint: "wss://coretime-paseo.dotters.network"
2642
+ }
2643
+ ]
2672
2644
  };
2673
-
2674
- var configsMap = configs;
2675
- var getChainConfig = function getChainConfig(chain) {
2676
- return configsMap[chain];
2645
+ var EnergyWebXPaseo$1 = {
2646
+ name: "PEX",
2647
+ info: "paseoEwx",
2648
+ paraId: 3345,
2649
+ providers: [
2650
+ {
2651
+ name: "Energy Web",
2652
+ endpoint: "wss://public-rpc.testnet.energywebx.com/"
2653
+ }
2654
+ ]
2677
2655
  };
2678
-
2679
- var getChainProviders = function getChainProviders(chain) {
2680
- var _getChainConfig = getChainConfig(chain),
2681
- providers = _getChainConfig.providers;
2682
- if (providers.length === 0) {
2683
- throw new InvalidParameterError("No providers found for chain ".concat(chain));
2684
- }
2685
- // Prefer Dwellir provider
2686
- providers.sort(function (a, b) {
2687
- return (a.name === 'Dwellir' ? 0 : 1) - (b.name === 'Dwellir' ? 0 : 1);
2688
- });
2689
- return providers.map(function (p) {
2690
- return p.endpoint;
2691
- });
2656
+ var HeimaPaseo$1 = {
2657
+ name: "Heima paseo",
2658
+ info: "heima-paseo",
2659
+ paraId: 2106,
2660
+ providers: [
2661
+ {
2662
+ name: "Heima",
2663
+ endpoint: "wss://rpc.paseo-parachain.heima.network"
2664
+ }
2665
+ ]
2692
2666
  };
2693
-
2694
- /**
2695
- * Retrieves the parachain ID for a specified chain.
2696
- *
2697
- * @param chain - The chain for which to get the paraId.
2698
- * @returns The parachain ID of the chain.
2699
- */
2700
- var getParaId = function getParaId(chain) {
2701
- if (chain === 'Ethereum') {
2702
- return ETH_PARA_ID;
2703
- }
2704
- return getChainConfig(chain).paraId;
2667
+ var HydrationPaseo$1 = {
2668
+ name: "Hydration (Paseo)",
2669
+ info: "rococoHydraDX",
2670
+ paraId: 2034,
2671
+ providers: [
2672
+ {
2673
+ name: "Galactic Council",
2674
+ endpoint: "wss://paseo-rpc.play.hydration.cloud"
2675
+ }
2676
+ ]
2705
2677
  };
2706
-
2707
- var createChainClient = /*#__PURE__*/function () {
2708
- var _ref = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(api, chain) {
2709
- var wsUrl;
2710
- return _regenerator().w(function (_context) {
2711
- while (1) switch (_context.n) {
2712
- case 0:
2713
- wsUrl = getChainProviders(chain);
2714
- return _context.a(2, api.createApiInstance(wsUrl, chain));
2715
- }
2716
- }, _callee);
2717
- }));
2718
- return function createChainClient(_x, _x2) {
2719
- return _ref.apply(this, arguments);
2720
- };
2721
- }();
2722
-
2723
- /* eslint-disable @typescript-eslint/no-explicit-any */
2724
- /* eslint-disable @typescript-eslint/no-unsafe-member-access */
2725
- /* eslint-disable @typescript-eslint/no-unsafe-assignment */
2726
- var getLocationTokenId = function getLocationTokenId(location, chain) {
2727
- if (location.interior.type === 'Here') {
2728
- // native token
2729
- return assets.getNativeAssetSymbol(chain);
2730
- }
2731
- var foreignAssets = assets.getOtherAssets(chain);
2732
- if (location.interior.type === 'X2') {
2733
- if (location.interior.value[0].type === 'PalletInstance' && location.interior.value[0].value === 50 && location.interior.value[1].type === 'GeneralIndex') {
2734
- var _foreignAssets$find$a, _foreignAssets$find;
2735
- var assetId = location.interior.value[1].value;
2736
- return (_foreignAssets$find$a = (_foreignAssets$find = foreignAssets.find(function (asset) {
2737
- return asset.assetId === String(assetId);
2738
- })) === null || _foreignAssets$find === void 0 ? void 0 : _foreignAssets$find.assetId) !== null && _foreignAssets$find$a !== void 0 ? _foreignAssets$find$a : null;
2739
- }
2740
- }
2741
- return null;
2678
+ var IntegriteePaseo$1 = {
2679
+ name: "Integritee Network (Paseo)",
2680
+ info: "integritee",
2681
+ paraId: 2039,
2682
+ providers: [
2683
+ {
2684
+ name: "Integritee",
2685
+ endpoint: "wss://paseo.api.integritee.network"
2686
+ }
2687
+ ]
2742
2688
  };
2743
-
2744
- var computeFeeFromDryRun = function computeFeeFromDryRun(dryRun, chain, executionFee) {
2745
- var isFeeAsset = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
2746
- // Extract delivery fees from emitted events
2747
- var deliveryFees = [];
2748
- var assetConversionFee = 0n;
2749
- var _iterator = _createForOfIteratorHelper(dryRun.value.emitted_events),
2750
- _step;
2751
- try {
2752
- for (_iterator.s(); !(_step = _iterator.n()).done;) {
2753
- var _e$value, _e$value2;
2754
- var e = _step.value;
2755
- var isXcmEvent = e.type === 'XcmPallet' || e.type === 'PolkadotXcm' || e.type === 'CumulusXcm';
2756
- var isFeesPaid = e.value.type === 'FeesPaid';
2757
- if (isXcmEvent && isFeesPaid && e.value.value.fees) {
2758
- var _iterator2 = _createForOfIteratorHelper(e.value.value.fees),
2759
- _step2;
2760
- try {
2761
- for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
2762
- var feeItem = _step2.value;
2763
- if (feeItem.fun.type === 'NonFungible') continue;
2764
- var plancks = feeItem.fun.value;
2765
- var tokenSymbol = getLocationTokenId(feeItem.id, chain);
2766
- if (!tokenSymbol || !plancks) continue;
2767
- deliveryFees.push({
2768
- plancks: plancks,
2769
- tokenSymbol: tokenSymbol
2770
- });
2771
- }
2772
- } catch (err) {
2773
- _iterator2.e(err);
2774
- } finally {
2775
- _iterator2.f();
2776
- }
2777
- }
2778
- if (isFeeAsset && e.type === 'AssetConversion' && ((_e$value = e.value) === null || _e$value === void 0 ? void 0 : _e$value.type) === 'SwapCreditExecuted' && (_e$value2 = e.value) !== null && _e$value2 !== void 0 && _e$value2.value && e.value.value.amount_in !== undefined && e.value.value.amount_in !== null) {
2779
- assetConversionFee += e.value.value.amount_in;
2780
- }
2781
- }
2782
- } catch (err) {
2783
- _iterator.e(err);
2784
- } finally {
2785
- _iterator.f();
2786
- }
2787
- if (isFeeAsset && assetConversionFee > 0n) {
2788
- return assetConversionFee;
2789
- } else {
2790
- var nativeAssetSymbol = assets.getNativeAssetSymbol(chain);
2791
- var totalDeliveryFees = deliveryFees.filter(function (df) {
2792
- return df.tokenSymbol === nativeAssetSymbol;
2793
- }).reduce(function (acc, df) {
2794
- return acc + df.plancks;
2795
- }, 0n);
2796
- return totalDeliveryFees + executionFee;
2797
- }
2689
+ var KiltPaseo$1 = {
2690
+ name: "KILT Peregrine",
2691
+ info: "kilt",
2692
+ paraId: 2086,
2693
+ providers: [
2694
+ {
2695
+ name: "KILT Foundation",
2696
+ endpoint: "wss://peregrine.kilt.io/"
2697
+ }
2698
+ ]
2798
2699
  };
2799
-
2800
- var getLocationTokenIdPjs = function getLocationTokenIdPjs(location, chain) {
2801
- if (location.interior === 'Here') {
2802
- // native token
2803
- return assets.getNativeAssetSymbol(chain);
2804
- }
2805
- var foreignAssets = assets.getOtherAssets(chain);
2806
- if (location.interior.X2 && sdkCommon.hasJunction(location, 'PalletInstance', '50') && sdkCommon.hasJunction(location, 'GeneralIndex')) {
2807
- var _foreignAssets$find$s, _foreignAssets$find;
2808
- var assetId = sdkCommon.getJunctionValue(location, 'GeneralIndex');
2809
- return (_foreignAssets$find$s = (_foreignAssets$find = foreignAssets.find(function (asset) {
2810
- return asset.assetId === String(assetId);
2811
- })) === null || _foreignAssets$find === void 0 ? void 0 : _foreignAssets$find.symbol) !== null && _foreignAssets$find$s !== void 0 ? _foreignAssets$find$s : null;
2812
- }
2813
- return null;
2700
+ var LaosPaseo$1 = {
2701
+ name: "Laos Sigma",
2702
+ info: "laos-sigma",
2703
+ paraId: 4006,
2704
+ providers: [
2705
+ {
2706
+ name: "freeverse.io",
2707
+ endpoint: "wss://rpc.laossigma.laosfoundation.io"
2708
+ }
2709
+ ]
2814
2710
  };
2815
-
2816
- var computeFeeFromDryRunPjs = function computeFeeFromDryRunPjs(dryRun, chain, executionFee) {
2817
- // Extract delivery fees from emitted events
2818
- var deliveryFees = [];
2819
- var _iterator = _createForOfIteratorHelper(dryRun.Ok.emittedEvents),
2820
- _step;
2821
- try {
2822
- for (_iterator.s(); !(_step = _iterator.n()).done;) {
2823
- var e = _step.value;
2824
- var isXcmEvent = e.section === 'xcmPallet' || e.section === 'polkadotXcm' || e.section === 'cumulusXcm';
2825
- var isFeesPaid = e.method === 'FeesPaid';
2826
- if (isXcmEvent && isFeesPaid && e.data.fees) {
2827
- var _iterator2 = _createForOfIteratorHelper(e.data.fees),
2828
- _step2;
2829
- try {
2830
- for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
2831
- var feeItem = _step2.value;
2832
- if (feeItem.fun.NonFungible) continue;
2833
- var plancks = BigInt(feeItem.fun.Fungible.replace(/,/g, ''));
2834
- var tokenSymbol = getLocationTokenIdPjs(feeItem.id, chain);
2835
- if (!tokenSymbol || !plancks) continue;
2836
- deliveryFees.push({
2837
- plancks: plancks,
2838
- tokenSymbol: tokenSymbol
2839
- });
2840
- }
2841
- } catch (err) {
2842
- _iterator2.e(err);
2843
- } finally {
2844
- _iterator2.f();
2845
- }
2846
- }
2847
- }
2848
- } catch (err) {
2849
- _iterator.e(err);
2850
- } finally {
2851
- _iterator.f();
2852
- }
2853
- var nativeAssetSymbol = assets.getNativeAssetSymbol(chain);
2854
- // Sum the fees that match the feeToken
2855
- var totalDeliveryFees = deliveryFees.filter(function (df) {
2856
- return df.tokenSymbol === nativeAssetSymbol;
2857
- }).reduce(function (acc, df) {
2858
- return acc + df.plancks;
2859
- }, 0n);
2860
- return totalDeliveryFees + executionFee;
2711
+ var NeuroWebPaseo$1 = {
2712
+ name: "NeuroWeb Testnet",
2713
+ info: "NeuroWeb",
2714
+ paraId: 2043,
2715
+ providers: [
2716
+ {
2717
+ name: "TraceLabs",
2718
+ endpoint: "wss://parachain-testnet-rpc.origin-trail.network/"
2719
+ }
2720
+ ]
2721
+ };
2722
+ var NodlePaseo$1 = {
2723
+ name: "Nodle",
2724
+ info: "NodleParadis",
2725
+ paraId: 2026,
2726
+ providers: [
2727
+ {
2728
+ name: "OnFinality",
2729
+ endpoint: "wss://node-7273232234617282560.nv.onfinality.io/ws?apikey=b937a7d7-7395-49b9-b745-60a0342fa365"
2730
+ }
2731
+ ]
2861
2732
  };
2862
-
2863
- /**
2864
- * The options for the batch builder.
2865
- */
2866
- exports.BatchMode = void 0;
2867
- (function (BatchMode) {
2868
- /**
2869
- * Does not commit if one of the calls in the batch fails.
2870
- */
2871
- BatchMode["BATCH_ALL"] = "BATCH_ALL";
2872
- /**
2873
- * Commits each successful call regardless if a call fails.
2874
- */
2875
- BatchMode["BATCH"] = "BATCH";
2876
- })(exports.BatchMode || (exports.BatchMode = {}));
2877
-
2878
- exports.XTokensError = void 0;
2879
- (function (XTokensError) {
2880
- XTokensError["AssetHasNoReserve"] = "AssetHasNoReserve";
2881
- XTokensError["NotCrossChainTransfer"] = "NotCrossChainTransfer";
2882
- XTokensError["InvalidDest"] = "InvalidDest";
2883
- XTokensError["NotCrossChainTransferableCurrency"] = "NotCrossChainTransferableCurrency";
2884
- XTokensError["UnweighableMessage"] = "UnweighableMessage";
2885
- XTokensError["XcmExecutionFailed"] = "XcmExecutionFailed";
2886
- XTokensError["CannotReanchor"] = "CannotReanchor";
2887
- XTokensError["InvalidAncestry"] = "InvalidAncestry";
2888
- XTokensError["InvalidAsset"] = "InvalidAsset";
2889
- XTokensError["DestinationNotInvertible"] = "DestinationNotInvertible";
2890
- XTokensError["BadVersion"] = "BadVersion";
2891
- XTokensError["DistinctReserveForAssetAndFee"] = "DistinctReserveForAssetAndFee";
2892
- XTokensError["ZeroFee"] = "ZeroFee";
2893
- XTokensError["ZeroAmount"] = "ZeroAmount";
2894
- XTokensError["TooManyAssetsBeingSent"] = "TooManyAssetsBeingSent";
2895
- XTokensError["AssetIndexNonExistent"] = "AssetIndexNonExistent";
2896
- XTokensError["FeeNotEnough"] = "FeeNotEnough";
2897
- XTokensError["NotSupportedLocation"] = "NotSupportedLocation";
2898
- XTokensError["MinXcmFeeNotDefined"] = "MinXcmFeeNotDefined";
2899
- XTokensError["RateLimited"] = "RateLimited";
2900
- })(exports.XTokensError || (exports.XTokensError = {}));
2901
- exports.PolkadotXcmError = void 0;
2902
- (function (PolkadotXcmError) {
2903
- PolkadotXcmError["Unreachable"] = "Unreachable";
2904
- PolkadotXcmError["SendFailure"] = "SendFailure";
2905
- PolkadotXcmError["Filtered"] = "Filtered";
2906
- PolkadotXcmError["UnweighableMessage"] = "UnweighableMessage";
2907
- PolkadotXcmError["DestinationNotInvertible"] = "DestinationNotInvertible";
2908
- PolkadotXcmError["Empty"] = "Empty";
2909
- PolkadotXcmError["CannotReanchor"] = "CannotReanchor";
2910
- PolkadotXcmError["TooManyAssets"] = "TooManyAssets";
2911
- PolkadotXcmError["InvalidOrigin"] = "InvalidOrigin";
2912
- PolkadotXcmError["BadVersion"] = "BadVersion";
2913
- PolkadotXcmError["BadLocation"] = "BadLocation";
2914
- PolkadotXcmError["NoSubscription"] = "NoSubscription";
2915
- PolkadotXcmError["AlreadySubscribed"] = "AlreadySubscribed";
2916
- PolkadotXcmError["CannotCheckOutTeleport"] = "CannotCheckOutTeleport";
2917
- PolkadotXcmError["LowBalance"] = "LowBalance";
2918
- PolkadotXcmError["TooManyLocks"] = "TooManyLocks";
2919
- PolkadotXcmError["AccountNotSovereign"] = "AccountNotSovereign";
2920
- PolkadotXcmError["FeesNotMet"] = "FeesNotMet";
2921
- PolkadotXcmError["LockNotFound"] = "LockNotFound";
2922
- PolkadotXcmError["InUse"] = "InUse";
2923
- PolkadotXcmError["REMOVED"] = "REMOVED";
2924
- PolkadotXcmError["InvalidAssetUnknownReserve"] = "InvalidAssetUnknownReserve";
2925
- PolkadotXcmError["InvalidAssetUnsupportedReserve"] = "InvalidAssetUnsupportedReserve";
2926
- PolkadotXcmError["TooManyReserves"] = "TooManyReserves";
2927
- PolkadotXcmError["LocalExecutionIncomplete"] = "LocalExecutionIncomplete";
2928
- PolkadotXcmError["TooManyAuthorizedAliases"] = "TooManyAuthorizedAliases";
2929
- PolkadotXcmError["ExpiresInPast"] = "ExpiresInPast";
2930
- PolkadotXcmError["AliasNotFound"] = "AliasNotFound";
2931
- PolkadotXcmError["LocalExecutionIncompleteWithError"] = "LocalExecutionIncompleteWithError";
2932
- })(exports.PolkadotXcmError || (exports.PolkadotXcmError = {}));
2933
-
2934
- var resolveModuleError = function resolveModuleError(chain, error) {
2935
- var palletDetails = pallets.getSupportedPalletsDetails(chain).find(function (p) {
2936
- return p.index === Number(error.index);
2937
- });
2938
- if (!palletDetails) {
2939
- throw new InvalidParameterError("Pallet with index ".concat(error.index, " not found"));
2940
- }
2941
- // Use only the first byte of the error to get the error index
2942
- var errorIndex = Number(error.error.slice(0, 4));
2943
- var name = palletDetails.name;
2944
- if (name !== 'XTokens' && name !== 'PolkadotXcm' && name !== 'XcmPallet') {
2945
- throw new InvalidParameterError("Pallet ".concat(name, " is not supported"));
2946
- }
2947
- var failureReason = name === 'XTokens' ? Object.values(exports.XTokensError)[errorIndex] : Object.values(exports.PolkadotXcmError)[errorIndex];
2948
- if (!failureReason) {
2949
- throw new InvalidParameterError("Error index ".concat(errorIndex, " not found in ").concat(name, " pallet"));
2950
- }
2951
- return failureReason;
2733
+ var PAssetHub$1 = {
2734
+ name: "PAssetHub - Contracts",
2735
+ info: "PAssetHub - Contracts",
2736
+ paraId: 1111,
2737
+ providers: [
2738
+ {
2739
+ name: "IBP1",
2740
+ endpoint: "wss://passet-hub-paseo.ibp.network"
2741
+ },
2742
+ {
2743
+ name: "IBP2",
2744
+ endpoint: "wss://passet-hub-paseo.dotters.network"
2745
+ },
2746
+ {
2747
+ name: "Parity",
2748
+ endpoint: "wss://testnet-passet-hub.polkadot.io"
2749
+ }
2750
+ ]
2952
2751
  };
2953
-
2954
- var isAssetHub = function isAssetHub(chain) {
2955
- return chain === 'AssetHubPolkadot' || chain === 'AssetHubKusama';
2752
+ var PeoplePaseo$1 = {
2753
+ name: "People",
2754
+ info: "PaseoPeopleChain",
2755
+ paraId: 1004,
2756
+ providers: [
2757
+ {
2758
+ name: "Amforc",
2759
+ endpoint: "wss://people-paseo.rpc.amforc.com"
2760
+ },
2761
+ {
2762
+ name: "IBP1",
2763
+ endpoint: "wss://sys.ibp.network/people-paseo"
2764
+ },
2765
+ {
2766
+ name: "IBP2",
2767
+ endpoint: "wss://people-paseo.dotters.network"
2768
+ }
2769
+ ]
2956
2770
  };
2957
- var isBridgeHub = function isBridgeHub(chain) {
2958
- return chain === 'BridgeHubPolkadot' || chain === 'BridgeHubKusama';
2771
+ var ZeitgeistPaseo$1 = {
2772
+ name: "Zeitgeist Battery Station",
2773
+ info: "ZeitgeistBatteryStation",
2774
+ paraId: 2101,
2775
+ providers: [
2776
+ {
2777
+ name: "Zeitgeist",
2778
+ endpoint: "wss://bsr.zeitgeist.pm"
2779
+ }
2780
+ ]
2959
2781
  };
2960
- var isPeople = function isPeople(chain) {
2961
- return chain === 'PeoplePolkadot' || chain === 'PeopleKusama';
2782
+ var Polkadot = {
2783
+ name: "Polkadot Relay",
2784
+ info: "polkadot",
2785
+ paraId: 0,
2786
+ providers: [
2787
+ {
2788
+ name: "Allnodes",
2789
+ endpoint: "wss://polkadot-rpc.publicnode.com"
2790
+ },
2791
+ {
2792
+ name: "Blockops",
2793
+ endpoint: "wss://polkadot-public-rpc.blockops.network/ws"
2794
+ },
2795
+ {
2796
+ name: "Dwellir",
2797
+ endpoint: "wss://polkadot-rpc.n.dwellir.com"
2798
+ },
2799
+ {
2800
+ name: "Dwellir Tunisia",
2801
+ endpoint: "wss://polkadot-rpc-tn.dwellir.com"
2802
+ },
2803
+ {
2804
+ name: "Helixstreet",
2805
+ endpoint: "wss://rpc-polkadot.helixstreet.io"
2806
+ },
2807
+ {
2808
+ name: "IBP1",
2809
+ endpoint: "wss://rpc.ibp.network/polkadot"
2810
+ },
2811
+ {
2812
+ name: "IBP2",
2813
+ endpoint: "wss://polkadot.dotters.network"
2814
+ },
2815
+ {
2816
+ name: "LuckyFriday",
2817
+ endpoint: "wss://rpc-polkadot.luckyfriday.io"
2818
+ },
2819
+ {
2820
+ name: "OnFinality",
2821
+ endpoint: "wss://polkadot.api.onfinality.io/public-ws"
2822
+ },
2823
+ {
2824
+ name: "Permanence DAO EU",
2825
+ endpoint: "wss://polkadot.rpc.permanence.io"
2826
+ },
2827
+ {
2828
+ name: "RadiumBlock",
2829
+ endpoint: "wss://polkadot.public.curie.radiumblock.co/ws"
2830
+ },
2831
+ {
2832
+ name: "Simply Staking",
2833
+ endpoint: "wss://spectrum-03.simplystaking.xyz/cG9sa2Fkb3QtMDMtOTFkMmYwZGYtcG9sa2Fkb3Q/LjwBJpV3dIKyWQ/polkadot/mainnet/"
2834
+ },
2835
+ {
2836
+ name: "Stakeworld",
2837
+ endpoint: "wss://dot-rpc.stakeworld.io"
2838
+ },
2839
+ {
2840
+ name: "SubQuery",
2841
+ endpoint: "wss://polkadot.rpc.subquery.network/public/ws"
2842
+ }
2843
+ ]
2962
2844
  };
2963
- var isSystemPara = function isSystemPara(chain) {
2964
- return isAssetHub(chain) || isBridgeHub(chain) || isPeople(chain);
2845
+ var Kusama = {
2846
+ name: "Kusama Relay",
2847
+ info: "kusama",
2848
+ paraId: 0,
2849
+ providers: [
2850
+ {
2851
+ name: "Allnodes",
2852
+ endpoint: "wss://kusama-rpc.publicnode.com"
2853
+ },
2854
+ {
2855
+ name: "Blockops",
2856
+ endpoint: "wss://kusama-public-rpc.blockops.network/ws"
2857
+ },
2858
+ {
2859
+ name: "Dwellir",
2860
+ endpoint: "wss://kusama-rpc.n.dwellir.com"
2861
+ },
2862
+ {
2863
+ name: "Dwellir Tunisia",
2864
+ endpoint: "wss://kusama-rpc-tn.dwellir.com"
2865
+ },
2866
+ {
2867
+ name: "Helixstreet",
2868
+ endpoint: "wss://rpc-kusama.helixstreet.io"
2869
+ },
2870
+ {
2871
+ name: "IBP1",
2872
+ endpoint: "wss://rpc.ibp.network/kusama"
2873
+ },
2874
+ {
2875
+ name: "IBP2",
2876
+ endpoint: "wss://kusama.dotters.network"
2877
+ },
2878
+ {
2879
+ name: "LuckyFriday",
2880
+ endpoint: "wss://rpc-kusama.luckyfriday.io"
2881
+ },
2882
+ {
2883
+ name: "OnFinality",
2884
+ endpoint: "wss://kusama.api.onfinality.io/public-ws"
2885
+ },
2886
+ {
2887
+ name: "RadiumBlock",
2888
+ endpoint: "wss://kusama.public.curie.radiumblock.co/ws"
2889
+ },
2890
+ {
2891
+ name: "Stakeworld",
2892
+ endpoint: "wss://ksm-rpc.stakeworld.io"
2893
+ }
2894
+ ]
2965
2895
  };
2966
- var mul = function mul(v, num) {
2967
- var den = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1n;
2968
- return v * num / den;
2896
+ var Westend = {
2897
+ name: "Westend Relay",
2898
+ info: "westend",
2899
+ paraId: 0,
2900
+ providers: [
2901
+ {
2902
+ name: "Dwellir",
2903
+ endpoint: "wss://westend-rpc.n.dwellir.com"
2904
+ },
2905
+ {
2906
+ name: "Dwellir Tunisia",
2907
+ endpoint: "wss://westend-rpc-tn.dwellir.com"
2908
+ },
2909
+ {
2910
+ name: "OnFinality",
2911
+ endpoint: "wss://westend.api.onfinality.io/public-ws"
2912
+ },
2913
+ {
2914
+ name: "Parity",
2915
+ endpoint: "wss://westend-rpc.polkadot.io"
2916
+ },
2917
+ {
2918
+ name: "RadiumBlock",
2919
+ endpoint: "wss://westend.public.curie.radiumblock.co/ws"
2920
+ }
2921
+ ]
2969
2922
  };
2970
- var padFee = function padFee(raw, origin, dest, side) {
2971
- var relayOrigin = sdkCommon.isRelayChain(origin);
2972
- var relayDest = sdkCommon.isRelayChain(dest);
2973
- var sysParaOrigin = isSystemPara(origin);
2974
- var sysParaDest = isSystemPara(dest);
2975
- var relayToPara = relayOrigin && !relayDest;
2976
- var sysParaToPara = sysParaOrigin && !sysParaDest;
2977
- var paraToPara = !relayOrigin && !sysParaOrigin;
2978
- if (sysParaToPara) return raw * 40n;
2979
- if (relayToPara) return side === 'origin' ? mul(raw, 320n, 100n) : mul(raw, 3000n, 100n);
2980
- if (paraToPara && side == 'origin' && origin === 'Mythos' && dest !== 'Ethereum') {
2981
- return 150000000000000000n;
2982
- }
2983
- if (paraToPara) return mul(raw, 130n, 100n);
2984
- // apply default 30% padding
2985
- return mul(raw, 130n, 100n);
2923
+ var Paseo = {
2924
+ name: "Paseo Relay",
2925
+ info: "paseo",
2926
+ paraId: 0,
2927
+ providers: [
2928
+ {
2929
+ name: "Amforc",
2930
+ endpoint: "wss://paseo.rpc.amforc.com"
2931
+ },
2932
+ {
2933
+ name: "Dwellir",
2934
+ endpoint: "wss://paseo-rpc.n.dwellir.com"
2935
+ },
2936
+ {
2937
+ name: "IBP1",
2938
+ endpoint: "wss://rpc.ibp.network/paseo"
2939
+ },
2940
+ {
2941
+ name: "IBP2",
2942
+ endpoint: "wss://paseo.dotters.network"
2943
+ },
2944
+ {
2945
+ name: "StakeWorld",
2946
+ endpoint: "wss://pas-rpc.stakeworld.io"
2947
+ }
2948
+ ]
2986
2949
  };
2987
- var padFeeBy = function padFeeBy(amount, percent) {
2988
- return mul(amount, BigInt(100 + percent), 100n);
2950
+ var configs = {
2951
+ AssetHubPolkadot: AssetHubPolkadot$1,
2952
+ Acala: Acala$1,
2953
+ Ajuna: Ajuna$1,
2954
+ Astar: Astar$1,
2955
+ BifrostPolkadot: BifrostPolkadot$1,
2956
+ BridgeHubPolkadot: BridgeHubPolkadot$1,
2957
+ Centrifuge: Centrifuge$1,
2958
+ ComposableFinance: ComposableFinance$1,
2959
+ Darwinia: Darwinia$1,
2960
+ EnergyWebX: EnergyWebX$1,
2961
+ Hydration: Hydration$1,
2962
+ IntegriteePolkadot: IntegriteePolkadot$1,
2963
+ Interlay: Interlay$1,
2964
+ Heima: Heima$1,
2965
+ Jamton: Jamton$1,
2966
+ Moonbeam: Moonbeam$1,
2967
+ CoretimePolkadot: CoretimePolkadot$1,
2968
+ Collectives: Collectives$1,
2969
+ Crust: Crust$1,
2970
+ Manta: Manta$1,
2971
+ Nodle: Nodle$1,
2972
+ NeuroWeb: NeuroWeb$1,
2973
+ Pendulum: Pendulum$1,
2974
+ Phala: Phala$1,
2975
+ Subsocial: Subsocial$1,
2976
+ KiltSpiritnet: KiltSpiritnet$1,
2977
+ Curio: Curio$1,
2978
+ Mythos: Mythos$1,
2979
+ Peaq: Peaq$1,
2980
+ Polimec: Polimec$1,
2981
+ RobonomicsPolkadot: RobonomicsPolkadot$1,
2982
+ PeoplePolkadot: PeoplePolkadot$1,
2983
+ Unique: Unique$1,
2984
+ Xode: Xode$1,
2985
+ AssetHubKusama: AssetHubKusama$1,
2986
+ BridgeHubKusama: BridgeHubKusama$1,
2987
+ IntegriteeKusama: IntegriteeKusama$1,
2988
+ Karura: Karura$1,
2989
+ Kintsugi: Kintsugi$1,
2990
+ Moonriver: Moonriver$1,
2991
+ CoretimeKusama: CoretimeKusama$1,
2992
+ Encointer: Encointer$1,
2993
+ Altair: Altair$1,
2994
+ Amplitude: Amplitude$1,
2995
+ Basilisk: Basilisk$1,
2996
+ BifrostKusama: BifrostKusama$1,
2997
+ CrustShadow: CrustShadow$1,
2998
+ Crab: Crab$1,
2999
+ Laos: Laos$1,
3000
+ Quartz: Quartz$1,
3001
+ RobonomicsKusama: RobonomicsKusama$1,
3002
+ PeopleKusama: PeopleKusama$1,
3003
+ Shiden: Shiden$1,
3004
+ Zeitgeist: Zeitgeist$1,
3005
+ AssetHubWestend: AssetHubWestend$1,
3006
+ BridgeHubWestend: BridgeHubWestend$1,
3007
+ CollectivesWestend: CollectivesWestend$1,
3008
+ CoretimeWestend: CoretimeWestend$1,
3009
+ Penpal: Penpal$1,
3010
+ PeopleWestend: PeopleWestend$1,
3011
+ AjunaPaseo: AjunaPaseo$1,
3012
+ AssetHubPaseo: AssetHubPaseo$1,
3013
+ BifrostPaseo: BifrostPaseo$1,
3014
+ BridgeHubPaseo: BridgeHubPaseo$1,
3015
+ CoretimePaseo: CoretimePaseo$1,
3016
+ EnergyWebXPaseo: EnergyWebXPaseo$1,
3017
+ HeimaPaseo: HeimaPaseo$1,
3018
+ HydrationPaseo: HydrationPaseo$1,
3019
+ IntegriteePaseo: IntegriteePaseo$1,
3020
+ KiltPaseo: KiltPaseo$1,
3021
+ LaosPaseo: LaosPaseo$1,
3022
+ NeuroWebPaseo: NeuroWebPaseo$1,
3023
+ NodlePaseo: NodlePaseo$1,
3024
+ PAssetHub: PAssetHub$1,
3025
+ PeoplePaseo: PeoplePaseo$1,
3026
+ ZeitgeistPaseo: ZeitgeistPaseo$1,
3027
+ Polkadot: Polkadot,
3028
+ Kusama: Kusama,
3029
+ Westend: Westend,
3030
+ Paseo: Paseo
2989
3031
  };
2990
3032
 
2991
- var resolveScenario = function resolveScenario(origin, destination) {
2992
- if (sdkCommon.isRelayChain(origin)) return 'RelayToPara';
2993
- var isRelayDestination = !sdkCommon.isTLocation(destination) && sdkCommon.isRelayChain(destination);
2994
- if (isRelayDestination) return 'ParaToRelay';
2995
- return 'ParaToPara';
3033
+ var configsMap = configs;
3034
+ var getChainConfig = function getChainConfig(chain) {
3035
+ return configsMap[chain];
2996
3036
  };
2997
3037
 
2998
- var createX1Payload = function createX1Payload(version, junction) {
2999
- return version === sdkCommon.Version.V3 ? {
3000
- X1: junction
3001
- } : {
3002
- X1: [junction]
3003
- };
3038
+ var getChainProviders = function getChainProviders(chain) {
3039
+ var _getChainConfig = getChainConfig(chain),
3040
+ providers = _getChainConfig.providers;
3041
+ if (providers.length === 0) {
3042
+ throw new InvalidParameterError("No providers found for chain ".concat(chain));
3043
+ }
3044
+ // Prefer Dwellir provider
3045
+ providers.sort(function (a, b) {
3046
+ return (a.name === 'Dwellir' ? 0 : 1) - (b.name === 'Dwellir' ? 0 : 1);
3047
+ });
3048
+ return providers.map(function (p) {
3049
+ return p.endpoint;
3050
+ });
3004
3051
  };
3005
3052
 
3006
- var createAccountPayload = function createAccountPayload(api, address) {
3007
- return viem.isAddress(address) ? {
3008
- AccountKey20: {
3009
- key: address
3010
- }
3011
- } : {
3012
- AccountId32: {
3013
- id: api.accountToHex(address)
3014
- }
3015
- };
3016
- };
3017
- var createBeneficiaryLocXTokens = function createBeneficiaryLocXTokens(_ref) {
3018
- var api = _ref.api,
3019
- recipientAddress = _ref.address,
3020
- origin = _ref.origin,
3021
- destination = _ref.destination,
3022
- version = _ref.version,
3023
- paraId = _ref.paraId;
3024
- if (sdkCommon.isTLocation(recipientAddress)) {
3025
- return recipientAddress;
3026
- }
3027
- var scenario = resolveScenario(origin, destination);
3028
- var accountPayload = createAccountPayload(api, recipientAddress);
3029
- if (scenario === 'ParaToRelay') {
3030
- return {
3031
- parents: sdkCommon.Parents.ONE,
3032
- interior: createX1Payload(version, {
3033
- AccountId32: {
3034
- id: api.accountToHex(recipientAddress)
3035
- }
3036
- })
3037
- };
3038
- } else if (scenario === 'ParaToPara') {
3039
- return {
3040
- parents: sdkCommon.Parents.ONE,
3041
- interior: {
3042
- X2: [{
3043
- Parachain: paraId
3044
- }, accountPayload]
3045
- }
3046
- };
3053
+ /**
3054
+ * Retrieves the parachain ID for a specified chain.
3055
+ *
3056
+ * @param chain - The chain for which to get the paraId.
3057
+ * @returns The parachain ID of the chain.
3058
+ */
3059
+ var getParaId = function getParaId(chain) {
3060
+ if (chain === 'Ethereum') {
3061
+ return ETH_PARA_ID;
3047
3062
  }
3048
- return {
3049
- parents: sdkCommon.Parents.ZERO,
3050
- interior: createX1Payload(version, accountPayload)
3051
- };
3052
- };
3053
- var createBeneficiaryLocation = function createBeneficiaryLocation(_ref2) {
3054
- var api = _ref2.api,
3055
- address = _ref2.address,
3056
- version = _ref2.version;
3057
- if (sdkCommon.isTLocation(address)) return address;
3058
- var accountPayload = createAccountPayload(api, address);
3059
- return {
3060
- parents: sdkCommon.Parents.ZERO,
3061
- interior: createX1Payload(version, accountPayload)
3062
- };
3063
+ return getChainConfig(chain).paraId;
3063
3064
  };
3064
3065
 
3065
3066
  var getChainLocation = function getChainLocation(chain, destChain) {