@luno-kit/core 0.0.10 → 0.0.11

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.
Files changed (47) hide show
  1. package/dist/chain-BcRYsO36.d.cts +194 -0
  2. package/dist/chain-BcRYsO36.d.ts +194 -0
  3. package/dist/chains/index.cjs +1 -1
  4. package/dist/chains/index.d.cts +1 -2
  5. package/dist/chains/index.d.ts +1 -2
  6. package/dist/chains/index.js +1 -1
  7. package/dist/chunk-4237KM7K.js +3 -0
  8. package/dist/chunk-4237KM7K.js.map +1 -0
  9. package/dist/{chunk-UXRZAYEH.cjs → chunk-5F3MRGVJ.cjs} +2 -2
  10. package/dist/chunk-5F3MRGVJ.cjs.map +1 -0
  11. package/dist/{chunk-AND4WL4I.js → chunk-P7YOYVKP.js} +2 -2
  12. package/dist/chunk-P7YOYVKP.js.map +1 -0
  13. package/dist/chunk-QL6JNH54.cjs +3 -0
  14. package/dist/chunk-QL6JNH54.cjs.map +1 -0
  15. package/dist/chunk-UFHE4N3F.cjs +2 -0
  16. package/dist/chunk-UFHE4N3F.cjs.map +1 -0
  17. package/dist/chunk-WICFE46E.js +2 -0
  18. package/dist/chunk-WICFE46E.js.map +1 -0
  19. package/dist/connectors/index.cjs +2 -2
  20. package/dist/connectors/index.cjs.map +1 -1
  21. package/dist/connectors/index.d.cts +33 -7
  22. package/dist/connectors/index.d.ts +33 -7
  23. package/dist/connectors/index.js +2 -2
  24. package/dist/connectors/index.js.map +1 -1
  25. package/dist/index.cjs +1 -1
  26. package/dist/index.cjs.map +1 -1
  27. package/dist/index.d.cts +2 -3
  28. package/dist/index.d.ts +2 -3
  29. package/dist/index.js +1 -1
  30. package/dist/index.js.map +1 -1
  31. package/dist/types/index.cjs +1 -1
  32. package/dist/types/index.cjs.map +1 -1
  33. package/dist/types/index.d.cts +8 -192
  34. package/dist/types/index.d.ts +8 -192
  35. package/dist/types/index.js +1 -1
  36. package/dist/types/index.js.map +1 -1
  37. package/dist/utils/index.cjs +1 -1
  38. package/dist/utils/index.d.cts +3 -3
  39. package/dist/utils/index.d.ts +3 -3
  40. package/dist/utils/index.js +1 -1
  41. package/package.json +4 -1
  42. package/dist/chunk-5WHVXOMN.js +0 -3
  43. package/dist/chunk-5WHVXOMN.js.map +0 -1
  44. package/dist/chunk-AND4WL4I.js.map +0 -1
  45. package/dist/chunk-UXRZAYEH.cjs.map +0 -1
  46. package/dist/chunk-VDC6UBTV.cjs +0 -3
  47. package/dist/chunk-VDC6UBTV.cjs.map +0 -1
