@bitgo-beta/abstract-substrate 1.0.1-beta.59 → 1.0.1-beta.591
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/src/abstractSubstrateCoin.d.ts +57 -23
- package/dist/src/abstractSubstrateCoin.d.ts.map +1 -1
- package/dist/src/abstractSubstrateCoin.js +335 -62
- package/dist/src/lib/constants.d.ts +2 -0
- package/dist/src/lib/constants.d.ts.map +1 -0
- package/dist/src/lib/constants.js +5 -0
- package/dist/src/lib/errors.d.ts +8 -0
- package/dist/src/lib/errors.d.ts.map +1 -0
- package/dist/src/lib/errors.js +19 -0
- package/dist/src/lib/iface.d.ts +115 -202
- package/dist/src/lib/iface.d.ts.map +1 -1
- package/dist/src/lib/iface.js +35 -80
- package/dist/src/lib/index.d.ts +9 -2
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +22 -4
- package/dist/src/lib/keyPair.d.ts +6 -13
- package/dist/src/lib/keyPair.d.ts.map +1 -1
- package/dist/src/lib/keyPair.js +12 -19
- package/dist/src/lib/nativeTransferBuilder.d.ts +61 -0
- package/dist/src/lib/nativeTransferBuilder.d.ts.map +1 -0
- package/dist/src/lib/nativeTransferBuilder.js +150 -0
- package/dist/src/lib/singletonRegistry.d.ts +8 -0
- package/dist/src/lib/singletonRegistry.d.ts.map +1 -0
- package/dist/src/lib/singletonRegistry.js +20 -0
- package/dist/src/lib/transaction.d.ts +74 -0
- package/dist/src/lib/transaction.d.ts.map +1 -0
- package/dist/src/lib/transaction.js +553 -0
- package/dist/src/lib/transactionBuilder.d.ts +121 -0
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -0
- package/dist/src/lib/transactionBuilder.js +334 -0
- package/dist/src/lib/transferBuilder.d.ts +6 -0
- package/dist/src/lib/transferBuilder.d.ts.map +1 -0
- package/dist/src/lib/transferBuilder.js +11 -0
- package/dist/src/lib/txnSchema.d.ts +12 -0
- package/dist/src/lib/txnSchema.d.ts.map +1 -0
- package/dist/src/lib/txnSchema.js +71 -0
- package/dist/src/lib/utils.d.ts +21 -140
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +52 -238
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +13 -5
- package/.eslintignore +0 -5
- package/.mocharc.yml +0 -8
- package/CHANGELOG.md +0 -32
- package/dist/src/lib/iface_utils.d.ts +0 -59
- package/dist/src/lib/iface_utils.d.ts.map +0 -1
- package/dist/src/lib/iface_utils.js +0 -92
- package/dist/src/resources/index.d.ts +0 -3
- package/dist/src/resources/index.d.ts.map +0 -1
- package/dist/src/resources/index.js +0 -19
- package/dist/src/resources/mainnet.d.ts +0 -2
- package/dist/src/resources/mainnet.d.ts.map +0 -1
- package/dist/src/resources/mainnet.js +0 -5
- package/dist/src/resources/westend.d.ts +0 -2
- package/dist/src/resources/westend.d.ts.map +0 -1
- package/dist/src/resources/westend.js +0 -5
package/dist/src/lib/iface.d.ts
CHANGED
|
@@ -1,110 +1,89 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { SignTransactionOptions as BaseSignTransactionOptions, TransactionExplanation as BaseTransactionExplanation, TransactionType } from '@bitgo-beta/sdk-core';
|
|
2
|
+
import { BaseTxInfo, DecodedUnsignedTx, TypeRegistry } from '@substrate/txwrapper-core/lib/types';
|
|
3
|
+
import { Args } from '@substrate/txwrapper-core/lib/types/method';
|
|
4
4
|
export { HexString } from '@polkadot/util/types';
|
|
5
5
|
/**
|
|
6
6
|
* Section names for the transaction methods.
|
|
7
7
|
*/
|
|
8
8
|
export declare enum SectionNames {
|
|
9
|
-
Proxy = "proxy"
|
|
10
|
-
Staking = "staking"
|
|
9
|
+
Proxy = "proxy"
|
|
11
10
|
}
|
|
12
11
|
/**
|
|
13
12
|
* Method names for the transaction method. Names change based on the type of transaction e.g 'bond' for the staking transaction
|
|
13
|
+
*
|
|
14
|
+
* This is implemented as a const object with string literals to allow for extension in derived modules.
|
|
14
15
|
*/
|
|
15
|
-
export declare
|
|
16
|
+
export declare const MethodNames: {
|
|
16
17
|
/**
|
|
17
|
-
*
|
|
18
|
+
* Transfer the entire transferable balance from the caller account.
|
|
18
19
|
*
|
|
19
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#
|
|
20
|
+
* @see https://polkadot.js.org/docs/substrate/extrinsics/#transferalldest-multiaddress-keep_alive-bool
|
|
20
21
|
*/
|
|
21
|
-
|
|
22
|
+
readonly TransferAll: "transferAll";
|
|
22
23
|
/**
|
|
23
|
-
*
|
|
24
|
+
* Same as the transfer call, but with a check that the transfer will not kill the origin account.
|
|
24
25
|
*
|
|
25
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#
|
|
26
|
+
* @see https://polkadot.js.org/docs/substrate/extrinsics/#transferkeepalivedest-multiaddress-value-compactu128
|
|
26
27
|
*/
|
|
27
|
-
|
|
28
|
+
readonly TransferKeepAlive: "transferKeepAlive";
|
|
28
29
|
/**
|
|
29
|
-
*
|
|
30
|
+
* Transfer funds with an optional memo attached.
|
|
31
|
+
* The memo allows adding context or metadata to the transaction, commonly used for recordkeeping or identification.
|
|
30
32
|
*
|
|
31
|
-
* @see https://
|
|
33
|
+
* @see https://developers.polymesh.network/sdk-docs/enums/Generated/Types/BalancesTx/#transferwithmemo
|
|
32
34
|
*/
|
|
33
|
-
|
|
35
|
+
readonly TransferWithMemo: "transferWithMemo";
|
|
36
|
+
readonly AddStake: "addStake";
|
|
37
|
+
readonly RemoveStake: "removeStake";
|
|
34
38
|
/**
|
|
35
|
-
* Take the origin account as a stash and lock up value of its balance.
|
|
36
|
-
*
|
|
37
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#bondcontroller-multiaddress-value-compactu128-payee-palletstakingrewarddestination
|
|
39
|
+
* Take the origin account as a stash and lock up value of its balance.
|
|
38
40
|
*/
|
|
39
|
-
Bond
|
|
41
|
+
readonly Bond: "bond";
|
|
40
42
|
/**
|
|
41
43
|
* Add some extra amount that have appeared in the stash free_balance into the balance up for staking.
|
|
42
|
-
*
|
|
43
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#bondextramax_additional-compactu128
|
|
44
44
|
*/
|
|
45
|
-
BondExtra
|
|
45
|
+
readonly BondExtra: "bondExtra";
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#transferalldest-multiaddress-keep_alive-bool
|
|
47
|
+
* Declare the desire to nominate targets for the origin controller.
|
|
50
48
|
*/
|
|
51
|
-
|
|
49
|
+
readonly Nominate: "nominate";
|
|
52
50
|
/**
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#transferkeepalivedest-multiaddress-value-compactu128
|
|
51
|
+
* Declare no desire to either validate or nominate.
|
|
56
52
|
*/
|
|
57
|
-
|
|
53
|
+
readonly Chill: "chill";
|
|
58
54
|
/**
|
|
59
55
|
* Schedule a portion of the stash to be unlocked ready for transfer out after the bond period ends.
|
|
60
|
-
*
|
|
61
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#unbondvalue-compactu128
|
|
62
|
-
*/
|
|
63
|
-
Unbond = "unbond",
|
|
64
|
-
/**
|
|
65
|
-
* @deprecated Anonymous proxies were renamed to pure proxies.
|
|
66
|
-
*
|
|
67
|
-
* @see PureProxy
|
|
68
|
-
* @see https://polkadot.polkassembly.io/referendum/84
|
|
69
56
|
*/
|
|
70
|
-
|
|
57
|
+
readonly Unbond: "unbond";
|
|
71
58
|
/**
|
|
72
|
-
*
|
|
73
|
-
*
|
|
74
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#createpureproxy_type-kitchensinkruntimeproxytype-delay-u32-index-u16
|
|
59
|
+
* Remove any unlocked chunks from the unlocking queue from our management.
|
|
75
60
|
*/
|
|
76
|
-
|
|
61
|
+
readonly WithdrawUnbonded: "withdrawUnbonded";
|
|
77
62
|
/**
|
|
78
63
|
* Send a batch of dispatch calls.
|
|
79
|
-
*
|
|
80
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#batchcalls-veccall
|
|
81
64
|
*/
|
|
82
|
-
Batch
|
|
65
|
+
readonly Batch: "batch";
|
|
83
66
|
/**
|
|
84
|
-
* Send a batch of dispatch calls and atomically execute them.
|
|
85
|
-
*
|
|
86
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#batchallcalls-veccall
|
|
67
|
+
* Send a batch of dispatch calls and atomically execute them.
|
|
87
68
|
*/
|
|
88
|
-
BatchAll
|
|
69
|
+
readonly BatchAll: "batchAll";
|
|
89
70
|
/**
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#chill
|
|
71
|
+
* Transfer stake from one validator to another.
|
|
93
72
|
*/
|
|
94
|
-
|
|
73
|
+
readonly TransferStake: "transferStake";
|
|
95
74
|
/**
|
|
96
|
-
*
|
|
97
|
-
*
|
|
98
|
-
* @see https://polkadot.js.org/docs/substrate/extrinsics/#withdrawunbondednum_slashing_spans-u32
|
|
75
|
+
* Move stake from one hotkey to another.
|
|
99
76
|
*/
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
77
|
+
readonly MoveStake: "moveStake";
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Type representing the keys of the MethodNames object
|
|
81
|
+
*/
|
|
82
|
+
export type MethodNamesType = keyof typeof MethodNames;
|
|
83
|
+
/**
|
|
84
|
+
* Type representing the values of the MethodNames object
|
|
85
|
+
*/
|
|
86
|
+
export type MethodNamesValues = (typeof MethodNames)[MethodNamesType];
|
|
108
87
|
/**
|
|
109
88
|
* The transaction data returned from the toJson() function of a transaction
|
|
110
89
|
*/
|
|
@@ -124,18 +103,12 @@ export interface TxData {
|
|
|
124
103
|
to?: string;
|
|
125
104
|
tip?: number;
|
|
126
105
|
eraPeriod?: number;
|
|
127
|
-
controller?: string;
|
|
128
106
|
payee?: string;
|
|
129
|
-
owner?: string;
|
|
130
|
-
proxyType?: string;
|
|
131
|
-
delay?: string;
|
|
132
|
-
forceProxyType?: ProxyType;
|
|
133
|
-
index?: string;
|
|
134
|
-
batchCalls?: BatchCallObject[];
|
|
135
|
-
numSlashingSpans?: number;
|
|
136
|
-
validatorStash?: string;
|
|
137
|
-
claimEra?: string;
|
|
138
107
|
keepAlive?: boolean;
|
|
108
|
+
netuid?: string;
|
|
109
|
+
numSlashingSpans?: number;
|
|
110
|
+
batchCalls?: BatchCallObject[];
|
|
111
|
+
memo?: string;
|
|
139
112
|
}
|
|
140
113
|
/**
|
|
141
114
|
* Transaction method specific args
|
|
@@ -155,143 +128,72 @@ export interface TransferAllArgs {
|
|
|
155
128
|
};
|
|
156
129
|
keepAlive: boolean;
|
|
157
130
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
*/
|
|
161
|
-
export type StakeArgsPayee = 'Staked' | 'Stash' | 'Controller' | {
|
|
162
|
-
Account: string;
|
|
163
|
-
};
|
|
164
|
-
/**
|
|
165
|
-
* Transaction method specific args
|
|
166
|
-
*/
|
|
167
|
-
export type StakeArgsPayeeRaw = {
|
|
168
|
-
controller?: null;
|
|
169
|
-
stash?: null;
|
|
170
|
-
staked?: null;
|
|
171
|
-
account?: string;
|
|
172
|
-
};
|
|
173
|
-
/**
|
|
174
|
-
* Transaction method specific args
|
|
175
|
-
*/
|
|
176
|
-
export interface StakeArgs {
|
|
177
|
-
value: string;
|
|
178
|
-
controller: {
|
|
131
|
+
export interface TransferWithMemoArgs extends Args {
|
|
132
|
+
dest: {
|
|
179
133
|
id: string;
|
|
180
134
|
};
|
|
181
|
-
|
|
135
|
+
value: string;
|
|
136
|
+
memo: string;
|
|
182
137
|
}
|
|
183
|
-
export interface
|
|
184
|
-
|
|
138
|
+
export interface AddStakeArgs extends Args {
|
|
139
|
+
amountStaked: string;
|
|
140
|
+
hotkey: string;
|
|
141
|
+
netuid: string;
|
|
185
142
|
}
|
|
186
|
-
export interface
|
|
187
|
-
|
|
143
|
+
export interface RemoveStakeArgs extends Args {
|
|
144
|
+
amountUnstaked: string;
|
|
145
|
+
hotkey: string;
|
|
146
|
+
netuid: string;
|
|
188
147
|
}
|
|
189
|
-
export interface
|
|
148
|
+
export interface BondArgs extends Args {
|
|
190
149
|
value: string;
|
|
150
|
+
controller: string;
|
|
151
|
+
payee: string | {
|
|
152
|
+
Account: string;
|
|
153
|
+
};
|
|
191
154
|
}
|
|
192
|
-
export interface
|
|
193
|
-
|
|
155
|
+
export interface BondExtraArgs extends Args {
|
|
156
|
+
maxAdditional: string;
|
|
194
157
|
}
|
|
195
|
-
export interface
|
|
196
|
-
|
|
197
|
-
era: string;
|
|
158
|
+
export interface NominateArgs extends Args {
|
|
159
|
+
targets: string[];
|
|
198
160
|
}
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
* https://wiki.polkadot.network/docs/learn-proxies#proxy-types
|
|
202
|
-
*/
|
|
203
|
-
export declare enum ProxyType {
|
|
204
|
-
ANY = "Any",
|
|
205
|
-
NON_TRANSFER = "NonTransfer",
|
|
206
|
-
STAKING = "Staking",
|
|
207
|
-
IDENTTITY_JUDGEMENT = "IdentityJudgement",
|
|
208
|
-
CANCEL_PROXY = "CancelProxy"
|
|
161
|
+
export interface ChillArgs extends Args {
|
|
162
|
+
[key: string]: never;
|
|
209
163
|
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
*/
|
|
213
|
-
export interface AddProxyArgs {
|
|
214
|
-
delegate: string | AccountId;
|
|
215
|
-
delay: string;
|
|
216
|
-
proxyType: ProxyType;
|
|
164
|
+
export interface UnbondArgs extends Args {
|
|
165
|
+
value: string;
|
|
217
166
|
}
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
export interface
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
delay: string;
|
|
167
|
+
export interface WithdrawUnbondedArgs extends Args {
|
|
168
|
+
numSlashingSpans: number;
|
|
169
|
+
}
|
|
170
|
+
export interface BatchCallObject {
|
|
171
|
+
method: string;
|
|
172
|
+
args: Record<string, unknown>;
|
|
225
173
|
}
|
|
226
|
-
/**
|
|
227
|
-
* Transaction method specific args
|
|
228
|
-
*/
|
|
229
|
-
export type BatchCallObject = {
|
|
230
|
-
callIndex: string;
|
|
231
|
-
args: Record<string, any> | AddProxyBatchCallArgs | AddAnonymousProxyBatchCallArgs | StakeBatchCallArgs | StakeMoreArgs | StakeMoreCallArgs | UnbondCallArgs;
|
|
232
|
-
};
|
|
233
174
|
export interface BatchArgs {
|
|
234
175
|
calls: BatchCallObject[];
|
|
235
176
|
}
|
|
236
|
-
export interface
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
177
|
+
export interface TransferStakeArgs extends Args {
|
|
178
|
+
destinationColdkey: string;
|
|
179
|
+
hotkey: string;
|
|
180
|
+
originNetuid: string;
|
|
181
|
+
destinationNetuid: string;
|
|
182
|
+
alphaAmount: string;
|
|
240
183
|
}
|
|
241
|
-
export interface
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
id: string;
|
|
248
|
-
};
|
|
249
|
-
export type StakeBatchCallPayeeStaked = {
|
|
250
|
-
staked: null;
|
|
251
|
-
};
|
|
252
|
-
export type StakeBatchCallPayeeStash = {
|
|
253
|
-
stash: null;
|
|
254
|
-
};
|
|
255
|
-
export type StakeBatchCallPayeeController = {
|
|
256
|
-
controller: null;
|
|
257
|
-
};
|
|
258
|
-
export type StakeBatchCallPayeeAccount = {
|
|
259
|
-
account: string;
|
|
260
|
-
};
|
|
261
|
-
export type StakeBatchCallPayee = StakeBatchCallPayeeStaked | StakeBatchCallPayeeStash | StakeBatchCallPayeeController | StakeBatchCallPayeeAccount;
|
|
262
|
-
export interface StakeBatchCallArgs {
|
|
263
|
-
value: string;
|
|
264
|
-
controller?: {
|
|
265
|
-
id: string;
|
|
266
|
-
};
|
|
267
|
-
payee: StakeBatchCallPayee;
|
|
268
|
-
}
|
|
269
|
-
export interface UnstakeBatchCallArgs {
|
|
270
|
-
value: string;
|
|
271
|
-
}
|
|
272
|
-
export interface UnbondCallArgs {
|
|
273
|
-
value: string;
|
|
274
|
-
}
|
|
275
|
-
/**
|
|
276
|
-
* Transaction method specific args
|
|
277
|
-
*/
|
|
278
|
-
export type ProxyCallArgs = {
|
|
279
|
-
callIndex: string;
|
|
280
|
-
args: TransferArgs;
|
|
281
|
-
};
|
|
282
|
-
/**
|
|
283
|
-
* Transaction method specific args
|
|
284
|
-
*/
|
|
285
|
-
export interface ProxyArgs {
|
|
286
|
-
real: string | AccountId;
|
|
287
|
-
forceProxyType: ProxyType;
|
|
184
|
+
export interface MoveStakeArgs extends Args {
|
|
185
|
+
originHotkey: string;
|
|
186
|
+
destinationHotkey: string;
|
|
187
|
+
originNetuid: string;
|
|
188
|
+
destinationNetuid: string;
|
|
189
|
+
alphaAmount: string;
|
|
288
190
|
}
|
|
289
191
|
/**
|
|
290
192
|
* Decoded TxMethod from a transaction hex
|
|
291
193
|
*/
|
|
292
194
|
export interface TxMethod {
|
|
293
|
-
args: TransferArgs | TransferAllArgs |
|
|
294
|
-
name:
|
|
195
|
+
args: TransferArgs | TransferAllArgs | AddStakeArgs | RemoveStakeArgs | BondArgs | BondExtraArgs | NominateArgs | ChillArgs | UnbondArgs | WithdrawUnbondedArgs | BatchArgs | TransferStakeArgs | MoveStakeArgs;
|
|
196
|
+
name: MethodNamesValues;
|
|
295
197
|
pallet: string;
|
|
296
198
|
}
|
|
297
199
|
/**
|
|
@@ -313,25 +215,36 @@ export interface CreateBaseTxInfo {
|
|
|
313
215
|
}
|
|
314
216
|
export interface TransactionExplanation extends BaseTransactionExplanation {
|
|
315
217
|
type: TransactionType;
|
|
316
|
-
forceProxyType?: ProxyType;
|
|
317
|
-
controller?: string;
|
|
318
218
|
payee?: string;
|
|
319
|
-
owner?: string;
|
|
320
|
-
proxyType?: string;
|
|
321
|
-
delay?: string;
|
|
322
219
|
}
|
|
323
220
|
export declare enum TransactionTypes {
|
|
324
|
-
TRANSFER = "transfer"
|
|
325
|
-
STAKING = "staking",
|
|
326
|
-
ADDR_INIT = "addressInitialization",
|
|
327
|
-
UNSTAKING = "unstaking"
|
|
221
|
+
TRANSFER = "transfer"
|
|
328
222
|
}
|
|
329
223
|
export interface Material {
|
|
330
224
|
genesisHash: string;
|
|
331
225
|
chainName: string;
|
|
332
|
-
specName:
|
|
226
|
+
specName: string;
|
|
333
227
|
specVersion: number;
|
|
334
228
|
txVersion: number;
|
|
335
229
|
metadata: `0x${string}`;
|
|
336
230
|
}
|
|
231
|
+
export interface SignTransactionOptions extends BaseSignTransactionOptions {
|
|
232
|
+
txPrebuild: TransactionPrebuild;
|
|
233
|
+
prv: string;
|
|
234
|
+
}
|
|
235
|
+
export interface TransactionPrebuild {
|
|
236
|
+
txHex: string;
|
|
237
|
+
transaction: TxData;
|
|
238
|
+
}
|
|
239
|
+
export interface ExplainTransactionOptions {
|
|
240
|
+
txPrebuild: TransactionPrebuild;
|
|
241
|
+
publicKey: string;
|
|
242
|
+
feeInfo: {
|
|
243
|
+
fee: string;
|
|
244
|
+
};
|
|
245
|
+
}
|
|
246
|
+
export interface VerifiedTransactionParameters {
|
|
247
|
+
txHex: string;
|
|
248
|
+
prv: string;
|
|
249
|
+
}
|
|
337
250
|
//# sourceMappingURL=iface.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iface.d.ts","sourceRoot":"","sources":["../../../src/lib/iface.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"iface.d.ts","sourceRoot":"","sources":["../../../src/lib/iface.ts"],"names":[],"mappings":"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"}
|