@bitgo/public-types 5.71.0 → 5.73.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/src/schema/transactionRequest/intents/index.d.ts +4 -0
- package/dist/src/schema/transactionRequest/intents/index.js +4 -0
- package/dist/src/schema/transactionRequest/intents/index.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/intent.d.ts +236 -0
- package/dist/src/schema/transactionRequest/intents/intent.js +8 -0
- package/dist/src/schema/transactionRequest/intents/intent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/tonMultiNominatorDelegateIntent.d.ts +64 -0
- package/dist/src/schema/transactionRequest/intents/tonMultiNominatorDelegateIntent.js +40 -0
- package/dist/src/schema/transactionRequest/intents/tonMultiNominatorDelegateIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/tonMultiNominatorUndelegateIntent.d.ts +59 -0
- package/dist/src/schema/transactionRequest/intents/tonMultiNominatorUndelegateIntent.js +39 -0
- package/dist/src/schema/transactionRequest/intents/tonMultiNominatorUndelegateIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/tonSingleNominatorDelegateIntent.d.ts +65 -0
- package/dist/src/schema/transactionRequest/intents/tonSingleNominatorDelegateIntent.js +41 -0
- package/dist/src/schema/transactionRequest/intents/tonSingleNominatorDelegateIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/tonSingleNominatorUndelegateIntent.d.ts +64 -0
- package/dist/src/schema/transactionRequest/intents/tonSingleNominatorUndelegateIntent.js +40 -0
- package/dist/src/schema/transactionRequest/intents/tonSingleNominatorUndelegateIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/transactionRequest.d.ts +472 -0
- package/dist/src/schema/webhook/webhookType.d.ts +2 -1
- package/dist/src/schema/webhook/webhookType.js +1 -0
- package/dist/src/schema/webhook/webhookType.js.map +1 -1
- package/package.json +1 -1
- package/src/schema/transactionRequest/intents/index.ts +4 -0
- package/src/schema/transactionRequest/intents/intent.ts +8 -0
- package/src/schema/transactionRequest/intents/tonMultiNominatorDelegateIntent.ts +27 -0
- package/src/schema/transactionRequest/intents/tonMultiNominatorUndelegateIntent.ts +26 -0
- package/src/schema/transactionRequest/intents/tonSingleNominatorDelegateIntent.ts +29 -0
- package/src/schema/transactionRequest/intents/tonSingleNominatorUndelegateIntent.ts +27 -0
- package/src/schema/webhook/webhookType.ts +3 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.TonSingleNominatorDelegateIntent = void 0;
|
|
27
|
+
const t = __importStar(require("io-ts"));
|
|
28
|
+
const intentType_1 = require("./intentType");
|
|
29
|
+
const tonStakingType_1 = require("./tonStakingType");
|
|
30
|
+
const baseIntent_1 = require("./baseIntent");
|
|
31
|
+
exports.TonSingleNominatorDelegateIntent = t.intersection([
|
|
32
|
+
baseIntent_1.BaseIntent,
|
|
33
|
+
baseIntent_1.BaseIntentWithAmount,
|
|
34
|
+
t.type({
|
|
35
|
+
intentType: intentType_1.intentTypes.delegate,
|
|
36
|
+
validatorAddress: t.string,
|
|
37
|
+
ownerAddress: t.string,
|
|
38
|
+
tonStakingType: t.literal(tonStakingType_1.TonStakingTypeEnum.SINGLE_NOMINATOR),
|
|
39
|
+
}),
|
|
40
|
+
]);
|
|
41
|
+
//# sourceMappingURL=tonSingleNominatorDelegateIntent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tonSingleNominatorDelegateIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/tonSingleNominatorDelegateIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAA2C;AAC3C,qDAAsD;AACtD,6CAAgE;AAYnD,QAAA,gCAAgC,GAAG,CAAC,CAAC,YAAY,CAAC;IAC7D,uBAAU;IACV,iCAAoB;IACpB,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,QAAQ;QAChC,gBAAgB,EAAE,CAAC,CAAC,MAAM;QAC1B,YAAY,EAAE,CAAC,CAAC,MAAM;QACtB,cAAc,EAAE,CAAC,CAAC,OAAO,CAAC,mCAAkB,CAAC,gBAAgB,CAAC;KAC/D,CAAC;CACH,CAAC,CAAC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as t from "io-ts";
|
|
2
|
+
import { TonStakingTypeEnum } from "./tonStakingType";
|
|
3
|
+
export declare const TonSingleNominatorUndelegateIntent: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
4
|
+
intentType: t.KeyofC<{
|
|
5
|
+
payment: t.LiteralC<"payment">;
|
|
6
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
7
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
8
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
9
|
+
fanout: t.LiteralC<"fanout">;
|
|
10
|
+
stake: t.LiteralC<"stake">;
|
|
11
|
+
unstake: t.LiteralC<"unstake">;
|
|
12
|
+
delegate: t.LiteralC<"delegate">;
|
|
13
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
14
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
15
|
+
claim: t.LiteralC<"claim">;
|
|
16
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
17
|
+
pledge: t.LiteralC<"pledge">;
|
|
18
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
19
|
+
vote: t.LiteralC<"vote">;
|
|
20
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
21
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
22
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
23
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
24
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
25
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
26
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
27
|
+
authorize: t.LiteralC<"authorize">;
|
|
28
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
29
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
30
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
31
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
32
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
33
|
+
customTx: t.LiteralC<"customTx">;
|
|
34
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
35
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
36
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
37
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
38
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
39
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
40
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
41
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
42
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
43
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
44
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
45
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
46
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
47
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
48
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
49
|
+
}>;
|
|
50
|
+
}>, t.PartialC<{
|
|
51
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
52
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
53
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
54
|
+
}>]>, t.TypeC<{
|
|
55
|
+
amount: t.TypeC<{
|
|
56
|
+
value: t.StringC;
|
|
57
|
+
symbol: t.StringC;
|
|
58
|
+
}>;
|
|
59
|
+
}>, t.TypeC<{
|
|
60
|
+
intentType: t.LiteralC<"undelegate">;
|
|
61
|
+
validatorAddress: t.StringC;
|
|
62
|
+
tonStakingType: t.LiteralC<TonStakingTypeEnum.SINGLE_NOMINATOR>;
|
|
63
|
+
}>]>;
|
|
64
|
+
export type TonSingleNominatorUndelegateIntent = t.TypeOf<typeof TonSingleNominatorUndelegateIntent>;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.TonSingleNominatorUndelegateIntent = void 0;
|
|
27
|
+
const t = __importStar(require("io-ts"));
|
|
28
|
+
const intentType_1 = require("./intentType");
|
|
29
|
+
const tonStakingType_1 = require("./tonStakingType");
|
|
30
|
+
const baseIntent_1 = require("./baseIntent");
|
|
31
|
+
exports.TonSingleNominatorUndelegateIntent = t.intersection([
|
|
32
|
+
baseIntent_1.BaseIntent,
|
|
33
|
+
baseIntent_1.BaseIntentWithAmount,
|
|
34
|
+
t.type({
|
|
35
|
+
intentType: intentType_1.intentTypes.undelegate,
|
|
36
|
+
validatorAddress: t.string,
|
|
37
|
+
tonStakingType: t.literal(tonStakingType_1.TonStakingTypeEnum.SINGLE_NOMINATOR),
|
|
38
|
+
}),
|
|
39
|
+
]);
|
|
40
|
+
//# sourceMappingURL=tonSingleNominatorUndelegateIntent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tonSingleNominatorUndelegateIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/tonSingleNominatorUndelegateIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAA2C;AAC3C,qDAAsD;AACtD,6CAAgE;AAWnD,QAAA,kCAAkC,GAAG,CAAC,CAAC,YAAY,CAAC;IAC/D,uBAAU;IACV,iCAAoB;IACpB,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,UAAU;QAClC,gBAAgB,EAAE,CAAC,CAAC,MAAM;QAC1B,cAAc,EAAE,CAAC,CAAC,OAAO,CAAC,mCAAkB,CAAC,gBAAgB,CAAC;KAC/D,CAAC;CACH,CAAC,CAAC"}
|
|
@@ -6454,6 +6454,121 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
6454
6454
|
}>, t.PartialC<{
|
|
6455
6455
|
ownerAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6456
6456
|
tonStakingType: t.KeyofC<typeof import(".").TonStakingTypeEnum>;
|
|
6457
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
6458
|
+
intentType: t.KeyofC<{
|
|
6459
|
+
payment: t.LiteralC<"payment">;
|
|
6460
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
6461
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
6462
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
6463
|
+
fanout: t.LiteralC<"fanout">;
|
|
6464
|
+
stake: t.LiteralC<"stake">;
|
|
6465
|
+
unstake: t.LiteralC<"unstake">;
|
|
6466
|
+
delegate: t.LiteralC<"delegate">;
|
|
6467
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
6468
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
6469
|
+
claim: t.LiteralC<"claim">;
|
|
6470
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
6471
|
+
pledge: t.LiteralC<"pledge">;
|
|
6472
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
6473
|
+
vote: t.LiteralC<"vote">;
|
|
6474
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
6475
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
6476
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
6477
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
6478
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
6479
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
6480
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
6481
|
+
authorize: t.LiteralC<"authorize">;
|
|
6482
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
6483
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
6484
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
6485
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
6486
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
6487
|
+
customTx: t.LiteralC<"customTx">;
|
|
6488
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
6489
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
6490
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
6491
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
6492
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
6493
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
6494
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
6495
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
6496
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
6497
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
6498
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
6499
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
6500
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
6501
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
6502
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
6503
|
+
}>;
|
|
6504
|
+
}>, t.PartialC<{
|
|
6505
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6506
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6507
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
6508
|
+
}>]>, t.TypeC<{
|
|
6509
|
+
amount: t.TypeC<{
|
|
6510
|
+
value: t.StringC;
|
|
6511
|
+
symbol: t.StringC;
|
|
6512
|
+
}>;
|
|
6513
|
+
}>, t.TypeC<{
|
|
6514
|
+
intentType: t.LiteralC<"delegate">;
|
|
6515
|
+
validatorAddress: t.StringC;
|
|
6516
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.MULTI_NOMINATOR>;
|
|
6517
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
6518
|
+
intentType: t.KeyofC<{
|
|
6519
|
+
payment: t.LiteralC<"payment">;
|
|
6520
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
6521
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
6522
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
6523
|
+
fanout: t.LiteralC<"fanout">;
|
|
6524
|
+
stake: t.LiteralC<"stake">;
|
|
6525
|
+
unstake: t.LiteralC<"unstake">;
|
|
6526
|
+
delegate: t.LiteralC<"delegate">;
|
|
6527
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
6528
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
6529
|
+
claim: t.LiteralC<"claim">;
|
|
6530
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
6531
|
+
pledge: t.LiteralC<"pledge">;
|
|
6532
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
6533
|
+
vote: t.LiteralC<"vote">;
|
|
6534
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
6535
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
6536
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
6537
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
6538
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
6539
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
6540
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
6541
|
+
authorize: t.LiteralC<"authorize">;
|
|
6542
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
6543
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
6544
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
6545
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
6546
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
6547
|
+
customTx: t.LiteralC<"customTx">;
|
|
6548
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
6549
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
6550
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
6551
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
6552
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
6553
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
6554
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
6555
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
6556
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
6557
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
6558
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
6559
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
6560
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
6561
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
6562
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
6563
|
+
}>;
|
|
6564
|
+
}>, t.PartialC<{
|
|
6565
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6566
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6567
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
6568
|
+
}>]>, t.TypeC<{
|
|
6569
|
+
intentType: t.LiteralC<"undelegate">;
|
|
6570
|
+
validatorAddress: t.StringC;
|
|
6571
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.MULTI_NOMINATOR>;
|
|
6457
6572
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
6458
6573
|
intentType: t.KeyofC<{
|
|
6459
6574
|
payment: t.LiteralC<"payment">;
|
|
@@ -6580,6 +6695,127 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
6580
6695
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6581
6696
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6582
6697
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
6698
|
+
}>]>, t.TypeC<{
|
|
6699
|
+
amount: t.TypeC<{
|
|
6700
|
+
value: t.StringC;
|
|
6701
|
+
symbol: t.StringC;
|
|
6702
|
+
}>;
|
|
6703
|
+
}>, t.TypeC<{
|
|
6704
|
+
intentType: t.LiteralC<"delegate">;
|
|
6705
|
+
validatorAddress: t.StringC;
|
|
6706
|
+
ownerAddress: t.StringC;
|
|
6707
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.SINGLE_NOMINATOR>;
|
|
6708
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
6709
|
+
intentType: t.KeyofC<{
|
|
6710
|
+
payment: t.LiteralC<"payment">;
|
|
6711
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
6712
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
6713
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
6714
|
+
fanout: t.LiteralC<"fanout">;
|
|
6715
|
+
stake: t.LiteralC<"stake">;
|
|
6716
|
+
unstake: t.LiteralC<"unstake">;
|
|
6717
|
+
delegate: t.LiteralC<"delegate">;
|
|
6718
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
6719
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
6720
|
+
claim: t.LiteralC<"claim">;
|
|
6721
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
6722
|
+
pledge: t.LiteralC<"pledge">;
|
|
6723
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
6724
|
+
vote: t.LiteralC<"vote">;
|
|
6725
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
6726
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
6727
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
6728
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
6729
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
6730
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
6731
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
6732
|
+
authorize: t.LiteralC<"authorize">;
|
|
6733
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
6734
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
6735
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
6736
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
6737
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
6738
|
+
customTx: t.LiteralC<"customTx">;
|
|
6739
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
6740
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
6741
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
6742
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
6743
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
6744
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
6745
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
6746
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
6747
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
6748
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
6749
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
6750
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
6751
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
6752
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
6753
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
6754
|
+
}>;
|
|
6755
|
+
}>, t.PartialC<{
|
|
6756
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6757
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6758
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
6759
|
+
}>]>, t.TypeC<{
|
|
6760
|
+
amount: t.TypeC<{
|
|
6761
|
+
value: t.StringC;
|
|
6762
|
+
symbol: t.StringC;
|
|
6763
|
+
}>;
|
|
6764
|
+
}>, t.TypeC<{
|
|
6765
|
+
intentType: t.LiteralC<"undelegate">;
|
|
6766
|
+
validatorAddress: t.StringC;
|
|
6767
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.SINGLE_NOMINATOR>;
|
|
6768
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
6769
|
+
intentType: t.KeyofC<{
|
|
6770
|
+
payment: t.LiteralC<"payment">;
|
|
6771
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
6772
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
6773
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
6774
|
+
fanout: t.LiteralC<"fanout">;
|
|
6775
|
+
stake: t.LiteralC<"stake">;
|
|
6776
|
+
unstake: t.LiteralC<"unstake">;
|
|
6777
|
+
delegate: t.LiteralC<"delegate">;
|
|
6778
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
6779
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
6780
|
+
claim: t.LiteralC<"claim">;
|
|
6781
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
6782
|
+
pledge: t.LiteralC<"pledge">;
|
|
6783
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
6784
|
+
vote: t.LiteralC<"vote">;
|
|
6785
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
6786
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
6787
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
6788
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
6789
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
6790
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
6791
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
6792
|
+
authorize: t.LiteralC<"authorize">;
|
|
6793
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
6794
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
6795
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
6796
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
6797
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
6798
|
+
customTx: t.LiteralC<"customTx">;
|
|
6799
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
6800
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
6801
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
6802
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
6803
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
6804
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
6805
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
6806
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
6807
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
6808
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
6809
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
6810
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
6811
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
6812
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
6813
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
6814
|
+
}>;
|
|
6815
|
+
}>, t.PartialC<{
|
|
6816
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6817
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
6818
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
6583
6819
|
}>]>, t.TypeC<{
|
|
6584
6820
|
intentType: t.LiteralC<"undelegate">;
|
|
6585
6821
|
validatorAddress: t.StringC;
|
|
@@ -14724,6 +14960,121 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14724
14960
|
}>, t.PartialC<{
|
|
14725
14961
|
ownerAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14726
14962
|
tonStakingType: t.KeyofC<typeof import(".").TonStakingTypeEnum>;
|
|
14963
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14964
|
+
intentType: t.KeyofC<{
|
|
14965
|
+
payment: t.LiteralC<"payment">;
|
|
14966
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
14967
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
14968
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
14969
|
+
fanout: t.LiteralC<"fanout">;
|
|
14970
|
+
stake: t.LiteralC<"stake">;
|
|
14971
|
+
unstake: t.LiteralC<"unstake">;
|
|
14972
|
+
delegate: t.LiteralC<"delegate">;
|
|
14973
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
14974
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
14975
|
+
claim: t.LiteralC<"claim">;
|
|
14976
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
14977
|
+
pledge: t.LiteralC<"pledge">;
|
|
14978
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
14979
|
+
vote: t.LiteralC<"vote">;
|
|
14980
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
14981
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
14982
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
14983
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
14984
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
14985
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
14986
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
14987
|
+
authorize: t.LiteralC<"authorize">;
|
|
14988
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
14989
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
14990
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
14991
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
14992
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
14993
|
+
customTx: t.LiteralC<"customTx">;
|
|
14994
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
14995
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
14996
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
14997
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
14998
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
14999
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
15000
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
15001
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
15002
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
15003
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
15004
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
15005
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
15006
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
15007
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
15008
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
15009
|
+
}>;
|
|
15010
|
+
}>, t.PartialC<{
|
|
15011
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15012
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15013
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15014
|
+
}>]>, t.TypeC<{
|
|
15015
|
+
amount: t.TypeC<{
|
|
15016
|
+
value: t.StringC;
|
|
15017
|
+
symbol: t.StringC;
|
|
15018
|
+
}>;
|
|
15019
|
+
}>, t.TypeC<{
|
|
15020
|
+
intentType: t.LiteralC<"delegate">;
|
|
15021
|
+
validatorAddress: t.StringC;
|
|
15022
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.MULTI_NOMINATOR>;
|
|
15023
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15024
|
+
intentType: t.KeyofC<{
|
|
15025
|
+
payment: t.LiteralC<"payment">;
|
|
15026
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
15027
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
15028
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
15029
|
+
fanout: t.LiteralC<"fanout">;
|
|
15030
|
+
stake: t.LiteralC<"stake">;
|
|
15031
|
+
unstake: t.LiteralC<"unstake">;
|
|
15032
|
+
delegate: t.LiteralC<"delegate">;
|
|
15033
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
15034
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
15035
|
+
claim: t.LiteralC<"claim">;
|
|
15036
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
15037
|
+
pledge: t.LiteralC<"pledge">;
|
|
15038
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
15039
|
+
vote: t.LiteralC<"vote">;
|
|
15040
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
15041
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
15042
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
15043
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
15044
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
15045
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
15046
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
15047
|
+
authorize: t.LiteralC<"authorize">;
|
|
15048
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
15049
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
15050
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
15051
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
15052
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
15053
|
+
customTx: t.LiteralC<"customTx">;
|
|
15054
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
15055
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
15056
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
15057
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
15058
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
15059
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
15060
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
15061
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
15062
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
15063
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
15064
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
15065
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
15066
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
15067
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
15068
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
15069
|
+
}>;
|
|
15070
|
+
}>, t.PartialC<{
|
|
15071
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15072
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15073
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15074
|
+
}>]>, t.TypeC<{
|
|
15075
|
+
intentType: t.LiteralC<"undelegate">;
|
|
15076
|
+
validatorAddress: t.StringC;
|
|
15077
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.MULTI_NOMINATOR>;
|
|
14727
15078
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14728
15079
|
intentType: t.KeyofC<{
|
|
14729
15080
|
payment: t.LiteralC<"payment">;
|
|
@@ -14850,6 +15201,127 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14850
15201
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14851
15202
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14852
15203
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15204
|
+
}>]>, t.TypeC<{
|
|
15205
|
+
amount: t.TypeC<{
|
|
15206
|
+
value: t.StringC;
|
|
15207
|
+
symbol: t.StringC;
|
|
15208
|
+
}>;
|
|
15209
|
+
}>, t.TypeC<{
|
|
15210
|
+
intentType: t.LiteralC<"delegate">;
|
|
15211
|
+
validatorAddress: t.StringC;
|
|
15212
|
+
ownerAddress: t.StringC;
|
|
15213
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.SINGLE_NOMINATOR>;
|
|
15214
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15215
|
+
intentType: t.KeyofC<{
|
|
15216
|
+
payment: t.LiteralC<"payment">;
|
|
15217
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
15218
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
15219
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
15220
|
+
fanout: t.LiteralC<"fanout">;
|
|
15221
|
+
stake: t.LiteralC<"stake">;
|
|
15222
|
+
unstake: t.LiteralC<"unstake">;
|
|
15223
|
+
delegate: t.LiteralC<"delegate">;
|
|
15224
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
15225
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
15226
|
+
claim: t.LiteralC<"claim">;
|
|
15227
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
15228
|
+
pledge: t.LiteralC<"pledge">;
|
|
15229
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
15230
|
+
vote: t.LiteralC<"vote">;
|
|
15231
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
15232
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
15233
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
15234
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
15235
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
15236
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
15237
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
15238
|
+
authorize: t.LiteralC<"authorize">;
|
|
15239
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
15240
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
15241
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
15242
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
15243
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
15244
|
+
customTx: t.LiteralC<"customTx">;
|
|
15245
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
15246
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
15247
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
15248
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
15249
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
15250
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
15251
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
15252
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
15253
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
15254
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
15255
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
15256
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
15257
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
15258
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
15259
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
15260
|
+
}>;
|
|
15261
|
+
}>, t.PartialC<{
|
|
15262
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15263
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15264
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15265
|
+
}>]>, t.TypeC<{
|
|
15266
|
+
amount: t.TypeC<{
|
|
15267
|
+
value: t.StringC;
|
|
15268
|
+
symbol: t.StringC;
|
|
15269
|
+
}>;
|
|
15270
|
+
}>, t.TypeC<{
|
|
15271
|
+
intentType: t.LiteralC<"undelegate">;
|
|
15272
|
+
validatorAddress: t.StringC;
|
|
15273
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.SINGLE_NOMINATOR>;
|
|
15274
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15275
|
+
intentType: t.KeyofC<{
|
|
15276
|
+
payment: t.LiteralC<"payment">;
|
|
15277
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
15278
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
15279
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
15280
|
+
fanout: t.LiteralC<"fanout">;
|
|
15281
|
+
stake: t.LiteralC<"stake">;
|
|
15282
|
+
unstake: t.LiteralC<"unstake">;
|
|
15283
|
+
delegate: t.LiteralC<"delegate">;
|
|
15284
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
15285
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
15286
|
+
claim: t.LiteralC<"claim">;
|
|
15287
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
15288
|
+
pledge: t.LiteralC<"pledge">;
|
|
15289
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
15290
|
+
vote: t.LiteralC<"vote">;
|
|
15291
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
15292
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
15293
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
15294
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
15295
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
15296
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
15297
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
15298
|
+
authorize: t.LiteralC<"authorize">;
|
|
15299
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
15300
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
15301
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
15302
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
15303
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
15304
|
+
customTx: t.LiteralC<"customTx">;
|
|
15305
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
15306
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
15307
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
15308
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
15309
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
15310
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
15311
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
15312
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
15313
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
15314
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
15315
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
15316
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
15317
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
15318
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
15319
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
15320
|
+
}>;
|
|
15321
|
+
}>, t.PartialC<{
|
|
15322
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15323
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15324
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14853
15325
|
}>]>, t.TypeC<{
|
|
14854
15326
|
intentType: t.LiteralC<"undelegate">;
|
|
14855
15327
|
validatorAddress: t.StringC;
|