@@ -0,0 +1,194 @@
1
+ import { KeypairType, InjectedSigner } from 'dedot/types';
2
+ import { ApiOptions } from 'dedot';
3
+ import { AnyShape } from 'dedot/shape';
4
+ import { Metadata } from '@walletconnect/universal-provider';
5
+ import { EventEmitter } from 'eventemitter3';
6
+
7
+ type HexString = `0x${string}`;
8
+ /**
9
+ * Polkadot account interface
10
+ * Represents a chain account
11
+ */
12
+ interface Account {
13
+ /**
14
+ * account address (original format from wallet)
15
+ * specific SS58 formatting should be done in the React layer based on the chain.
16
+ */
17
+ address: string;
18
+ /** account name (if any) */
19
+ name?: Optional<string>;
20
+ /**
21
+ * account public key (hex format, without 0x prefix)
22
+ * used for cross-chain address conversion and verification
23
+ */
24
+ publicKey?: Optional<HexString>;
25
+ /**
26
+ * other metadata
27
+ * including account source, control method, etc.
28
+ */
29
+ meta?: Optional<{
30
+ /** account source (e.g. 'polkadot-js', 'subwallet-js', 'talisman' etc.) */
31
+ source?: Optional<string>;
32
+ /** genesis hash (if the wallet provides a specific chain account) */
33
+ genesisHash?: Optional<string | null>;
34
+ /** other custom metadata */
35
+ [key: string]: any;
36
+ }>;
37
+ type?: Optional<KeypairType>;
38
+ }
39
+ /**
40
+ * account balance information
41
+ */
42
+ interface AccountBalance {
43
+ /** available balance (in smallest unit) */
44
+ free: bigint;
45
+ /** total balance (in smallest unit) */
46
+ total: bigint;
47
+ /** reserved balance (in smallest unit) */
48
+ reserved: bigint;
49
+ /**
50
+ * transferable balance (in smallest unit)
51
+ * free minus various locked amounts
52
+ */
53
+ transferable: bigint;
54
+ /** formatted available balance (with unit, for display) */
55
+ formattedTransferable: string;
56
+ /** formatted total balance (with unit, for display) */
57
+ formattedTotal: string;
58
+ /** lock details (if any) */
59
+ locks?: Optional<Array<{
60
+ id: string;
61
+ amount: bigint;
62
+ reason: string;
63
+ lockHuman: string;
64
+ }>>;
65
+ }
66
+ /**
67
+ * account type enum
68
+ */
69
+ declare enum ACCOUNT_TYPE {
70
+ /** normal account */
71
+ NORMAL = "normal",
72
+ /** multisig account */
73
+ MULTISIG = "multisig",
74
+ /** proxy account */
75
+ PROXY = "proxy",
76
+ /** smart contract account */
77
+ CONTRACT = "contract"
78
+ }
79
+
80
+ interface Signer extends InjectedSigner {
81
+ }
82
+
83
+ interface ConnectorLinks {
84
+ browserExtension?: Optional<string>;
85
+ deepLink?: Optional<string>;
86
+ }
87
+ interface Connector extends EventEmitter {
88
+ readonly id: string;
89
+ readonly name: string;
90
+ readonly icon: string;
91
+ readonly links: ConnectorLinks;
92
+ isAvailable(): Promise<boolean>;
93
+ isInstalled: () => boolean;
94
+ connect(appName: string, chains?: Optional<Chain[]>, targetChainId?: Optional<string>): Promise<Account[] | undefined>;
95
+ disconnect(): Promise<void>;
96
+ getAccounts(): Promise<Array<Account>>;
97
+ getSigner(): Promise<Signer | undefined>;
98
+ signMessage(message: string, address: string): Promise<string | undefined>;
99
+ hasConnectionUri(): boolean;
100
+ getConnectionUri(): Promise<string | undefined>;
101
+ on(event: 'connect', listener: (accounts: Account[]) => void): this;
102
+ on(event: 'disconnect', listener: () => void): this;
103
+ on(event: 'accountsChanged', listener: (accounts: Account[]) => void): this;
104
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
105
+ off(event: 'connect', listener: (accounts: Account[]) => void): this;
106
+ off(event: 'disconnect', listener: () => void): this;
107
+ off(event: 'accountsChanged', listener: (accounts: Account[]) => void): this;
108
+ off(event: string | symbol, listener: (...args: any[]) => void): this;
109
+ }
110
+ interface WalletConnectConnectorOptions {
111
+ id?: Optional<string>;
112
+ name?: Optional<string>;
113
+ icon?: Optional<string>;
114
+ projectId: string;
115
+ relayUrl?: Optional<string>;
116
+ metadata?: Optional<Metadata>;
117
+ links?: Optional<ConnectorLinks>;
118
+ supportedChains?: Optional<HexString[]>;
119
+ }
120
+
121
+ interface RawStorage {
122
+ getItem(key: string): string | null | Promise<string | null>;
123
+ setItem(key: string, value: string): void | Promise<void>;
124
+ removeItem(key: string): void | Promise<void>;
125
+ }
126
+ interface LunoStorage {
127
+ getItem(keySuffix: string): Promise<string | null>;
128
+ setItem(keySuffix: string, value: string): Promise<void>;
129
+ removeItem(keySuffix: string): Promise<void>;
130
+ }
131
+ type Transport = Readonly<string[]>;
132
+ type LunoApiOptions = Partial<Omit<ApiOptions, 'provider' | 'signer'>> & {
133
+ customTypes?: Optional<Record<string, AnyShape>>;
134
+ customRpc?: Optional<Record<string, any>>;
135
+ };
136
+ interface CreateConfigParameters extends LunoApiOptions {
137
+ appName?: Optional<string>;
138
+ chains?: Optional<readonly Chain[]>;
139
+ connectors: Connector[];
140
+ transports?: Optional<Record<string, Transport>>;
141
+ storage?: Optional<LunoStorage>;
142
+ autoConnect?: Optional<boolean>;
143
+ subscan?: Optional<{
144
+ apiKey: string;
145
+ cacheTime?: Optional<number>;
146
+ retryCount?: Optional<number>;
147
+ }>;
148
+ }
149
+ interface Config extends LunoApiOptions {
150
+ readonly appName: string;
151
+ readonly chains: readonly Chain[];
152
+ readonly connectors: readonly Connector[];
153
+ readonly transports: Readonly<Record<string, Transport>>;
154
+ readonly storage: LunoStorage;
155
+ readonly autoConnect: boolean;
156
+ readonly subscan?: Optional<{
157
+ apiKey: string;
158
+ cacheTime?: Optional<number>;
159
+ retryCount?: Optional<number>;
160
+ }>;
161
+ }
162
+
163
+ interface Chain {
164
+ genesisHash: HexString;
165
+ name: string;
166
+ nativeCurrency: {
167
+ name: string;
168
+ symbol: string;
169
+ decimals: number;
170
+ };
171
+ rpcUrls: {
172
+ webSocket: Transport;
173
+ http?: Optional<readonly string[]>;
174
+ };
175
+ ss58Format: number;
176
+ blockExplorers?: Optional<{
177
+ default?: Optional<{
178
+ name: string;
179
+ url: string;
180
+ }>;
181
+ [key: string]: Optional<{
182
+ name: string;
183
+ url: string;
184
+ }>;
185
+ }>;
186
+ testnet: boolean;
187
+ chainIconUrl: string;
188
+ subscan?: Optional<{
189
+ api: string;
190
+ url: string;
191
+ }>;
192
+ }
193
+
194
+ export { type Account as A, type CreateConfigParameters as C, type HexString as H, type LunoStorage as L, type RawStorage as R, type Signer as S, type Transport as T, type WalletConnectConnectorOptions as W, type Config as a, type Chain as b, type ConnectorLinks as c, type AccountBalance as d, ACCOUNT_TYPE as e, type Connector as f };
@@ -0,0 +1,194 @@
1
+ import { KeypairType, InjectedSigner } from 'dedot/types';
2
+ import { ApiOptions } from 'dedot';
3
+ import { AnyShape } from 'dedot/shape';
4
+ import { Metadata } from '@walletconnect/universal-provider';
5
+ import { EventEmitter } from 'eventemitter3';
6
+
7
+ type HexString = `0x${string}`;
8
+ /**
9
+ * Polkadot account interface
10
+ * Represents a chain account
11
+ */
12
+ interface Account {
13
+ /**
14
+ * account address (original format from wallet)
15
+ * specific SS58 formatting should be done in the React layer based on the chain.
16
+ */
17
+ address: string;
18
+ /** account name (if any) */
19
+ name?: Optional<string>;
20
+ /**
21
+ * account public key (hex format, without 0x prefix)
22
+ * used for cross-chain address conversion and verification
23
+ */
24
+ publicKey?: Optional<HexString>;
25
+ /**
26
+ * other metadata
27
+ * including account source, control method, etc.
28
+ */
29
+ meta?: Optional<{
30
+ /** account source (e.g. 'polkadot-js', 'subwallet-js', 'talisman' etc.) */
31
+ source?: Optional<string>;
32
+ /** genesis hash (if the wallet provides a specific chain account) */
33
+ genesisHash?: Optional<string | null>;
34
+ /** other custom metadata */
35
+ [key: string]: any;
36
+ }>;
37
+ type?: Optional<KeypairType>;
38
+ }
39
+ /**
40
+ * account balance information
41
+ */
42
+ interface AccountBalance {
43
+ /** available balance (in smallest unit) */
44
+ free: bigint;
45
+ /** total balance (in smallest unit) */
46
+ total: bigint;
47
+ /** reserved balance (in smallest unit) */
48
+ reserved: bigint;
49
+ /**
50
+ * transferable balance (in smallest unit)
51
+ * free minus various locked amounts
52
+ */
53
+ transferable: bigint;
54
+ /** formatted available balance (with unit, for display) */
55
+ formattedTransferable: string;
56
+ /** formatted total balance (with unit, for display) */
57
+ formattedTotal: string;
58
+ /** lock details (if any) */
59
+ locks?: Optional<Array<{
60
+ id: string;
61
+ amount: bigint;
62
+ reason: string;
63
+ lockHuman: string;
64
+ }>>;
65
+ }
66
+ /**
67
+ * account type enum
68
+ */
69
+ declare enum ACCOUNT_TYPE {
70
+ /** normal account */
71
+ NORMAL = "normal",
72
+ /** multisig account */
73
+ MULTISIG = "multisig",
74
+ /** proxy account */
75
+ PROXY = "proxy",
76
+ /** smart contract account */
77
+ CONTRACT = "contract"
78
+ }
79
+
80
+ interface Signer extends InjectedSigner {
81
+ }
82
+
83
+ interface ConnectorLinks {
84
+ browserExtension?: Optional<string>;
85
+ deepLink?: Optional<string>;
86
+ }
87
+ interface Connector extends EventEmitter {
88
+ readonly id: string;
89
+ readonly name: string;
90
+ readonly icon: string;
91
+ readonly links: ConnectorLinks;
92
+ isAvailable(): Promise<boolean>;
93
+ isInstalled: () => boolean;
94
+ connect(appName: string, chains?: Optional<Chain[]>, targetChainId?: Optional<string>): Promise<Account[] | undefined>;
95
+ disconnect(): Promise<void>;
96
+ getAccounts(): Promise<Array<Account>>;
97
+ getSigner(): Promise<Signer | undefined>;
98
+ signMessage(message: string, address: string): Promise<string | undefined>;
99
+ hasConnectionUri(): boolean;
100
+ getConnectionUri(): Promise<string | undefined>;
101
+ on(event: 'connect', listener: (accounts: Account[]) => void): this;
102
+ on(event: 'disconnect', listener: () => void): this;
103
+ on(event: 'accountsChanged', listener: (accounts: Account[]) => void): this;
104
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
105
+ off(event: 'connect', listener: (accounts: Account[]) => void): this;
106
+ off(event: 'disconnect', listener: () => void): this;
107
+ off(event: 'accountsChanged', listener: (accounts: Account[]) => void): this;
108
+ off(event: string | symbol, listener: (...args: any[]) => void): this;
109
+ }
110
+ interface WalletConnectConnectorOptions {
111
+ id?: Optional<string>;
112
+ name?: Optional<string>;
113
+ icon?: Optional<string>;
114
+ projectId: string;
115
+ relayUrl?: Optional<string>;
116
+ metadata?: Optional<Metadata>;
117
+ links?: Optional<ConnectorLinks>;
118
+ supportedChains?: Optional<HexString[]>;
119
+ }
120
+
121
+ interface RawStorage {
122
+ getItem(key: string): string | null | Promise<string | null>;
123
+ setItem(key: string, value: string): void | Promise<void>;
124
+ removeItem(key: string): void | Promise<void>;
125
+ }
126
+ interface LunoStorage {
127
+ getItem(keySuffix: string): Promise<string | null>;
128
+ setItem(keySuffix: string, value: string): Promise<void>;
129
+ removeItem(keySuffix: string): Promise<void>;
130
+ }
131
+ type Transport = Readonly<string[]>;
132
+ type LunoApiOptions = Partial<Omit<ApiOptions, 'provider' | 'signer'>> & {
133
+ customTypes?: Optional<Record<string, AnyShape>>;
134
+ customRpc?: Optional<Record<string, any>>;
135
+ };
136
+ interface CreateConfigParameters extends LunoApiOptions {
137
+ appName?: Optional<string>;
138
+ chains?: Optional<readonly Chain[]>;
139
+ connectors: Connector[];
140
+ transports?: Optional<Record<string, Transport>>;
141
+ storage?: Optional<LunoStorage>;
142
+ autoConnect?: Optional<boolean>;
143
+ subscan?: Optional<{
144
+ apiKey: string;
145
+ cacheTime?: Optional<number>;
146
+ retryCount?: Optional<number>;
147
+ }>;
148
+ }
149
+ interface Config extends LunoApiOptions {
150
+ readonly appName: string;
151
+ readonly chains: readonly Chain[];
152
+ readonly connectors: readonly Connector[];
153
+ readonly transports: Readonly<Record<string, Transport>>;
154
+ readonly storage: LunoStorage;
155
+ readonly autoConnect: boolean;
156
+ readonly subscan?: Optional<{
157
+ apiKey: string;
158
+ cacheTime?: Optional<number>;
159
+ retryCount?: Optional<number>;
160
+ }>;
161
+ }
162
+
163
+ interface Chain {
164
+ genesisHash: HexString;
165
+ name: string;
166
+ nativeCurrency: {
167
+ name: string;
168
+ symbol: string;
169
+ decimals: number;
170
+ };
171
+ rpcUrls: {
172
+ webSocket: Transport;
173
+ http?: Optional<readonly string[]>;
174
+ };
175
+ ss58Format: number;
176
+ blockExplorers?: Optional<{
177
+ default?: Optional<{
178
+ name: string;
179
+ url: string;
180
+ }>;
181
+ [key: string]: Optional<{
182
+ name: string;
183
+ url: string;
184
+ }>;
185
+ }>;
186
+ testnet: boolean;
187
+ chainIconUrl: string;
188
+ subscan?: Optional<{
189
+ api: string;
190
+ url: string;
191
+ }>;
192
+ }
193
+
194
+ export { type Account as A, type CreateConfigParameters as C, type HexString as H, type LunoStorage as L, type RawStorage as R, type Signer as S, type Transport as T, type WalletConnectConnectorOptions as W, type Config as a, type Chain as b, type ConnectorLinks as c, type AccountBalance as d, ACCOUNT_TYPE as e, type Connector as f };
@@ -1,3 +1,3 @@
1
- 'use strict';var chunkVDC6UBTV_cjs=require('../chunk-VDC6UBTV.cjs');var d={genesisHash:"0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",name:"Kusama",nativeCurrency:{name:"Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-rpc.polkadot.io","wss://kusama.api.onfinality.io/public-ws"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://kusama.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.j,testnet:false,subscan:{url:"https://kusama.subscan.io",api:"https://kusama.api.subscan.io"}},h={genesisHash:"0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a",name:"AssetHub Kusama",nativeCurrency:{name:"AssetHub Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-asset-hub-rpc.polkadot.io","wss://asset-hub-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://assethub-kusama.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.b,testnet:false,subscan:{url:"https://assethub-kusama.subscan.io",api:"https://assethub-kusama.api.subscan.io"}},k={genesisHash:"0xc1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f",name:"People Kusama",nativeCurrency:{name:"People Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-people-rpc.polkadot.io","wss://people-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://people-kusama.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.o,testnet:false,subscan:{url:"https://people-kusama.subscan.io",api:"https://people-kusama.api.subscan.io"}},f={genesisHash:"0x638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050",name:"Coretime Kusama",nativeCurrency:{name:"Coretime Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-coretime-rpc.polkadot.io","wss://coretime-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://coretime-kusama.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.g,testnet:false,subscan:{url:"https://coretime-kusama.subscan.io",api:"https://coretime-kusama.api.subscan.io"}};var x={genesisHash:"0x77afd6190f1554ad45fd0d31aee62aacc33c6db0ea801129acb813f913e0764f",name:"Paseo",nativeCurrency:{name:"Paseo",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://rpc.ibp.network/paseo","wss://paseo.rpc.amforc.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://paseo.subscan.io/"}},chainIconUrl:chunkVDC6UBTV_cjs.m,testnet:true,subscan:{url:"https://paseo.subscan.io",api:"https://paseo.api.subscan.io"}},y={genesisHash:"0xd6eec26135305a8ad257a20d003357284c8aa03d0bdb2b357ab0a22371e11ef2",name:"AssetHub Paseo",nativeCurrency:{name:"AssetHub Paseo",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://pas-rpc.stakeworld.io/assethub","wss://asset-hub-paseo-rpc.n.dwellir.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://assethub-paseo.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.c,testnet:true,subscan:{url:"https://assethub-paseo.subscan.io",api:"https://assethub-paseo.api.subscan.io"}},S={genesisHash:"0xfd974cf9eaf028f5e44b9fdd1949ab039c6cf9cc54449b0b60d71b042e79aeb6",name:"PAassetHub",nativeCurrency:{name:"PassetHub",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://testnet-passet-hub.polkadot.io","wss://passet-hub-paseo.ibp.network"]},ss58Format:42,chainIconUrl:chunkVDC6UBTV_cjs.c,testnet:true};var v={genesisHash:"0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",name:"Polkadot",nativeCurrency:{name:"Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://rpc.polkadot.io","wss://polkadot.api.onfinality.io/public-ws"],http:["https://rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://polkadot.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.p,testnet:false,subscan:{url:"https://polkadot.subscan.io",api:"https://polkadot.api.subscan.io"}},P={genesisHash:"0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f",name:"AssetHub",nativeCurrency:{name:"AssetHub Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-asset-hub-rpc.polkadot.io","wss://asset-hub-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-asset-hub-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://assethub-polkadot.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.a,testnet:false,subscan:{url:"https://assethub-polkadot.subscan.io",api:"https://assethub-polkadot.api.subscan.io"}},A={genesisHash:"0x67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008",name:"People",nativeCurrency:{name:"People Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-people-rpc.polkadot.io","wss://people-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-people-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://people-polkadot.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.n,testnet:false,subscan:{url:"https://people-polkadot.subscan.io",api:"https://people-polkadot.api.subscan.io"}},K={genesisHash:"0xefb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4",name:"Coretime",nativeCurrency:{name:"Coretime Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-coretime-rpc.polkadot.io","wss://coretime-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-coretime-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://coretime-polkadot.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.f,testnet:false,subscan:{url:"https://coretime-polkadot.subscan.io",api:"https://coretime-polkadot.api.subscan.io"}},g={genesisHash:"0x46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2",name:"Collectives",nativeCurrency:{name:"Collectives Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://collectives-polkadot-rpc.n.dwellir.com","wss://polkadot-collectives-rpc.polkadot.io"],http:["https://collectives-polkadot-rpc.n.dwellir.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://collectives-polkadot.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.e,testnet:false,subscan:{url:"https://collectives-polkadot.subscan.io",api:"https://collectives-polkadot.api.subscan.io"}};var E={genesisHash:"0xe143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e",name:"Westend",nativeCurrency:{name:"Westend",symbol:"WND",decimals:12},rpcUrls:{webSocket:["wss://westend-rpc.polkadot.io","wss://westend-rpc.n.dwellir.com"]},ss58Format:42,blockExplorers:{default:{name:"Subscan",url:"https://westend.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.v,testnet:true,subscan:{url:"https://westend.subscan.io",api:"https://westend.api.subscan.io"}},D={genesisHash:"0x67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9",name:"AssetHub Westend",nativeCurrency:{name:"AssetHub Westend",symbol:"WND",decimals:12},rpcUrls:{webSocket:["wss://westend-asset-hub-rpc.polkadot.io","wss://asset-hub-westend-rpc.n.dwellir.com"]},ss58Format:42,blockExplorers:{default:{name:"Subscan",url:"https://assethub-westend.subscan.io"}},chainIconUrl:chunkVDC6UBTV_cjs.d,testnet:true,subscan:{url:"https://assethub-westend.subscan.io",api:"https://assethub-westend.api.subscan.io"}};
1
+ 'use strict';var chunkQL6JNH54_cjs=require('../chunk-QL6JNH54.cjs');var d={genesisHash:"0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",name:"Kusama",nativeCurrency:{name:"Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-rpc.polkadot.io","wss://kusama.api.onfinality.io/public-ws"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://kusama.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.j,testnet:false,subscan:{url:"https://kusama.subscan.io",api:"https://kusama.api.subscan.io"}},h={genesisHash:"0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a",name:"AssetHub Kusama",nativeCurrency:{name:"AssetHub Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-asset-hub-rpc.polkadot.io","wss://asset-hub-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://assethub-kusama.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.b,testnet:false,subscan:{url:"https://assethub-kusama.subscan.io",api:"https://assethub-kusama.api.subscan.io"}},k={genesisHash:"0xc1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f",name:"People Kusama",nativeCurrency:{name:"People Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-people-rpc.polkadot.io","wss://people-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://people-kusama.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.q,testnet:false,subscan:{url:"https://people-kusama.subscan.io",api:"https://people-kusama.api.subscan.io"}},f={genesisHash:"0x638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050",name:"Coretime Kusama",nativeCurrency:{name:"Coretime Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-coretime-rpc.polkadot.io","wss://coretime-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://coretime-kusama.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.g,testnet:false,subscan:{url:"https://coretime-kusama.subscan.io",api:"https://coretime-kusama.api.subscan.io"}};var x={genesisHash:"0x77afd6190f1554ad45fd0d31aee62aacc33c6db0ea801129acb813f913e0764f",name:"Paseo",nativeCurrency:{name:"Paseo",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://rpc.ibp.network/paseo","wss://paseo.rpc.amforc.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://paseo.subscan.io/"}},chainIconUrl:chunkQL6JNH54_cjs.o,testnet:true,subscan:{url:"https://paseo.subscan.io",api:"https://paseo.api.subscan.io"}},y={genesisHash:"0xd6eec26135305a8ad257a20d003357284c8aa03d0bdb2b357ab0a22371e11ef2",name:"AssetHub Paseo",nativeCurrency:{name:"AssetHub Paseo",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://pas-rpc.stakeworld.io/assethub","wss://asset-hub-paseo-rpc.n.dwellir.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://assethub-paseo.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.c,testnet:true,subscan:{url:"https://assethub-paseo.subscan.io",api:"https://assethub-paseo.api.subscan.io"}},S={genesisHash:"0xfd974cf9eaf028f5e44b9fdd1949ab039c6cf9cc54449b0b60d71b042e79aeb6",name:"PAassetHub",nativeCurrency:{name:"PassetHub",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://testnet-passet-hub.polkadot.io","wss://passet-hub-paseo.ibp.network"]},ss58Format:42,chainIconUrl:chunkQL6JNH54_cjs.c,testnet:true};var v={genesisHash:"0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",name:"Polkadot",nativeCurrency:{name:"Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://rpc.polkadot.io","wss://polkadot.api.onfinality.io/public-ws"],http:["https://rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://polkadot.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.r,testnet:false,subscan:{url:"https://polkadot.subscan.io",api:"https://polkadot.api.subscan.io"}},P={genesisHash:"0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f",name:"AssetHub",nativeCurrency:{name:"AssetHub Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-asset-hub-rpc.polkadot.io","wss://asset-hub-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-asset-hub-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://assethub-polkadot.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.a,testnet:false,subscan:{url:"https://assethub-polkadot.subscan.io",api:"https://assethub-polkadot.api.subscan.io"}},A={genesisHash:"0x67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008",name:"People",nativeCurrency:{name:"People Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-people-rpc.polkadot.io","wss://people-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-people-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://people-polkadot.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.p,testnet:false,subscan:{url:"https://people-polkadot.subscan.io",api:"https://people-polkadot.api.subscan.io"}},K={genesisHash:"0xefb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4",name:"Coretime",nativeCurrency:{name:"Coretime Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-coretime-rpc.polkadot.io","wss://coretime-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-coretime-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://coretime-polkadot.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.f,testnet:false,subscan:{url:"https://coretime-polkadot.subscan.io",api:"https://coretime-polkadot.api.subscan.io"}},g={genesisHash:"0x46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2",name:"Collectives",nativeCurrency:{name:"Collectives Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://collectives-polkadot-rpc.n.dwellir.com","wss://polkadot-collectives-rpc.polkadot.io"],http:["https://collectives-polkadot-rpc.n.dwellir.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://collectives-polkadot.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.e,testnet:false,subscan:{url:"https://collectives-polkadot.subscan.io",api:"https://collectives-polkadot.api.subscan.io"}};var E={genesisHash:"0xe143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e",name:"Westend",nativeCurrency:{name:"Westend",symbol:"WND",decimals:12},rpcUrls:{webSocket:["wss://westend-rpc.polkadot.io","wss://westend-rpc.n.dwellir.com"]},ss58Format:42,blockExplorers:{default:{name:"Subscan",url:"https://westend.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.x,testnet:true,subscan:{url:"https://westend.subscan.io",api:"https://westend.api.subscan.io"}},D={genesisHash:"0x67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9",name:"AssetHub Westend",nativeCurrency:{name:"AssetHub Westend",symbol:"WND",decimals:12},rpcUrls:{webSocket:["wss://westend-asset-hub-rpc.polkadot.io","wss://asset-hub-westend-rpc.n.dwellir.com"]},ss58Format:42,blockExplorers:{default:{name:"Subscan",url:"https://assethub-westend.subscan.io"}},chainIconUrl:chunkQL6JNH54_cjs.d,testnet:true,subscan:{url:"https://assethub-westend.subscan.io",api:"https://assethub-westend.api.subscan.io"}};
2
2
  exports.kusama=d;exports.kusamaAssetHub=h;exports.kusamaCoretime=f;exports.kusamaPeople=k;exports.paseo=x;exports.paseoAssetHub=y;exports.paseoPassetHub=S;exports.polkadot=v;exports.polkadotAssetHub=P;exports.polkadotCollectives=g;exports.polkadotCoretime=K;exports.polkadotPeople=A;exports.westend=E;exports.westendAssetHub=D;//# sourceMappingURL=index.cjs.map
3
3
  //# sourceMappingURL=index.cjs.map
@@ -1,10 +1,9 @@
1
- import { Chain } from '../types/index.cjs';
1
+ import { b as Chain } from '../chain-BcRYsO36.cjs';
2
2
  import 'dedot/types';
3
3
  import 'dedot';
4
4
  import 'dedot/shape';
5
5
  import '@walletconnect/universal-provider';
6
6
  import 'eventemitter3';
7
- import '@polkadot-api/pjs-signer';
8
7
 
9
8
  declare const kusama: Chain;
10
9
  declare const kusamaAssetHub: Chain;
@@ -1,10 +1,9 @@
1
- import { Chain } from '../types/index.js';
1
+ import { b as Chain } from '../chain-BcRYsO36.js';
2
2
  import 'dedot/types';
3
3
  import 'dedot';
4
4
  import 'dedot/shape';
5
5
  import '@walletconnect/universal-provider';
6
6
  import 'eventemitter3';
7
- import '@polkadot-api/pjs-signer';
8
7
 
9
8
  declare const kusama: Chain;
10
9
  declare const kusamaAssetHub: Chain;
@@ -1,3 +1,3 @@
1
- import {j,b,g as g$1,o,m,c,p,a,e,f as f$1,n,v as v$1,d as d$1}from'../chunk-5WHVXOMN.js';var d={genesisHash:"0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",name:"Kusama",nativeCurrency:{name:"Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-rpc.polkadot.io","wss://kusama.api.onfinality.io/public-ws"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://kusama.subscan.io"}},chainIconUrl:j,testnet:false,subscan:{url:"https://kusama.subscan.io",api:"https://kusama.api.subscan.io"}},h={genesisHash:"0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a",name:"AssetHub Kusama",nativeCurrency:{name:"AssetHub Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-asset-hub-rpc.polkadot.io","wss://asset-hub-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://assethub-kusama.subscan.io"}},chainIconUrl:b,testnet:false,subscan:{url:"https://assethub-kusama.subscan.io",api:"https://assethub-kusama.api.subscan.io"}},k={genesisHash:"0xc1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f",name:"People Kusama",nativeCurrency:{name:"People Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-people-rpc.polkadot.io","wss://people-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://people-kusama.subscan.io"}},chainIconUrl:o,testnet:false,subscan:{url:"https://people-kusama.subscan.io",api:"https://people-kusama.api.subscan.io"}},f={genesisHash:"0x638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050",name:"Coretime Kusama",nativeCurrency:{name:"Coretime Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-coretime-rpc.polkadot.io","wss://coretime-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://coretime-kusama.subscan.io"}},chainIconUrl:g$1,testnet:false,subscan:{url:"https://coretime-kusama.subscan.io",api:"https://coretime-kusama.api.subscan.io"}};var x={genesisHash:"0x77afd6190f1554ad45fd0d31aee62aacc33c6db0ea801129acb813f913e0764f",name:"Paseo",nativeCurrency:{name:"Paseo",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://rpc.ibp.network/paseo","wss://paseo.rpc.amforc.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://paseo.subscan.io/"}},chainIconUrl:m,testnet:true,subscan:{url:"https://paseo.subscan.io",api:"https://paseo.api.subscan.io"}},y={genesisHash:"0xd6eec26135305a8ad257a20d003357284c8aa03d0bdb2b357ab0a22371e11ef2",name:"AssetHub Paseo",nativeCurrency:{name:"AssetHub Paseo",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://pas-rpc.stakeworld.io/assethub","wss://asset-hub-paseo-rpc.n.dwellir.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://assethub-paseo.subscan.io"}},chainIconUrl:c,testnet:true,subscan:{url:"https://assethub-paseo.subscan.io",api:"https://assethub-paseo.api.subscan.io"}},S={genesisHash:"0xfd974cf9eaf028f5e44b9fdd1949ab039c6cf9cc54449b0b60d71b042e79aeb6",name:"PAassetHub",nativeCurrency:{name:"PassetHub",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://testnet-passet-hub.polkadot.io","wss://passet-hub-paseo.ibp.network"]},ss58Format:42,chainIconUrl:c,testnet:true};var v={genesisHash:"0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",name:"Polkadot",nativeCurrency:{name:"Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://rpc.polkadot.io","wss://polkadot.api.onfinality.io/public-ws"],http:["https://rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://polkadot.subscan.io"}},chainIconUrl:p,testnet:false,subscan:{url:"https://polkadot.subscan.io",api:"https://polkadot.api.subscan.io"}},P={genesisHash:"0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f",name:"AssetHub",nativeCurrency:{name:"AssetHub Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-asset-hub-rpc.polkadot.io","wss://asset-hub-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-asset-hub-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://assethub-polkadot.subscan.io"}},chainIconUrl:a,testnet:false,subscan:{url:"https://assethub-polkadot.subscan.io",api:"https://assethub-polkadot.api.subscan.io"}},A={genesisHash:"0x67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008",name:"People",nativeCurrency:{name:"People Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-people-rpc.polkadot.io","wss://people-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-people-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://people-polkadot.subscan.io"}},chainIconUrl:n,testnet:false,subscan:{url:"https://people-polkadot.subscan.io",api:"https://people-polkadot.api.subscan.io"}},K={genesisHash:"0xefb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4",name:"Coretime",nativeCurrency:{name:"Coretime Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-coretime-rpc.polkadot.io","wss://coretime-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-coretime-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://coretime-polkadot.subscan.io"}},chainIconUrl:f$1,testnet:false,subscan:{url:"https://coretime-polkadot.subscan.io",api:"https://coretime-polkadot.api.subscan.io"}},g={genesisHash:"0x46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2",name:"Collectives",nativeCurrency:{name:"Collectives Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://collectives-polkadot-rpc.n.dwellir.com","wss://polkadot-collectives-rpc.polkadot.io"],http:["https://collectives-polkadot-rpc.n.dwellir.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://collectives-polkadot.subscan.io"}},chainIconUrl:e,testnet:false,subscan:{url:"https://collectives-polkadot.subscan.io",api:"https://collectives-polkadot.api.subscan.io"}};var E={genesisHash:"0xe143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e",name:"Westend",nativeCurrency:{name:"Westend",symbol:"WND",decimals:12},rpcUrls:{webSocket:["wss://westend-rpc.polkadot.io","wss://westend-rpc.n.dwellir.com"]},ss58Format:42,blockExplorers:{default:{name:"Subscan",url:"https://westend.subscan.io"}},chainIconUrl:v$1,testnet:true,subscan:{url:"https://westend.subscan.io",api:"https://westend.api.subscan.io"}},D={genesisHash:"0x67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9",name:"AssetHub Westend",nativeCurrency:{name:"AssetHub Westend",symbol:"WND",decimals:12},rpcUrls:{webSocket:["wss://westend-asset-hub-rpc.polkadot.io","wss://asset-hub-westend-rpc.n.dwellir.com"]},ss58Format:42,blockExplorers:{default:{name:"Subscan",url:"https://assethub-westend.subscan.io"}},chainIconUrl:d$1,testnet:true,subscan:{url:"https://assethub-westend.subscan.io",api:"https://assethub-westend.api.subscan.io"}};
1
+ import {j,b,g as g$1,q,o,c,r,a,e,f as f$1,p,x as x$1,d as d$1}from'../chunk-4237KM7K.js';var d={genesisHash:"0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",name:"Kusama",nativeCurrency:{name:"Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-rpc.polkadot.io","wss://kusama.api.onfinality.io/public-ws"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://kusama.subscan.io"}},chainIconUrl:j,testnet:false,subscan:{url:"https://kusama.subscan.io",api:"https://kusama.api.subscan.io"}},h={genesisHash:"0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a",name:"AssetHub Kusama",nativeCurrency:{name:"AssetHub Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-asset-hub-rpc.polkadot.io","wss://asset-hub-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://assethub-kusama.subscan.io"}},chainIconUrl:b,testnet:false,subscan:{url:"https://assethub-kusama.subscan.io",api:"https://assethub-kusama.api.subscan.io"}},k={genesisHash:"0xc1af4cb4eb3918e5db15086c0cc5ec17fb334f728b7c65dd44bfe1e174ff8b3f",name:"People Kusama",nativeCurrency:{name:"People Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-people-rpc.polkadot.io","wss://people-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://people-kusama.subscan.io"}},chainIconUrl:q,testnet:false,subscan:{url:"https://people-kusama.subscan.io",api:"https://people-kusama.api.subscan.io"}},f={genesisHash:"0x638cd2b9af4b3bb54b8c1f0d22711fc89924ca93300f0caf25a580432b29d050",name:"Coretime Kusama",nativeCurrency:{name:"Coretime Kusama",symbol:"KSM",decimals:12},rpcUrls:{webSocket:["wss://kusama-coretime-rpc.polkadot.io","wss://coretime-kusama-rpc.n.dwellir.com"]},ss58Format:2,blockExplorers:{default:{name:"Subscan",url:"https://coretime-kusama.subscan.io"}},chainIconUrl:g$1,testnet:false,subscan:{url:"https://coretime-kusama.subscan.io",api:"https://coretime-kusama.api.subscan.io"}};var x={genesisHash:"0x77afd6190f1554ad45fd0d31aee62aacc33c6db0ea801129acb813f913e0764f",name:"Paseo",nativeCurrency:{name:"Paseo",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://rpc.ibp.network/paseo","wss://paseo.rpc.amforc.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://paseo.subscan.io/"}},chainIconUrl:o,testnet:true,subscan:{url:"https://paseo.subscan.io",api:"https://paseo.api.subscan.io"}},y={genesisHash:"0xd6eec26135305a8ad257a20d003357284c8aa03d0bdb2b357ab0a22371e11ef2",name:"AssetHub Paseo",nativeCurrency:{name:"AssetHub Paseo",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://pas-rpc.stakeworld.io/assethub","wss://asset-hub-paseo-rpc.n.dwellir.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://assethub-paseo.subscan.io"}},chainIconUrl:c,testnet:true,subscan:{url:"https://assethub-paseo.subscan.io",api:"https://assethub-paseo.api.subscan.io"}},S={genesisHash:"0xfd974cf9eaf028f5e44b9fdd1949ab039c6cf9cc54449b0b60d71b042e79aeb6",name:"PAassetHub",nativeCurrency:{name:"PassetHub",symbol:"PAS",decimals:10},rpcUrls:{webSocket:["wss://testnet-passet-hub.polkadot.io","wss://passet-hub-paseo.ibp.network"]},ss58Format:42,chainIconUrl:c,testnet:true};var v={genesisHash:"0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",name:"Polkadot",nativeCurrency:{name:"Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://rpc.polkadot.io","wss://polkadot.api.onfinality.io/public-ws"],http:["https://rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://polkadot.subscan.io"}},chainIconUrl:r,testnet:false,subscan:{url:"https://polkadot.subscan.io",api:"https://polkadot.api.subscan.io"}},P={genesisHash:"0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f",name:"AssetHub",nativeCurrency:{name:"AssetHub Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-asset-hub-rpc.polkadot.io","wss://asset-hub-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-asset-hub-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://assethub-polkadot.subscan.io"}},chainIconUrl:a,testnet:false,subscan:{url:"https://assethub-polkadot.subscan.io",api:"https://assethub-polkadot.api.subscan.io"}},A={genesisHash:"0x67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008",name:"People",nativeCurrency:{name:"People Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-people-rpc.polkadot.io","wss://people-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-people-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://people-polkadot.subscan.io"}},chainIconUrl:p,testnet:false,subscan:{url:"https://people-polkadot.subscan.io",api:"https://people-polkadot.api.subscan.io"}},K={genesisHash:"0xefb56e30d9b4a24099f88820987d0f45fb645992416535d87650d98e00f46fc4",name:"Coretime",nativeCurrency:{name:"Coretime Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://polkadot-coretime-rpc.polkadot.io","wss://coretime-polkadot-rpc.n.dwellir.com"],http:["https://polkadot-coretime-rpc.polkadot.io"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://coretime-polkadot.subscan.io"}},chainIconUrl:f$1,testnet:false,subscan:{url:"https://coretime-polkadot.subscan.io",api:"https://coretime-polkadot.api.subscan.io"}},g={genesisHash:"0x46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2",name:"Collectives",nativeCurrency:{name:"Collectives Polkadot",symbol:"DOT",decimals:10},rpcUrls:{webSocket:["wss://collectives-polkadot-rpc.n.dwellir.com","wss://polkadot-collectives-rpc.polkadot.io"],http:["https://collectives-polkadot-rpc.n.dwellir.com"]},ss58Format:0,blockExplorers:{default:{name:"Subscan",url:"https://collectives-polkadot.subscan.io"}},chainIconUrl:e,testnet:false,subscan:{url:"https://collectives-polkadot.subscan.io",api:"https://collectives-polkadot.api.subscan.io"}};var E={genesisHash:"0xe143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e",name:"Westend",nativeCurrency:{name:"Westend",symbol:"WND",decimals:12},rpcUrls:{webSocket:["wss://westend-rpc.polkadot.io","wss://westend-rpc.n.dwellir.com"]},ss58Format:42,blockExplorers:{default:{name:"Subscan",url:"https://westend.subscan.io"}},chainIconUrl:x$1,testnet:true,subscan:{url:"https://westend.subscan.io",api:"https://westend.api.subscan.io"}},D={genesisHash:"0x67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9",name:"AssetHub Westend",nativeCurrency:{name:"AssetHub Westend",symbol:"WND",decimals:12},rpcUrls:{webSocket:["wss://westend-asset-hub-rpc.polkadot.io","wss://asset-hub-westend-rpc.n.dwellir.com"]},ss58Format:42,blockExplorers:{default:{name:"Subscan",url:"https://assethub-westend.subscan.io"}},chainIconUrl:d$1,testnet:true,subscan:{url:"https://assethub-westend.subscan.io",api:"https://assethub-westend.api.subscan.io"}};
2
2
  export{d as kusama,h as kusamaAssetHub,f as kusamaCoretime,k as kusamaPeople,x as paseo,y as paseoAssetHub,S as paseoPassetHub,v as polkadot,P as polkadotAssetHub,g as polkadotCollectives,K as polkadotCoretime,A as polkadotPeople,E as westend,D as westendAssetHub};//# sourceMappingURL=index.js.map
3
3
  //# sourceMappingURL=index.js.map