@bitgo/public-types 5.94.0 → 5.95.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 +5 -0
- package/dist/src/schema/transactionRequest/intents/index.js +5 -0
- package/dist/src/schema/transactionRequest/intents/index.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/intent.d.ts +363 -0
- package/dist/src/schema/transactionRequest/intents/intent.js +10 -0
- package/dist/src/schema/transactionRequest/intents/intent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/trxClaimRewardsIntent.d.ts +74 -0
- package/dist/src/schema/transactionRequest/intents/trxClaimRewardsIntent.js +39 -0
- package/dist/src/schema/transactionRequest/intents/trxClaimRewardsIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/trxFreezeIntent.d.ts +76 -0
- package/dist/src/schema/transactionRequest/intents/trxFreezeIntent.js +41 -0
- package/dist/src/schema/transactionRequest/intents/trxFreezeIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/trxUnfreezeIntent.d.ts +75 -0
- package/dist/src/schema/transactionRequest/intents/trxUnfreezeIntent.js +40 -0
- package/dist/src/schema/transactionRequest/intents/trxUnfreezeIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/trxVoteIntent.d.ts +84 -0
- package/dist/src/schema/transactionRequest/intents/trxVoteIntent.js +45 -0
- package/dist/src/schema/transactionRequest/intents/trxVoteIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/trxWithdrawExpireUnfreezeIntent.d.ts +74 -0
- package/dist/src/schema/transactionRequest/intents/trxWithdrawExpireUnfreezeIntent.js +39 -0
- package/dist/src/schema/transactionRequest/intents/trxWithdrawExpireUnfreezeIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/transactionRequest.d.ts +2202 -1476
- package/package.json +1 -1
- package/src/schema/transactionRequest/intents/index.ts +5 -0
- package/src/schema/transactionRequest/intents/intent.ts +10 -0
- package/src/schema/transactionRequest/intents/trxClaimRewardsIntent.ts +18 -0
- package/src/schema/transactionRequest/intents/trxFreezeIntent.ts +20 -0
- package/src/schema/transactionRequest/intents/trxUnfreezeIntent.ts +19 -0
- package/src/schema/transactionRequest/intents/trxVoteIntent.ts +27 -0
- package/src/schema/transactionRequest/intents/trxWithdrawExpireUnfreezeIntent.ts +20 -0
|
@@ -8218,7 +8218,7 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8218
8218
|
symbol: t.StringC;
|
|
8219
8219
|
}>;
|
|
8220
8220
|
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.TON_WHALES>;
|
|
8221
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.
|
|
8221
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8222
8222
|
intentType: t.KeyofC<{
|
|
8223
8223
|
payment: t.LiteralC<"payment">;
|
|
8224
8224
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8281,17 +8281,15 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8281
8281
|
stakingRequestId: t.StringC;
|
|
8282
8282
|
}>, t.PartialC<{
|
|
8283
8283
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8284
|
-
}>]>, t.TypeC<{
|
|
8285
|
-
intentType: t.LiteralC<"stake">;
|
|
8286
8284
|
}>]>, t.TypeC<{
|
|
8287
8285
|
amount: t.TypeC<{
|
|
8288
8286
|
value: t.StringC;
|
|
8289
8287
|
symbol: t.StringC;
|
|
8290
8288
|
}>;
|
|
8291
8289
|
}>, t.TypeC<{
|
|
8292
|
-
|
|
8293
|
-
|
|
8294
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.
|
|
8290
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
8291
|
+
ownerAddress: t.StringC;
|
|
8292
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8295
8293
|
intentType: t.KeyofC<{
|
|
8296
8294
|
payment: t.LiteralC<"payment">;
|
|
8297
8295
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8355,12 +8353,16 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8355
8353
|
}>, t.PartialC<{
|
|
8356
8354
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8357
8355
|
}>]>, t.TypeC<{
|
|
8358
|
-
|
|
8359
|
-
|
|
8360
|
-
|
|
8361
|
-
|
|
8362
|
-
|
|
8363
|
-
|
|
8356
|
+
amount: t.TypeC<{
|
|
8357
|
+
value: t.StringC;
|
|
8358
|
+
symbol: t.StringC;
|
|
8359
|
+
}>;
|
|
8360
|
+
}>, t.TypeC<{
|
|
8361
|
+
intentType: t.LiteralC<"stake">;
|
|
8362
|
+
validatorAddress: t.StringC;
|
|
8363
|
+
ownerAddress: t.StringC;
|
|
8364
|
+
resource: t.UnionC<[t.LiteralC<"BANDWIDTH">, t.LiteralC<"ENERGY">]>;
|
|
8365
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8364
8366
|
intentType: t.KeyofC<{
|
|
8365
8367
|
payment: t.LiteralC<"payment">;
|
|
8366
8368
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8424,11 +8426,15 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8424
8426
|
}>, t.PartialC<{
|
|
8425
8427
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8426
8428
|
}>]>, t.TypeC<{
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
}
|
|
8429
|
+
amount: t.TypeC<{
|
|
8430
|
+
value: t.StringC;
|
|
8431
|
+
symbol: t.StringC;
|
|
8432
|
+
}>;
|
|
8433
|
+
}>, t.TypeC<{
|
|
8434
|
+
intentType: t.LiteralC<"unstake">;
|
|
8435
|
+
ownerAddress: t.StringC;
|
|
8436
|
+
resource: t.UnionC<[t.LiteralC<"BANDWIDTH">, t.LiteralC<"ENERGY">]>;
|
|
8437
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8432
8438
|
intentType: t.KeyofC<{
|
|
8433
8439
|
payment: t.LiteralC<"payment">;
|
|
8434
8440
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8492,11 +8498,19 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8492
8498
|
}>, t.PartialC<{
|
|
8493
8499
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8494
8500
|
}>]>, t.TypeC<{
|
|
8495
|
-
|
|
8496
|
-
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
}
|
|
8501
|
+
amount: t.TypeC<{
|
|
8502
|
+
value: t.StringC;
|
|
8503
|
+
symbol: t.StringC;
|
|
8504
|
+
}>;
|
|
8505
|
+
}>, t.TypeC<{
|
|
8506
|
+
intentType: t.LiteralC<"voteDelegation">;
|
|
8507
|
+
validatorAddress: t.StringC;
|
|
8508
|
+
ownerAddress: t.StringC;
|
|
8509
|
+
votes: t.ArrayC<t.TypeC<{
|
|
8510
|
+
vote_address: t.StringC;
|
|
8511
|
+
vote_count: t.StringC;
|
|
8512
|
+
}>>;
|
|
8513
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8500
8514
|
intentType: t.KeyofC<{
|
|
8501
8515
|
payment: t.LiteralC<"payment">;
|
|
8502
8516
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8565,10 +8579,8 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8565
8579
|
symbol: t.StringC;
|
|
8566
8580
|
}>;
|
|
8567
8581
|
}>, t.TypeC<{
|
|
8568
|
-
intentType: t.LiteralC<"
|
|
8569
|
-
|
|
8570
|
-
tokenId: import("io-ts-types").NonEmptyStringC;
|
|
8571
|
-
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
8582
|
+
intentType: t.LiteralC<"claim">;
|
|
8583
|
+
ownerAddress: t.StringC;
|
|
8572
8584
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8573
8585
|
intentType: t.KeyofC<{
|
|
8574
8586
|
payment: t.LiteralC<"payment">;
|
|
@@ -8633,17 +8645,16 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8633
8645
|
}>, t.PartialC<{
|
|
8634
8646
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8635
8647
|
}>]>, t.TypeC<{
|
|
8636
|
-
intentType: t.LiteralC<"
|
|
8648
|
+
intentType: t.LiteralC<"stake">;
|
|
8637
8649
|
}>]>, t.TypeC<{
|
|
8638
8650
|
amount: t.TypeC<{
|
|
8639
8651
|
value: t.StringC;
|
|
8640
8652
|
symbol: t.StringC;
|
|
8641
8653
|
}>;
|
|
8642
8654
|
}>, t.TypeC<{
|
|
8643
|
-
validatorAddress: import("io-ts-types").NonEmptyStringC;
|
|
8644
|
-
stakingPeriod: t.NumberC;
|
|
8645
8655
|
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
8646
|
-
|
|
8656
|
+
levelId: import("io-ts-types").NonEmptyStringC;
|
|
8657
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8647
8658
|
intentType: t.KeyofC<{
|
|
8648
8659
|
payment: t.LiteralC<"payment">;
|
|
8649
8660
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8707,15 +8718,12 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8707
8718
|
}>, t.PartialC<{
|
|
8708
8719
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8709
8720
|
}>]>, t.TypeC<{
|
|
8710
|
-
|
|
8711
|
-
|
|
8712
|
-
|
|
8713
|
-
}>;
|
|
8714
|
-
}>, t.TypeC<{
|
|
8715
|
-
intentType: t.LiteralC<"increaseStake">;
|
|
8716
|
-
validatorAddress: import("io-ts-types").NonEmptyStringC;
|
|
8721
|
+
intentType: t.LiteralC<"delegate">;
|
|
8722
|
+
}>]>, t.TypeC<{
|
|
8723
|
+
tokenId: import("io-ts-types").NonEmptyStringC;
|
|
8717
8724
|
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
8718
|
-
|
|
8725
|
+
validatorAddress: import("io-ts-types").NonEmptyStringC;
|
|
8726
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8719
8727
|
intentType: t.KeyofC<{
|
|
8720
8728
|
payment: t.LiteralC<"payment">;
|
|
8721
8729
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8779,15 +8787,11 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8779
8787
|
}>, t.PartialC<{
|
|
8780
8788
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8781
8789
|
}>]>, t.TypeC<{
|
|
8782
|
-
|
|
8783
|
-
|
|
8784
|
-
|
|
8785
|
-
}>;
|
|
8786
|
-
}>, t.TypeC<{
|
|
8787
|
-
intentType: t.LiteralC<"decreaseStake">;
|
|
8788
|
-
validatorAddress: import("io-ts-types").NonEmptyStringC;
|
|
8790
|
+
intentType: t.LiteralC<"undelegate">;
|
|
8791
|
+
}>]>, t.TypeC<{
|
|
8792
|
+
tokenId: import("io-ts-types").NonEmptyStringC;
|
|
8789
8793
|
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
8790
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8794
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8791
8795
|
intentType: t.KeyofC<{
|
|
8792
8796
|
payment: t.LiteralC<"payment">;
|
|
8793
8797
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8851,10 +8855,11 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8851
8855
|
}>, t.PartialC<{
|
|
8852
8856
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8853
8857
|
}>]>, t.TypeC<{
|
|
8854
|
-
intentType: t.LiteralC<"
|
|
8855
|
-
|
|
8858
|
+
intentType: t.LiteralC<"unstake">;
|
|
8859
|
+
}>]>, t.TypeC<{
|
|
8860
|
+
tokenId: import("io-ts-types").NonEmptyStringC;
|
|
8856
8861
|
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
8857
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8862
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8858
8863
|
intentType: t.KeyofC<{
|
|
8859
8864
|
payment: t.LiteralC<"payment">;
|
|
8860
8865
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8918,10 +8923,16 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8918
8923
|
}>, t.PartialC<{
|
|
8919
8924
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8920
8925
|
}>]>, t.TypeC<{
|
|
8921
|
-
|
|
8922
|
-
|
|
8926
|
+
amount: t.TypeC<{
|
|
8927
|
+
value: t.StringC;
|
|
8928
|
+
symbol: t.StringC;
|
|
8929
|
+
}>;
|
|
8930
|
+
}>, t.TypeC<{
|
|
8931
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
8932
|
+
}>]>, t.TypeC<{
|
|
8933
|
+
tokenId: import("io-ts-types").NonEmptyStringC;
|
|
8923
8934
|
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
8924
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8935
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8925
8936
|
intentType: t.KeyofC<{
|
|
8926
8937
|
payment: t.LiteralC<"payment">;
|
|
8927
8938
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -8981,7 +8992,20 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
8981
8992
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
8982
8993
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
8983
8994
|
}>]>, t.TypeC<{
|
|
8984
|
-
|
|
8995
|
+
stakingRequestId: t.StringC;
|
|
8996
|
+
}>, t.PartialC<{
|
|
8997
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
8998
|
+
}>]>, t.TypeC<{
|
|
8999
|
+
intentType: t.LiteralC<"validatorRegistration">;
|
|
9000
|
+
}>]>, t.TypeC<{
|
|
9001
|
+
amount: t.TypeC<{
|
|
9002
|
+
value: t.StringC;
|
|
9003
|
+
symbol: t.StringC;
|
|
9004
|
+
}>;
|
|
9005
|
+
}>, t.TypeC<{
|
|
9006
|
+
validatorAddress: import("io-ts-types").NonEmptyStringC;
|
|
9007
|
+
stakingPeriod: t.NumberC;
|
|
9008
|
+
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
8985
9009
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
8986
9010
|
intentType: t.KeyofC<{
|
|
8987
9011
|
payment: t.LiteralC<"payment">;
|
|
@@ -9046,8 +9070,15 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9046
9070
|
}>, t.PartialC<{
|
|
9047
9071
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9048
9072
|
}>]>, t.TypeC<{
|
|
9049
|
-
|
|
9050
|
-
|
|
9073
|
+
amount: t.TypeC<{
|
|
9074
|
+
value: t.StringC;
|
|
9075
|
+
symbol: t.StringC;
|
|
9076
|
+
}>;
|
|
9077
|
+
}>, t.TypeC<{
|
|
9078
|
+
intentType: t.LiteralC<"increaseStake">;
|
|
9079
|
+
validatorAddress: import("io-ts-types").NonEmptyStringC;
|
|
9080
|
+
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
9081
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9051
9082
|
intentType: t.KeyofC<{
|
|
9052
9083
|
payment: t.LiteralC<"payment">;
|
|
9053
9084
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9110,17 +9141,16 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9110
9141
|
stakingRequestId: t.StringC;
|
|
9111
9142
|
}>, t.PartialC<{
|
|
9112
9143
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9113
|
-
}>]>, t.TypeC<{
|
|
9114
|
-
calldata: t.StringC;
|
|
9115
9144
|
}>]>, t.TypeC<{
|
|
9116
9145
|
amount: t.TypeC<{
|
|
9117
9146
|
value: t.StringC;
|
|
9118
9147
|
symbol: t.StringC;
|
|
9119
9148
|
}>;
|
|
9120
9149
|
}>, t.TypeC<{
|
|
9121
|
-
intentType: t.LiteralC<"
|
|
9122
|
-
validatorAddress:
|
|
9123
|
-
|
|
9150
|
+
intentType: t.LiteralC<"decreaseStake">;
|
|
9151
|
+
validatorAddress: import("io-ts-types").NonEmptyStringC;
|
|
9152
|
+
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
9153
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9124
9154
|
intentType: t.KeyofC<{
|
|
9125
9155
|
payment: t.LiteralC<"payment">;
|
|
9126
9156
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9184,16 +9214,10 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9184
9214
|
}>, t.PartialC<{
|
|
9185
9215
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9186
9216
|
}>]>, t.TypeC<{
|
|
9187
|
-
|
|
9188
|
-
|
|
9189
|
-
|
|
9190
|
-
|
|
9191
|
-
symbol: t.StringC;
|
|
9192
|
-
}>;
|
|
9193
|
-
}>, t.TypeC<{
|
|
9194
|
-
intentType: t.LiteralC<"undelegate">;
|
|
9195
|
-
validatorAddress: t.StringC;
|
|
9196
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9217
|
+
intentType: t.LiteralC<"signalExit">;
|
|
9218
|
+
validatorAddress: import("io-ts-types").NonEmptyStringC;
|
|
9219
|
+
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
9220
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9197
9221
|
intentType: t.KeyofC<{
|
|
9198
9222
|
payment: t.LiteralC<"payment">;
|
|
9199
9223
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9257,10 +9281,10 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9257
9281
|
}>, t.PartialC<{
|
|
9258
9282
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9259
9283
|
}>]>, t.TypeC<{
|
|
9260
|
-
|
|
9261
|
-
|
|
9262
|
-
|
|
9263
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.
|
|
9284
|
+
intentType: t.LiteralC<"withdrawStake">;
|
|
9285
|
+
validatorAddress: import("io-ts-types").NonEmptyStringC;
|
|
9286
|
+
stakingContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
9287
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9264
9288
|
intentType: t.KeyofC<{
|
|
9265
9289
|
payment: t.LiteralC<"payment">;
|
|
9266
9290
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9320,10 +9344,8 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9320
9344
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
9321
9345
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
9322
9346
|
}>]>, t.TypeC<{
|
|
9323
|
-
|
|
9324
|
-
}>, t.
|
|
9325
|
-
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9326
|
-
}>]>, t.TypeC<{
|
|
9347
|
+
intentType: t.LiteralC<"walletRecovery">;
|
|
9348
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9327
9349
|
intentType: t.KeyofC<{
|
|
9328
9350
|
payment: t.LiteralC<"payment">;
|
|
9329
9351
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9379,34 +9401,16 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9379
9401
|
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
9380
9402
|
}>;
|
|
9381
9403
|
}>, t.PartialC<{
|
|
9382
|
-
|
|
9383
|
-
|
|
9384
|
-
|
|
9385
|
-
|
|
9386
|
-
|
|
9387
|
-
|
|
9388
|
-
|
|
9389
|
-
|
|
9390
|
-
|
|
9391
|
-
|
|
9392
|
-
};
|
|
9393
|
-
} & {
|
|
9394
|
-
data?: string | undefined;
|
|
9395
|
-
})[], ({
|
|
9396
|
-
address: {
|
|
9397
|
-
address?: string | undefined;
|
|
9398
|
-
option?: {
|
|
9399
|
-
[x: string]: unknown;
|
|
9400
|
-
} | undefined;
|
|
9401
|
-
};
|
|
9402
|
-
amount: {
|
|
9403
|
-
value: string;
|
|
9404
|
-
symbol: string;
|
|
9405
|
-
};
|
|
9406
|
-
} & {
|
|
9407
|
-
data?: string | undefined;
|
|
9408
|
-
})[], unknown>, t.UndefinedC]>;
|
|
9409
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9404
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
9405
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
9406
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
9407
|
+
}>]>, t.TypeC<{
|
|
9408
|
+
stakingRequestId: t.StringC;
|
|
9409
|
+
}>, t.PartialC<{
|
|
9410
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9411
|
+
}>]>, t.TypeC<{
|
|
9412
|
+
calldata: t.StringC;
|
|
9413
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9410
9414
|
intentType: t.KeyofC<{
|
|
9411
9415
|
payment: t.LiteralC<"payment">;
|
|
9412
9416
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9470,36 +9474,16 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9470
9474
|
}>, t.PartialC<{
|
|
9471
9475
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9472
9476
|
}>]>, t.TypeC<{
|
|
9477
|
+
calldata: t.StringC;
|
|
9478
|
+
}>]>, t.TypeC<{
|
|
9479
|
+
amount: t.TypeC<{
|
|
9480
|
+
value: t.StringC;
|
|
9481
|
+
symbol: t.StringC;
|
|
9482
|
+
}>;
|
|
9483
|
+
}>, t.TypeC<{
|
|
9473
9484
|
intentType: t.LiteralC<"delegate">;
|
|
9474
|
-
|
|
9475
|
-
|
|
9476
|
-
address: {
|
|
9477
|
-
address?: string | undefined;
|
|
9478
|
-
option?: {
|
|
9479
|
-
[x: string]: unknown;
|
|
9480
|
-
} | undefined;
|
|
9481
|
-
};
|
|
9482
|
-
amount: {
|
|
9483
|
-
value: string;
|
|
9484
|
-
symbol: string;
|
|
9485
|
-
};
|
|
9486
|
-
} & {
|
|
9487
|
-
data?: string | undefined;
|
|
9488
|
-
})[], ({
|
|
9489
|
-
address: {
|
|
9490
|
-
address?: string | undefined;
|
|
9491
|
-
option?: {
|
|
9492
|
-
[x: string]: unknown;
|
|
9493
|
-
} | undefined;
|
|
9494
|
-
};
|
|
9495
|
-
amount: {
|
|
9496
|
-
value: string;
|
|
9497
|
-
symbol: string;
|
|
9498
|
-
};
|
|
9499
|
-
} & {
|
|
9500
|
-
data?: string | undefined;
|
|
9501
|
-
})[], unknown>, t.UndefinedC]>;
|
|
9502
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9485
|
+
validatorAddress: t.StringC;
|
|
9486
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9503
9487
|
intentType: t.KeyofC<{
|
|
9504
9488
|
payment: t.LiteralC<"payment">;
|
|
9505
9489
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9563,46 +9547,16 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9563
9547
|
}>, t.PartialC<{
|
|
9564
9548
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9565
9549
|
}>]>, t.TypeC<{
|
|
9566
|
-
|
|
9567
|
-
}>]>, t.PartialC<{
|
|
9568
|
-
validatorAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
9569
|
-
amount: t.UnionC<[t.Type<{
|
|
9570
|
-
value: string;
|
|
9571
|
-
symbol: string;
|
|
9572
|
-
}, {
|
|
9573
|
-
value: string;
|
|
9574
|
-
symbol: string;
|
|
9575
|
-
}, unknown>, t.UndefinedC]>;
|
|
9576
|
-
recipients: t.UnionC<[t.Type<({
|
|
9577
|
-
address: {
|
|
9578
|
-
address?: string | undefined;
|
|
9579
|
-
option?: {
|
|
9580
|
-
[x: string]: unknown;
|
|
9581
|
-
} | undefined;
|
|
9582
|
-
};
|
|
9583
|
-
amount: {
|
|
9584
|
-
value: string;
|
|
9585
|
-
symbol: string;
|
|
9586
|
-
};
|
|
9587
|
-
} & {
|
|
9588
|
-
data?: string | undefined;
|
|
9589
|
-
})[], ({
|
|
9590
|
-
address: {
|
|
9591
|
-
address?: string | undefined;
|
|
9592
|
-
option?: {
|
|
9593
|
-
[x: string]: unknown;
|
|
9594
|
-
} | undefined;
|
|
9595
|
-
};
|
|
9596
|
-
amount: {
|
|
9597
|
-
value: string;
|
|
9598
|
-
symbol: string;
|
|
9599
|
-
};
|
|
9600
|
-
} & {
|
|
9601
|
-
data?: string | undefined;
|
|
9602
|
-
})[], unknown>, t.UndefinedC]>;
|
|
9550
|
+
calldata: t.StringC;
|
|
9603
9551
|
}>]>, t.TypeC<{
|
|
9604
|
-
|
|
9605
|
-
|
|
9552
|
+
amount: t.TypeC<{
|
|
9553
|
+
value: t.StringC;
|
|
9554
|
+
symbol: t.StringC;
|
|
9555
|
+
}>;
|
|
9556
|
+
}>, t.TypeC<{
|
|
9557
|
+
intentType: t.LiteralC<"undelegate">;
|
|
9558
|
+
validatorAddress: t.StringC;
|
|
9559
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9606
9560
|
intentType: t.KeyofC<{
|
|
9607
9561
|
payment: t.LiteralC<"payment">;
|
|
9608
9562
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9666,18 +9620,10 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9666
9620
|
}>, t.PartialC<{
|
|
9667
9621
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9668
9622
|
}>]>, t.TypeC<{
|
|
9669
|
-
|
|
9670
|
-
|
|
9671
|
-
|
|
9672
|
-
}>, t.
|
|
9673
|
-
amount: t.UnionC<[t.Type<{
|
|
9674
|
-
value: string;
|
|
9675
|
-
symbol: string;
|
|
9676
|
-
}, {
|
|
9677
|
-
value: string;
|
|
9678
|
-
symbol: string;
|
|
9679
|
-
}, unknown>, t.UndefinedC]>;
|
|
9680
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9623
|
+
calldata: t.StringC;
|
|
9624
|
+
}>]>, t.TypeC<{
|
|
9625
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
9626
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9681
9627
|
intentType: t.KeyofC<{
|
|
9682
9628
|
payment: t.LiteralC<"payment">;
|
|
9683
9629
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9741,28 +9687,6 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9741
9687
|
}>, t.PartialC<{
|
|
9742
9688
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9743
9689
|
}>]>, t.TypeC<{
|
|
9744
|
-
intentType: t.LiteralC<"claim">;
|
|
9745
|
-
}>, t.PartialC<{
|
|
9746
|
-
amount: t.UnionC<[t.Type<{
|
|
9747
|
-
value: string;
|
|
9748
|
-
symbol: string;
|
|
9749
|
-
}, {
|
|
9750
|
-
value: string;
|
|
9751
|
-
symbol: string;
|
|
9752
|
-
}, unknown>, t.UndefinedC]>;
|
|
9753
|
-
}>]>, t.TypeC<{
|
|
9754
|
-
stakedSuiObjectId: t.StringC;
|
|
9755
|
-
}>, t.PartialC<{
|
|
9756
|
-
amount: t.UnionC<[t.Type<{
|
|
9757
|
-
value: string;
|
|
9758
|
-
symbol: string;
|
|
9759
|
-
}, {
|
|
9760
|
-
value: string;
|
|
9761
|
-
symbol: string;
|
|
9762
|
-
}, unknown>, t.UndefinedC]>;
|
|
9763
|
-
}>]>, t.TypeC<{
|
|
9764
|
-
sharedStakingObjectId: t.StringC;
|
|
9765
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9766
9690
|
intentType: t.KeyofC<{
|
|
9767
9691
|
payment: t.LiteralC<"payment">;
|
|
9768
9692
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9818,18 +9742,34 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9818
9742
|
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
9819
9743
|
}>;
|
|
9820
9744
|
}>, t.PartialC<{
|
|
9821
|
-
|
|
9822
|
-
|
|
9823
|
-
|
|
9824
|
-
|
|
9825
|
-
|
|
9826
|
-
|
|
9827
|
-
|
|
9828
|
-
|
|
9829
|
-
|
|
9830
|
-
|
|
9831
|
-
|
|
9832
|
-
|
|
9745
|
+
recipients: t.UnionC<[t.Type<({
|
|
9746
|
+
address: {
|
|
9747
|
+
address?: string | undefined;
|
|
9748
|
+
option?: {
|
|
9749
|
+
[x: string]: unknown;
|
|
9750
|
+
} | undefined;
|
|
9751
|
+
};
|
|
9752
|
+
amount: {
|
|
9753
|
+
value: string;
|
|
9754
|
+
symbol: string;
|
|
9755
|
+
};
|
|
9756
|
+
} & {
|
|
9757
|
+
data?: string | undefined;
|
|
9758
|
+
})[], ({
|
|
9759
|
+
address: {
|
|
9760
|
+
address?: string | undefined;
|
|
9761
|
+
option?: {
|
|
9762
|
+
[x: string]: unknown;
|
|
9763
|
+
} | undefined;
|
|
9764
|
+
};
|
|
9765
|
+
amount: {
|
|
9766
|
+
value: string;
|
|
9767
|
+
symbol: string;
|
|
9768
|
+
};
|
|
9769
|
+
} & {
|
|
9770
|
+
data?: string | undefined;
|
|
9771
|
+
})[], unknown>, t.UndefinedC]>;
|
|
9772
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9833
9773
|
intentType: t.KeyofC<{
|
|
9834
9774
|
payment: t.LiteralC<"payment">;
|
|
9835
9775
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9893,16 +9833,36 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9893
9833
|
}>, t.PartialC<{
|
|
9894
9834
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9895
9835
|
}>]>, t.TypeC<{
|
|
9896
|
-
intentType: t.LiteralC<"
|
|
9897
|
-
}
|
|
9898
|
-
|
|
9899
|
-
|
|
9900
|
-
|
|
9901
|
-
|
|
9902
|
-
|
|
9903
|
-
|
|
9904
|
-
|
|
9905
|
-
|
|
9836
|
+
intentType: t.LiteralC<"delegate">;
|
|
9837
|
+
}>, t.PartialC<{
|
|
9838
|
+
recipients: t.UnionC<[t.Type<({
|
|
9839
|
+
address: {
|
|
9840
|
+
address?: string | undefined;
|
|
9841
|
+
option?: {
|
|
9842
|
+
[x: string]: unknown;
|
|
9843
|
+
} | undefined;
|
|
9844
|
+
};
|
|
9845
|
+
amount: {
|
|
9846
|
+
value: string;
|
|
9847
|
+
symbol: string;
|
|
9848
|
+
};
|
|
9849
|
+
} & {
|
|
9850
|
+
data?: string | undefined;
|
|
9851
|
+
})[], ({
|
|
9852
|
+
address: {
|
|
9853
|
+
address?: string | undefined;
|
|
9854
|
+
option?: {
|
|
9855
|
+
[x: string]: unknown;
|
|
9856
|
+
} | undefined;
|
|
9857
|
+
};
|
|
9858
|
+
amount: {
|
|
9859
|
+
value: string;
|
|
9860
|
+
symbol: string;
|
|
9861
|
+
};
|
|
9862
|
+
} & {
|
|
9863
|
+
data?: string | undefined;
|
|
9864
|
+
})[], unknown>, t.UndefinedC]>;
|
|
9865
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9906
9866
|
intentType: t.KeyofC<{
|
|
9907
9867
|
payment: t.LiteralC<"payment">;
|
|
9908
9868
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9966,9 +9926,45 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9966
9926
|
}>, t.PartialC<{
|
|
9967
9927
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
9968
9928
|
}>]>, t.TypeC<{
|
|
9969
|
-
intentType: t.LiteralC<"
|
|
9970
|
-
|
|
9971
|
-
|
|
9929
|
+
intentType: t.LiteralC<"stake">;
|
|
9930
|
+
}>]>, t.PartialC<{
|
|
9931
|
+
validatorAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
9932
|
+
amount: t.UnionC<[t.Type<{
|
|
9933
|
+
value: string;
|
|
9934
|
+
symbol: string;
|
|
9935
|
+
}, {
|
|
9936
|
+
value: string;
|
|
9937
|
+
symbol: string;
|
|
9938
|
+
}, unknown>, t.UndefinedC]>;
|
|
9939
|
+
recipients: t.UnionC<[t.Type<({
|
|
9940
|
+
address: {
|
|
9941
|
+
address?: string | undefined;
|
|
9942
|
+
option?: {
|
|
9943
|
+
[x: string]: unknown;
|
|
9944
|
+
} | undefined;
|
|
9945
|
+
};
|
|
9946
|
+
amount: {
|
|
9947
|
+
value: string;
|
|
9948
|
+
symbol: string;
|
|
9949
|
+
};
|
|
9950
|
+
} & {
|
|
9951
|
+
data?: string | undefined;
|
|
9952
|
+
})[], ({
|
|
9953
|
+
address: {
|
|
9954
|
+
address?: string | undefined;
|
|
9955
|
+
option?: {
|
|
9956
|
+
[x: string]: unknown;
|
|
9957
|
+
} | undefined;
|
|
9958
|
+
};
|
|
9959
|
+
amount: {
|
|
9960
|
+
value: string;
|
|
9961
|
+
symbol: string;
|
|
9962
|
+
};
|
|
9963
|
+
} & {
|
|
9964
|
+
data?: string | undefined;
|
|
9965
|
+
})[], unknown>, t.UndefinedC]>;
|
|
9966
|
+
}>]>, t.TypeC<{
|
|
9967
|
+
sharedStakingObjectId: t.StringC;
|
|
9972
9968
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9973
9969
|
intentType: t.KeyofC<{
|
|
9974
9970
|
payment: t.LiteralC<"payment">;
|
|
@@ -10033,16 +10029,18 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
10033
10029
|
}>, t.PartialC<{
|
|
10034
10030
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10035
10031
|
}>]>, t.TypeC<{
|
|
10036
|
-
|
|
10037
|
-
|
|
10038
|
-
|
|
10039
|
-
|
|
10040
|
-
|
|
10041
|
-
|
|
10042
|
-
|
|
10043
|
-
|
|
10044
|
-
|
|
10045
|
-
|
|
10032
|
+
intentType: t.LiteralC<"undelegate">;
|
|
10033
|
+
stakedSuiObjectId: t.StringC;
|
|
10034
|
+
sharedStakingObjectId: t.StringC;
|
|
10035
|
+
}>, t.PartialC<{
|
|
10036
|
+
amount: t.UnionC<[t.Type<{
|
|
10037
|
+
value: string;
|
|
10038
|
+
symbol: string;
|
|
10039
|
+
}, {
|
|
10040
|
+
value: string;
|
|
10041
|
+
symbol: string;
|
|
10042
|
+
}, unknown>, t.UndefinedC]>;
|
|
10043
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10046
10044
|
intentType: t.KeyofC<{
|
|
10047
10045
|
payment: t.LiteralC<"payment">;
|
|
10048
10046
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -10101,39 +10099,404 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
10101
10099
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10102
10100
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10103
10101
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10104
|
-
}>]
|
|
10105
|
-
|
|
10106
|
-
|
|
10107
|
-
|
|
10108
|
-
|
|
10109
|
-
|
|
10110
|
-
|
|
10111
|
-
|
|
10112
|
-
|
|
10113
|
-
|
|
10114
|
-
|
|
10115
|
-
|
|
10116
|
-
|
|
10117
|
-
|
|
10118
|
-
|
|
10119
|
-
|
|
10120
|
-
|
|
10121
|
-
|
|
10122
|
-
|
|
10123
|
-
|
|
10124
|
-
|
|
10125
|
-
|
|
10126
|
-
|
|
10127
|
-
|
|
10128
|
-
|
|
10129
|
-
|
|
10130
|
-
|
|
10131
|
-
|
|
10132
|
-
|
|
10133
|
-
|
|
10134
|
-
|
|
10135
|
-
|
|
10136
|
-
|
|
10102
|
+
}>]>, t.TypeC<{
|
|
10103
|
+
stakingRequestId: t.StringC;
|
|
10104
|
+
}>, t.PartialC<{
|
|
10105
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10106
|
+
}>]>, t.TypeC<{
|
|
10107
|
+
intentType: t.LiteralC<"claim">;
|
|
10108
|
+
}>, t.PartialC<{
|
|
10109
|
+
amount: t.UnionC<[t.Type<{
|
|
10110
|
+
value: string;
|
|
10111
|
+
symbol: string;
|
|
10112
|
+
}, {
|
|
10113
|
+
value: string;
|
|
10114
|
+
symbol: string;
|
|
10115
|
+
}, unknown>, t.UndefinedC]>;
|
|
10116
|
+
}>]>, t.TypeC<{
|
|
10117
|
+
stakedSuiObjectId: t.StringC;
|
|
10118
|
+
}>, t.PartialC<{
|
|
10119
|
+
amount: t.UnionC<[t.Type<{
|
|
10120
|
+
value: string;
|
|
10121
|
+
symbol: string;
|
|
10122
|
+
}, {
|
|
10123
|
+
value: string;
|
|
10124
|
+
symbol: string;
|
|
10125
|
+
}, unknown>, t.UndefinedC]>;
|
|
10126
|
+
}>]>, t.TypeC<{
|
|
10127
|
+
sharedStakingObjectId: t.StringC;
|
|
10128
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10129
|
+
intentType: t.KeyofC<{
|
|
10130
|
+
payment: t.LiteralC<"payment">;
|
|
10131
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
10132
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
10133
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
10134
|
+
fanout: t.LiteralC<"fanout">;
|
|
10135
|
+
stake: t.LiteralC<"stake">;
|
|
10136
|
+
unstake: t.LiteralC<"unstake">;
|
|
10137
|
+
delegate: t.LiteralC<"delegate">;
|
|
10138
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
10139
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
10140
|
+
claim: t.LiteralC<"claim">;
|
|
10141
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
10142
|
+
pledge: t.LiteralC<"pledge">;
|
|
10143
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
10144
|
+
vote: t.LiteralC<"vote">;
|
|
10145
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
10146
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
10147
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
10148
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
10149
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
10150
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
10151
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
10152
|
+
authorize: t.LiteralC<"authorize">;
|
|
10153
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
10154
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
10155
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
10156
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
10157
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
10158
|
+
customTx: t.LiteralC<"customTx">;
|
|
10159
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
10160
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
10161
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
10162
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
10163
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
10164
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
10165
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
10166
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
10167
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
10168
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
10169
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
10170
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
10171
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
10172
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
10173
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
10174
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
10175
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
10176
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
10177
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
10178
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
10179
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
10180
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
10181
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
10182
|
+
}>;
|
|
10183
|
+
}>, t.PartialC<{
|
|
10184
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10185
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10186
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10187
|
+
}>]>, t.TypeC<{
|
|
10188
|
+
stakingRequestId: t.StringC;
|
|
10189
|
+
}>, t.PartialC<{
|
|
10190
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10191
|
+
}>]>, t.TypeC<{
|
|
10192
|
+
intentType: t.LiteralC<"contractCall">;
|
|
10193
|
+
ipfsHash: import("io-ts-types").NonEmptyStringC;
|
|
10194
|
+
validatorContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
10195
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10196
|
+
intentType: t.KeyofC<{
|
|
10197
|
+
payment: t.LiteralC<"payment">;
|
|
10198
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
10199
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
10200
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
10201
|
+
fanout: t.LiteralC<"fanout">;
|
|
10202
|
+
stake: t.LiteralC<"stake">;
|
|
10203
|
+
unstake: t.LiteralC<"unstake">;
|
|
10204
|
+
delegate: t.LiteralC<"delegate">;
|
|
10205
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
10206
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
10207
|
+
claim: t.LiteralC<"claim">;
|
|
10208
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
10209
|
+
pledge: t.LiteralC<"pledge">;
|
|
10210
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
10211
|
+
vote: t.LiteralC<"vote">;
|
|
10212
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
10213
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
10214
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
10215
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
10216
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
10217
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
10218
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
10219
|
+
authorize: t.LiteralC<"authorize">;
|
|
10220
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
10221
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
10222
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
10223
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
10224
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
10225
|
+
customTx: t.LiteralC<"customTx">;
|
|
10226
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
10227
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
10228
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
10229
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
10230
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
10231
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
10232
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
10233
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
10234
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
10235
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
10236
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
10237
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
10238
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
10239
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
10240
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
10241
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
10242
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
10243
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
10244
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
10245
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
10246
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
10247
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
10248
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
10249
|
+
}>;
|
|
10250
|
+
}>, t.PartialC<{
|
|
10251
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10252
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10253
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10254
|
+
}>]>, t.TypeC<{
|
|
10255
|
+
stakingRequestId: t.StringC;
|
|
10256
|
+
}>, t.PartialC<{
|
|
10257
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10258
|
+
}>]>, t.TypeC<{
|
|
10259
|
+
intentType: t.LiteralC<"validatorRegistration">;
|
|
10260
|
+
}>]>, t.TypeC<{
|
|
10261
|
+
amount: t.TypeC<{
|
|
10262
|
+
value: t.StringC;
|
|
10263
|
+
symbol: t.StringC;
|
|
10264
|
+
}>;
|
|
10265
|
+
}>, t.TypeC<{
|
|
10266
|
+
candidateAddress: import("io-ts-types").NonEmptyStringC;
|
|
10267
|
+
validatorContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
10268
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10269
|
+
intentType: t.KeyofC<{
|
|
10270
|
+
payment: t.LiteralC<"payment">;
|
|
10271
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
10272
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
10273
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
10274
|
+
fanout: t.LiteralC<"fanout">;
|
|
10275
|
+
stake: t.LiteralC<"stake">;
|
|
10276
|
+
unstake: t.LiteralC<"unstake">;
|
|
10277
|
+
delegate: t.LiteralC<"delegate">;
|
|
10278
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
10279
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
10280
|
+
claim: t.LiteralC<"claim">;
|
|
10281
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
10282
|
+
pledge: t.LiteralC<"pledge">;
|
|
10283
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
10284
|
+
vote: t.LiteralC<"vote">;
|
|
10285
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
10286
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
10287
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
10288
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
10289
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
10290
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
10291
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
10292
|
+
authorize: t.LiteralC<"authorize">;
|
|
10293
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
10294
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
10295
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
10296
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
10297
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
10298
|
+
customTx: t.LiteralC<"customTx">;
|
|
10299
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
10300
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
10301
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
10302
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
10303
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
10304
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
10305
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
10306
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
10307
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
10308
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
10309
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
10310
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
10311
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
10312
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
10313
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
10314
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
10315
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
10316
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
10317
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
10318
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
10319
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
10320
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
10321
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
10322
|
+
}>;
|
|
10323
|
+
}>, t.PartialC<{
|
|
10324
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10325
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10326
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10327
|
+
}>]>, t.TypeC<{
|
|
10328
|
+
stakingRequestId: t.StringC;
|
|
10329
|
+
}>, t.PartialC<{
|
|
10330
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10331
|
+
}>]>, t.TypeC<{
|
|
10332
|
+
intentType: t.LiteralC<"undelegate">;
|
|
10333
|
+
candidateAddress: import("io-ts-types").NonEmptyStringC;
|
|
10334
|
+
validatorContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
10335
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10336
|
+
intentType: t.KeyofC<{
|
|
10337
|
+
payment: t.LiteralC<"payment">;
|
|
10338
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
10339
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
10340
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
10341
|
+
fanout: t.LiteralC<"fanout">;
|
|
10342
|
+
stake: t.LiteralC<"stake">;
|
|
10343
|
+
unstake: t.LiteralC<"unstake">;
|
|
10344
|
+
delegate: t.LiteralC<"delegate">;
|
|
10345
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
10346
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
10347
|
+
claim: t.LiteralC<"claim">;
|
|
10348
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
10349
|
+
pledge: t.LiteralC<"pledge">;
|
|
10350
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
10351
|
+
vote: t.LiteralC<"vote">;
|
|
10352
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
10353
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
10354
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
10355
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
10356
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
10357
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
10358
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
10359
|
+
authorize: t.LiteralC<"authorize">;
|
|
10360
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
10361
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
10362
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
10363
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
10364
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
10365
|
+
customTx: t.LiteralC<"customTx">;
|
|
10366
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
10367
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
10368
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
10369
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
10370
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
10371
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
10372
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
10373
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
10374
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
10375
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
10376
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
10377
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
10378
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
10379
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
10380
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
10381
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
10382
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
10383
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
10384
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
10385
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
10386
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
10387
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
10388
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
10389
|
+
}>;
|
|
10390
|
+
}>, t.PartialC<{
|
|
10391
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10392
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10393
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10394
|
+
}>]>, t.TypeC<{
|
|
10395
|
+
stakingRequestId: t.StringC;
|
|
10396
|
+
}>, t.PartialC<{
|
|
10397
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10398
|
+
}>]>, t.TypeC<{
|
|
10399
|
+
amount: t.TypeC<{
|
|
10400
|
+
value: t.StringC;
|
|
10401
|
+
symbol: t.StringC;
|
|
10402
|
+
}>;
|
|
10403
|
+
}>, t.TypeC<{
|
|
10404
|
+
intentType: t.LiteralC<"unstake">;
|
|
10405
|
+
blockNumber: import("io-ts-types").NonEmptyStringC;
|
|
10406
|
+
index: import("io-ts-types").NonEmptyStringC;
|
|
10407
|
+
validatorContractAddress: import("io-ts-types").NonEmptyStringC;
|
|
10408
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
10409
|
+
intentType: t.KeyofC<{
|
|
10410
|
+
payment: t.LiteralC<"payment">;
|
|
10411
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
10412
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
10413
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
10414
|
+
fanout: t.LiteralC<"fanout">;
|
|
10415
|
+
stake: t.LiteralC<"stake">;
|
|
10416
|
+
unstake: t.LiteralC<"unstake">;
|
|
10417
|
+
delegate: t.LiteralC<"delegate">;
|
|
10418
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
10419
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
10420
|
+
claim: t.LiteralC<"claim">;
|
|
10421
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
10422
|
+
pledge: t.LiteralC<"pledge">;
|
|
10423
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
10424
|
+
vote: t.LiteralC<"vote">;
|
|
10425
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
10426
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
10427
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
10428
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
10429
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
10430
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
10431
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
10432
|
+
authorize: t.LiteralC<"authorize">;
|
|
10433
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
10434
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
10435
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
10436
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
10437
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
10438
|
+
customTx: t.LiteralC<"customTx">;
|
|
10439
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
10440
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
10441
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
10442
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
10443
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
10444
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
10445
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
10446
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
10447
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
10448
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
10449
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
10450
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
10451
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
10452
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
10453
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
10454
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
10455
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
10456
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
10457
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
10458
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
10459
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
10460
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
10461
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
10462
|
+
}>;
|
|
10463
|
+
}>, t.PartialC<{
|
|
10464
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10465
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10466
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10467
|
+
}>]>]>, t.UnknownC]>;
|
|
10468
|
+
unsignedTxs: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
10469
|
+
parsedTx: t.IntersectionC<[t.TypeC<{
|
|
10470
|
+
inputs: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
10471
|
+
valueString: t.StringC;
|
|
10472
|
+
}>, t.PartialC<{
|
|
10473
|
+
_id: t.StringC;
|
|
10474
|
+
address: t.StringC;
|
|
10475
|
+
chain: t.NumberC;
|
|
10476
|
+
derivationIndex: t.NumberC;
|
|
10477
|
+
index: t.NumberC;
|
|
10478
|
+
value: t.UnionC<[t.NumberC, t.BigIntC]>;
|
|
10479
|
+
}>]>>;
|
|
10480
|
+
minerFee: t.UnionC<[t.StringC, t.NumberC]>;
|
|
10481
|
+
outputs: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
10482
|
+
valueString: t.StringC;
|
|
10483
|
+
}>, t.PartialC<{
|
|
10484
|
+
address: t.StringC;
|
|
10485
|
+
change: t.BooleanC;
|
|
10486
|
+
coinName: t.StringC;
|
|
10487
|
+
data: t.StringC;
|
|
10488
|
+
isPayGo: t.BooleanC;
|
|
10489
|
+
value: t.UnionC<[t.NumberC, t.BigIntC]>;
|
|
10490
|
+
wallet: t.StringC;
|
|
10491
|
+
walletV1: t.StringC;
|
|
10492
|
+
baseAddress: t.StringC;
|
|
10493
|
+
enterprise: t.StringC;
|
|
10494
|
+
}>]>>;
|
|
10495
|
+
spendAmount: t.UnionC<[t.StringC, t.NumberC]>;
|
|
10496
|
+
}>, t.PartialC<{
|
|
10497
|
+
gasPrice: t.NumberC;
|
|
10498
|
+
hasUnvalidatedData: t.BooleanC;
|
|
10499
|
+
payGoFee: t.UnionC<[t.StringC, t.NumberC]>;
|
|
10137
10500
|
spendAmounts: t.ArrayC<t.UnknownRecordC>;
|
|
10138
10501
|
type: t.StringC;
|
|
10139
10502
|
}>]>;
|
|
@@ -13336,18 +13699,231 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13336
13699
|
maxFeePerGas?: number | undefined;
|
|
13337
13700
|
maxPriorityFeePerGas?: number | undefined;
|
|
13338
13701
|
}, unknown>, t.UndefinedC]>;
|
|
13339
|
-
hopParams: t.UnionC<[t.Type<{
|
|
13340
|
-
paymentId: string | undefined;
|
|
13341
|
-
userReqSig: string | undefined;
|
|
13342
|
-
gasPriceMax: number | undefined;
|
|
13343
|
-
}, {
|
|
13344
|
-
paymentId: string | undefined;
|
|
13345
|
-
userReqSig: string | undefined;
|
|
13346
|
-
gasPriceMax: number | undefined;
|
|
13347
|
-
}, unknown>, t.UndefinedC]>;
|
|
13702
|
+
hopParams: t.UnionC<[t.Type<{
|
|
13703
|
+
paymentId: string | undefined;
|
|
13704
|
+
userReqSig: string | undefined;
|
|
13705
|
+
gasPriceMax: number | undefined;
|
|
13706
|
+
}, {
|
|
13707
|
+
paymentId: string | undefined;
|
|
13708
|
+
userReqSig: string | undefined;
|
|
13709
|
+
gasPriceMax: number | undefined;
|
|
13710
|
+
}, unknown>, t.UndefinedC]>;
|
|
13711
|
+
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13712
|
+
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13713
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13714
|
+
intentType: t.KeyofC<{
|
|
13715
|
+
payment: t.LiteralC<"payment">;
|
|
13716
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
13717
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
13718
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
13719
|
+
fanout: t.LiteralC<"fanout">;
|
|
13720
|
+
stake: t.LiteralC<"stake">;
|
|
13721
|
+
unstake: t.LiteralC<"unstake">;
|
|
13722
|
+
delegate: t.LiteralC<"delegate">;
|
|
13723
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
13724
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
13725
|
+
claim: t.LiteralC<"claim">;
|
|
13726
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
13727
|
+
pledge: t.LiteralC<"pledge">;
|
|
13728
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
13729
|
+
vote: t.LiteralC<"vote">;
|
|
13730
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
13731
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
13732
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
13733
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
13734
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
13735
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
13736
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
13737
|
+
authorize: t.LiteralC<"authorize">;
|
|
13738
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
13739
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
13740
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
13741
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
13742
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
13743
|
+
customTx: t.LiteralC<"customTx">;
|
|
13744
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
13745
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
13746
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
13747
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
13748
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
13749
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
13750
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
13751
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
13752
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
13753
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
13754
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
13755
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
13756
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
13757
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
13758
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
13759
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
13760
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
13761
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
13762
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
13763
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
13764
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
13765
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
13766
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
13767
|
+
}>;
|
|
13768
|
+
}>, t.PartialC<{
|
|
13769
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13770
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13771
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13772
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
13773
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13774
|
+
}>, t.PartialC<{
|
|
13775
|
+
feeOptions: t.UnionC<[t.Type<{
|
|
13776
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
13777
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
13778
|
+
feeType?: "max" | "base" | "tip" | undefined;
|
|
13779
|
+
gasLimit?: number | undefined;
|
|
13780
|
+
gasPrice?: number | undefined;
|
|
13781
|
+
} | {
|
|
13782
|
+
gasLimit?: number | undefined;
|
|
13783
|
+
maxFeePerGas?: number | undefined;
|
|
13784
|
+
maxPriorityFeePerGas?: number | undefined;
|
|
13785
|
+
}, {
|
|
13786
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
13787
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
13788
|
+
feeType?: "max" | "base" | "tip" | undefined;
|
|
13789
|
+
gasLimit?: number | undefined;
|
|
13790
|
+
gasPrice?: number | undefined;
|
|
13791
|
+
} | {
|
|
13792
|
+
gasLimit?: number | undefined;
|
|
13793
|
+
maxFeePerGas?: number | undefined;
|
|
13794
|
+
maxPriorityFeePerGas?: number | undefined;
|
|
13795
|
+
}, unknown>, t.UndefinedC]>;
|
|
13796
|
+
hopParams: t.UnionC<[t.Type<{
|
|
13797
|
+
paymentId: string | undefined;
|
|
13798
|
+
userReqSig: string | undefined;
|
|
13799
|
+
gasPriceMax: number | undefined;
|
|
13800
|
+
}, {
|
|
13801
|
+
paymentId: string | undefined;
|
|
13802
|
+
userReqSig: string | undefined;
|
|
13803
|
+
gasPriceMax: number | undefined;
|
|
13804
|
+
}, unknown>, t.UndefinedC]>;
|
|
13805
|
+
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13806
|
+
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13807
|
+
}>]>, t.TypeC<{
|
|
13808
|
+
intentType: t.LiteralC<"consolidateToken">;
|
|
13809
|
+
recipients: t.ArrayC<t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13810
|
+
address: t.PartialC<{
|
|
13811
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13812
|
+
option: t.UnionC<[t.Type<{
|
|
13813
|
+
[x: string]: unknown;
|
|
13814
|
+
}, {
|
|
13815
|
+
[x: string]: unknown;
|
|
13816
|
+
}, unknown>, t.UndefinedC]>;
|
|
13817
|
+
}>;
|
|
13818
|
+
amount: t.TypeC<{
|
|
13819
|
+
value: t.StringC;
|
|
13820
|
+
symbol: t.StringC;
|
|
13821
|
+
}>;
|
|
13822
|
+
}>, t.PartialC<{
|
|
13823
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13824
|
+
}>]>, t.PartialC<{
|
|
13825
|
+
tokenData: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13826
|
+
tokenQuantity: t.StringC;
|
|
13827
|
+
tokenType: t.StringC;
|
|
13828
|
+
}>, t.PartialC<{
|
|
13829
|
+
tokenId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13830
|
+
}>]>, t.TypeC<{
|
|
13831
|
+
tokenName: t.StringC;
|
|
13832
|
+
}>, t.PartialC<{
|
|
13833
|
+
tokenContractAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13834
|
+
decimals: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13835
|
+
}>]>;
|
|
13836
|
+
}>]>>;
|
|
13837
|
+
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13838
|
+
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
13839
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13840
|
+
intentType: t.KeyofC<{
|
|
13841
|
+
payment: t.LiteralC<"payment">;
|
|
13842
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
13843
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
13844
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
13845
|
+
fanout: t.LiteralC<"fanout">;
|
|
13846
|
+
stake: t.LiteralC<"stake">;
|
|
13847
|
+
unstake: t.LiteralC<"unstake">;
|
|
13848
|
+
delegate: t.LiteralC<"delegate">;
|
|
13849
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
13850
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
13851
|
+
claim: t.LiteralC<"claim">;
|
|
13852
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
13853
|
+
pledge: t.LiteralC<"pledge">;
|
|
13854
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
13855
|
+
vote: t.LiteralC<"vote">;
|
|
13856
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
13857
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
13858
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
13859
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
13860
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
13861
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
13862
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
13863
|
+
authorize: t.LiteralC<"authorize">;
|
|
13864
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
13865
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
13866
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
13867
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
13868
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
13869
|
+
customTx: t.LiteralC<"customTx">;
|
|
13870
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
13871
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
13872
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
13873
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
13874
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
13875
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
13876
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
13877
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
13878
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
13879
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
13880
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
13881
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
13882
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
13883
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
13884
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
13885
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
13886
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
13887
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
13888
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
13889
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
13890
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
13891
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
13892
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
13893
|
+
}>;
|
|
13894
|
+
}>, t.PartialC<{
|
|
13895
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13896
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13897
|
+
}>]>, t.TypeC<{
|
|
13898
|
+
intentType: t.LiteralC<"fillNonce">;
|
|
13899
|
+
nonce: t.UnionC<[t.StringC, t.NumberC]>;
|
|
13900
|
+
}>, t.PartialC<{
|
|
13901
|
+
senderAddress: t.StringC;
|
|
13902
|
+
}>]>, t.PartialC<{
|
|
13903
|
+
feeOptions: t.UnionC<[t.Type<{
|
|
13904
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
13905
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
13906
|
+
feeType?: "max" | "base" | "tip" | undefined;
|
|
13907
|
+
gasLimit?: number | undefined;
|
|
13908
|
+
gasPrice?: number | undefined;
|
|
13909
|
+
} | {
|
|
13910
|
+
gasLimit?: number | undefined;
|
|
13911
|
+
maxFeePerGas?: number | undefined;
|
|
13912
|
+
maxPriorityFeePerGas?: number | undefined;
|
|
13913
|
+
}, {
|
|
13914
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
13915
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
13916
|
+
feeType?: "max" | "base" | "tip" | undefined;
|
|
13917
|
+
gasLimit?: number | undefined;
|
|
13918
|
+
gasPrice?: number | undefined;
|
|
13919
|
+
} | {
|
|
13920
|
+
gasLimit?: number | undefined;
|
|
13921
|
+
maxFeePerGas?: number | undefined;
|
|
13922
|
+
maxPriorityFeePerGas?: number | undefined;
|
|
13923
|
+
}, unknown>, t.UndefinedC]>;
|
|
13348
13924
|
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13349
13925
|
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13350
|
-
}>]
|
|
13926
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13351
13927
|
intentType: t.KeyofC<{
|
|
13352
13928
|
payment: t.LiteralC<"payment">;
|
|
13353
13929
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -13406,7 +13982,29 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13406
13982
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13407
13983
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13408
13984
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13409
|
-
}>]>, t.
|
|
13985
|
+
}>]>, t.TypeC<{
|
|
13986
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
13987
|
+
address: t.PartialC<{
|
|
13988
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13989
|
+
option: t.UnionC<[t.Type<{
|
|
13990
|
+
[x: string]: unknown;
|
|
13991
|
+
}, {
|
|
13992
|
+
[x: string]: unknown;
|
|
13993
|
+
}, unknown>, t.UndefinedC]>;
|
|
13994
|
+
}>;
|
|
13995
|
+
amount: t.TypeC<{
|
|
13996
|
+
value: t.StringC;
|
|
13997
|
+
symbol: t.StringC;
|
|
13998
|
+
}>;
|
|
13999
|
+
}>, t.PartialC<{
|
|
14000
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14001
|
+
}>]>>;
|
|
14002
|
+
}>, t.UnionC<[t.TypeC<{
|
|
14003
|
+
intentType: t.LiteralC<"payment">;
|
|
14004
|
+
}>, t.TypeC<{
|
|
14005
|
+
intentType: t.LiteralC<"payment">;
|
|
14006
|
+
isTestTransaction: t.BooleanC;
|
|
14007
|
+
}>]>]>, t.IntersectionC<[t.PartialC<{
|
|
13410
14008
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13411
14009
|
}>, t.PartialC<{
|
|
13412
14010
|
feeOptions: t.UnionC<[t.Type<{
|
|
@@ -13442,38 +14040,8 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13442
14040
|
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13443
14041
|
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13444
14042
|
}>]>, t.TypeC<{
|
|
13445
|
-
|
|
13446
|
-
|
|
13447
|
-
address: t.PartialC<{
|
|
13448
|
-
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13449
|
-
option: t.UnionC<[t.Type<{
|
|
13450
|
-
[x: string]: unknown;
|
|
13451
|
-
}, {
|
|
13452
|
-
[x: string]: unknown;
|
|
13453
|
-
}, unknown>, t.UndefinedC]>;
|
|
13454
|
-
}>;
|
|
13455
|
-
amount: t.TypeC<{
|
|
13456
|
-
value: t.StringC;
|
|
13457
|
-
symbol: t.StringC;
|
|
13458
|
-
}>;
|
|
13459
|
-
}>, t.PartialC<{
|
|
13460
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13461
|
-
}>]>, t.PartialC<{
|
|
13462
|
-
tokenData: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13463
|
-
tokenQuantity: t.StringC;
|
|
13464
|
-
tokenType: t.StringC;
|
|
13465
|
-
}>, t.PartialC<{
|
|
13466
|
-
tokenId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13467
|
-
}>]>, t.TypeC<{
|
|
13468
|
-
tokenName: t.StringC;
|
|
13469
|
-
}>, t.PartialC<{
|
|
13470
|
-
tokenContractAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13471
|
-
decimals: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13472
|
-
}>]>;
|
|
13473
|
-
}>]>>;
|
|
13474
|
-
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13475
|
-
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
13476
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14043
|
+
selfSend: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
14044
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13477
14045
|
intentType: t.KeyofC<{
|
|
13478
14046
|
payment: t.LiteralC<"payment">;
|
|
13479
14047
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -13531,12 +14099,16 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13531
14099
|
}>, t.PartialC<{
|
|
13532
14100
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13533
14101
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14102
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13534
14103
|
}>]>, t.TypeC<{
|
|
13535
|
-
|
|
13536
|
-
|
|
14104
|
+
stakingRequestId: t.StringC;
|
|
14105
|
+
}>, t.PartialC<{
|
|
14106
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
14107
|
+
}>]>, t.TypeC<{
|
|
14108
|
+
intentType: t.LiteralC<"stake">;
|
|
14109
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
14110
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13537
14111
|
}>, t.PartialC<{
|
|
13538
|
-
senderAddress: t.StringC;
|
|
13539
|
-
}>]>, t.PartialC<{
|
|
13540
14112
|
feeOptions: t.UnionC<[t.Type<{
|
|
13541
14113
|
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
13542
14114
|
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
@@ -13558,8 +14130,22 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13558
14130
|
maxFeePerGas?: number | undefined;
|
|
13559
14131
|
maxPriorityFeePerGas?: number | undefined;
|
|
13560
14132
|
}, unknown>, t.UndefinedC]>;
|
|
14133
|
+
hopParams: t.UnionC<[t.Type<{
|
|
14134
|
+
paymentId: string | undefined;
|
|
14135
|
+
userReqSig: string | undefined;
|
|
14136
|
+
gasPriceMax: number | undefined;
|
|
14137
|
+
}, {
|
|
14138
|
+
paymentId: string | undefined;
|
|
14139
|
+
userReqSig: string | undefined;
|
|
14140
|
+
gasPriceMax: number | undefined;
|
|
14141
|
+
}, unknown>, t.UndefinedC]>;
|
|
13561
14142
|
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13562
14143
|
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
14144
|
+
}>]>, t.TypeC<{
|
|
14145
|
+
pubkey: t.StringC;
|
|
14146
|
+
withdrawalCredentials: t.StringC;
|
|
14147
|
+
signature: t.StringC;
|
|
14148
|
+
depositDataRoot: t.StringC;
|
|
13563
14149
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13564
14150
|
intentType: t.KeyofC<{
|
|
13565
14151
|
payment: t.LiteralC<"payment">;
|
|
@@ -13620,7 +14206,7 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13620
14206
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13621
14207
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13622
14208
|
}>]>, t.TypeC<{
|
|
13623
|
-
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
14209
|
+
recipients: t.ArrayC<t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13624
14210
|
address: t.PartialC<{
|
|
13625
14211
|
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13626
14212
|
option: t.UnionC<[t.Type<{
|
|
@@ -13635,13 +14221,22 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13635
14221
|
}>;
|
|
13636
14222
|
}>, t.PartialC<{
|
|
13637
14223
|
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14224
|
+
}>]>, t.PartialC<{
|
|
14225
|
+
tokenData: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14226
|
+
tokenQuantity: t.StringC;
|
|
14227
|
+
tokenType: t.StringC;
|
|
14228
|
+
}>, t.PartialC<{
|
|
14229
|
+
tokenId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14230
|
+
}>]>, t.TypeC<{
|
|
14231
|
+
tokenName: t.StringC;
|
|
14232
|
+
}>, t.PartialC<{
|
|
14233
|
+
tokenContractAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14234
|
+
decimals: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
14235
|
+
}>]>;
|
|
13638
14236
|
}>]>>;
|
|
13639
|
-
}>, t.UnionC<[t.TypeC<{
|
|
13640
|
-
intentType: t.LiteralC<"payment">;
|
|
13641
14237
|
}>, t.TypeC<{
|
|
13642
|
-
intentType: t.LiteralC<"
|
|
13643
|
-
|
|
13644
|
-
}>]>]>, t.IntersectionC<[t.PartialC<{
|
|
14238
|
+
intentType: t.LiteralC<"transferToken">;
|
|
14239
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
13645
14240
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13646
14241
|
}>, t.PartialC<{
|
|
13647
14242
|
feeOptions: t.UnionC<[t.Type<{
|
|
@@ -13676,9 +14271,7 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13676
14271
|
}, unknown>, t.UndefinedC]>;
|
|
13677
14272
|
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13678
14273
|
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13679
|
-
}>]>, t.TypeC<{
|
|
13680
|
-
selfSend: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
13681
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14274
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13682
14275
|
intentType: t.KeyofC<{
|
|
13683
14276
|
payment: t.LiteralC<"payment">;
|
|
13684
14277
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -13738,14 +14331,90 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13738
14331
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13739
14332
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13740
14333
|
}>]>, t.TypeC<{
|
|
13741
|
-
|
|
14334
|
+
intentType: t.LiteralC<"feeAddressTransfer">;
|
|
14335
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
14336
|
+
address: t.PartialC<{
|
|
14337
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14338
|
+
option: t.UnionC<[t.Type<{
|
|
14339
|
+
[x: string]: unknown;
|
|
14340
|
+
}, {
|
|
14341
|
+
[x: string]: unknown;
|
|
14342
|
+
}, unknown>, t.UndefinedC]>;
|
|
14343
|
+
}>;
|
|
14344
|
+
amount: t.TypeC<{
|
|
14345
|
+
value: t.StringC;
|
|
14346
|
+
symbol: t.StringC;
|
|
14347
|
+
}>;
|
|
14348
|
+
}>, t.PartialC<{
|
|
14349
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14350
|
+
}>]>>;
|
|
14351
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14352
|
+
intentType: t.KeyofC<{
|
|
14353
|
+
payment: t.LiteralC<"payment">;
|
|
14354
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
14355
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
14356
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
14357
|
+
fanout: t.LiteralC<"fanout">;
|
|
14358
|
+
stake: t.LiteralC<"stake">;
|
|
14359
|
+
unstake: t.LiteralC<"unstake">;
|
|
14360
|
+
delegate: t.LiteralC<"delegate">;
|
|
14361
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
14362
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
14363
|
+
claim: t.LiteralC<"claim">;
|
|
14364
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
14365
|
+
pledge: t.LiteralC<"pledge">;
|
|
14366
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
14367
|
+
vote: t.LiteralC<"vote">;
|
|
14368
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
14369
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
14370
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
14371
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
14372
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
14373
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
14374
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
14375
|
+
authorize: t.LiteralC<"authorize">;
|
|
14376
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
14377
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
14378
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
14379
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
14380
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
14381
|
+
customTx: t.LiteralC<"customTx">;
|
|
14382
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
14383
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
14384
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
14385
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
14386
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
14387
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
14388
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
14389
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
14390
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
14391
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
14392
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
14393
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
14394
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
14395
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
14396
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
14397
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
14398
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
14399
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
14400
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
14401
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
14402
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
14403
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
14404
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
14405
|
+
}>;
|
|
13742
14406
|
}>, t.PartialC<{
|
|
13743
|
-
|
|
13744
|
-
|
|
13745
|
-
intentType: t.LiteralC<"stake">;
|
|
13746
|
-
}>]>, t.IntersectionC<[t.PartialC<{
|
|
14407
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14408
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13747
14409
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13748
|
-
}>, t.
|
|
14410
|
+
}>]>, t.TypeC<{
|
|
14411
|
+
amount: t.TypeC<{
|
|
14412
|
+
value: t.StringC;
|
|
14413
|
+
symbol: t.StringC;
|
|
14414
|
+
}>;
|
|
14415
|
+
}>, t.TypeC<{
|
|
14416
|
+
intentType: t.LiteralC<"bridgeFunds">;
|
|
14417
|
+
}>]>, t.PartialC<{
|
|
13749
14418
|
feeOptions: t.UnionC<[t.Type<{
|
|
13750
14419
|
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
13751
14420
|
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
@@ -13760,30 +14429,14 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13760
14429
|
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
13761
14430
|
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
13762
14431
|
feeType?: "max" | "base" | "tip" | undefined;
|
|
13763
|
-
gasLimit?: number | undefined;
|
|
13764
|
-
gasPrice?: number | undefined;
|
|
13765
|
-
} | {
|
|
13766
|
-
gasLimit?: number | undefined;
|
|
13767
|
-
maxFeePerGas?: number | undefined;
|
|
13768
|
-
maxPriorityFeePerGas?: number | undefined;
|
|
13769
|
-
}, unknown>, t.UndefinedC]>;
|
|
13770
|
-
|
|
13771
|
-
paymentId: string | undefined;
|
|
13772
|
-
userReqSig: string | undefined;
|
|
13773
|
-
gasPriceMax: number | undefined;
|
|
13774
|
-
}, {
|
|
13775
|
-
paymentId: string | undefined;
|
|
13776
|
-
userReqSig: string | undefined;
|
|
13777
|
-
gasPriceMax: number | undefined;
|
|
13778
|
-
}, unknown>, t.UndefinedC]>;
|
|
13779
|
-
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13780
|
-
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13781
|
-
}>]>, t.TypeC<{
|
|
13782
|
-
pubkey: t.StringC;
|
|
13783
|
-
withdrawalCredentials: t.StringC;
|
|
13784
|
-
signature: t.StringC;
|
|
13785
|
-
depositDataRoot: t.StringC;
|
|
13786
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14432
|
+
gasLimit?: number | undefined;
|
|
14433
|
+
gasPrice?: number | undefined;
|
|
14434
|
+
} | {
|
|
14435
|
+
gasLimit?: number | undefined;
|
|
14436
|
+
maxFeePerGas?: number | undefined;
|
|
14437
|
+
maxPriorityFeePerGas?: number | undefined;
|
|
14438
|
+
}, unknown>, t.UndefinedC]>;
|
|
14439
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13787
14440
|
intentType: t.KeyofC<{
|
|
13788
14441
|
payment: t.LiteralC<"payment">;
|
|
13789
14442
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -13843,7 +14496,7 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13843
14496
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13844
14497
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13845
14498
|
}>]>, t.TypeC<{
|
|
13846
|
-
recipients: t.ArrayC<t.IntersectionC<[t.
|
|
14499
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
13847
14500
|
address: t.PartialC<{
|
|
13848
14501
|
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13849
14502
|
option: t.UnionC<[t.Type<{
|
|
@@ -13858,57 +14511,74 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13858
14511
|
}>;
|
|
13859
14512
|
}>, t.PartialC<{
|
|
13860
14513
|
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13861
|
-
}>]>, t.PartialC<{
|
|
13862
|
-
tokenData: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13863
|
-
tokenQuantity: t.StringC;
|
|
13864
|
-
tokenType: t.StringC;
|
|
13865
|
-
}>, t.PartialC<{
|
|
13866
|
-
tokenId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13867
|
-
}>]>, t.TypeC<{
|
|
13868
|
-
tokenName: t.StringC;
|
|
13869
|
-
}>, t.PartialC<{
|
|
13870
|
-
tokenContractAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13871
|
-
decimals: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13872
|
-
}>]>;
|
|
13873
14514
|
}>]>>;
|
|
13874
14515
|
}>, t.TypeC<{
|
|
13875
|
-
intentType: t.LiteralC<"
|
|
13876
|
-
}>]>, t.IntersectionC<[t.
|
|
14516
|
+
intentType: t.LiteralC<"spotTransfer">;
|
|
14517
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14518
|
+
intentType: t.KeyofC<{
|
|
14519
|
+
payment: t.LiteralC<"payment">;
|
|
14520
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
14521
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
14522
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
14523
|
+
fanout: t.LiteralC<"fanout">;
|
|
14524
|
+
stake: t.LiteralC<"stake">;
|
|
14525
|
+
unstake: t.LiteralC<"unstake">;
|
|
14526
|
+
delegate: t.LiteralC<"delegate">;
|
|
14527
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
14528
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
14529
|
+
claim: t.LiteralC<"claim">;
|
|
14530
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
14531
|
+
pledge: t.LiteralC<"pledge">;
|
|
14532
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
14533
|
+
vote: t.LiteralC<"vote">;
|
|
14534
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
14535
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
14536
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
14537
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
14538
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
14539
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
14540
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
14541
|
+
authorize: t.LiteralC<"authorize">;
|
|
14542
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
14543
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
14544
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
14545
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
14546
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
14547
|
+
customTx: t.LiteralC<"customTx">;
|
|
14548
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
14549
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
14550
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
14551
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
14552
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
14553
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
14554
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
14555
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
14556
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
14557
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
14558
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
14559
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
14560
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
14561
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
14562
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
14563
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
14564
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
14565
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
14566
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
14567
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
14568
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
14569
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
14570
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
14571
|
+
}>;
|
|
14572
|
+
}>, t.PartialC<{
|
|
14573
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14574
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13877
14575
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14576
|
+
}>]>, t.TypeC<{
|
|
14577
|
+
intentType: t.LiteralC<"enableBridging">;
|
|
14578
|
+
asset: t.StringC;
|
|
13878
14579
|
}>, t.PartialC<{
|
|
13879
|
-
|
|
13880
|
-
|
|
13881
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
13882
|
-
feeType?: "max" | "base" | "tip" | undefined;
|
|
13883
|
-
gasLimit?: number | undefined;
|
|
13884
|
-
gasPrice?: number | undefined;
|
|
13885
|
-
} | {
|
|
13886
|
-
gasLimit?: number | undefined;
|
|
13887
|
-
maxFeePerGas?: number | undefined;
|
|
13888
|
-
maxPriorityFeePerGas?: number | undefined;
|
|
13889
|
-
}, {
|
|
13890
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
13891
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
13892
|
-
feeType?: "max" | "base" | "tip" | undefined;
|
|
13893
|
-
gasLimit?: number | undefined;
|
|
13894
|
-
gasPrice?: number | undefined;
|
|
13895
|
-
} | {
|
|
13896
|
-
gasLimit?: number | undefined;
|
|
13897
|
-
maxFeePerGas?: number | undefined;
|
|
13898
|
-
maxPriorityFeePerGas?: number | undefined;
|
|
13899
|
-
}, unknown>, t.UndefinedC]>;
|
|
13900
|
-
hopParams: t.UnionC<[t.Type<{
|
|
13901
|
-
paymentId: string | undefined;
|
|
13902
|
-
userReqSig: string | undefined;
|
|
13903
|
-
gasPriceMax: number | undefined;
|
|
13904
|
-
}, {
|
|
13905
|
-
paymentId: string | undefined;
|
|
13906
|
-
userReqSig: string | undefined;
|
|
13907
|
-
gasPriceMax: number | undefined;
|
|
13908
|
-
}, unknown>, t.UndefinedC]>;
|
|
13909
|
-
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13910
|
-
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
13911
|
-
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14580
|
+
network: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14581
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13912
14582
|
intentType: t.KeyofC<{
|
|
13913
14583
|
payment: t.LiteralC<"payment">;
|
|
13914
14584
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -13968,7 +14638,6 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13968
14638
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13969
14639
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13970
14640
|
}>]>, t.TypeC<{
|
|
13971
|
-
intentType: t.LiteralC<"feeAddressTransfer">;
|
|
13972
14641
|
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
13973
14642
|
address: t.PartialC<{
|
|
13974
14643
|
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
@@ -13985,6 +14654,13 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13985
14654
|
}>, t.PartialC<{
|
|
13986
14655
|
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13987
14656
|
}>]>>;
|
|
14657
|
+
}>, t.UnionC<[t.TypeC<{
|
|
14658
|
+
intentType: t.LiteralC<"payment">;
|
|
14659
|
+
}>, t.TypeC<{
|
|
14660
|
+
intentType: t.LiteralC<"payment">;
|
|
14661
|
+
isTestTransaction: t.BooleanC;
|
|
14662
|
+
}>]>]>, t.PartialC<{
|
|
14663
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13988
14664
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13989
14665
|
intentType: t.KeyofC<{
|
|
13990
14666
|
payment: t.LiteralC<"payment">;
|
|
@@ -14045,35 +14721,20 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14045
14721
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14046
14722
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14047
14723
|
}>]>, t.TypeC<{
|
|
14048
|
-
|
|
14049
|
-
|
|
14050
|
-
|
|
14051
|
-
|
|
14052
|
-
|
|
14053
|
-
|
|
14054
|
-
|
|
14055
|
-
|
|
14056
|
-
|
|
14057
|
-
|
|
14058
|
-
|
|
14059
|
-
|
|
14060
|
-
|
|
14061
|
-
|
|
14062
|
-
gasLimit?: number | undefined;
|
|
14063
|
-
maxFeePerGas?: number | undefined;
|
|
14064
|
-
maxPriorityFeePerGas?: number | undefined;
|
|
14065
|
-
}, {
|
|
14066
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
14067
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
14068
|
-
feeType?: "max" | "base" | "tip" | undefined;
|
|
14069
|
-
gasLimit?: number | undefined;
|
|
14070
|
-
gasPrice?: number | undefined;
|
|
14071
|
-
} | {
|
|
14072
|
-
gasLimit?: number | undefined;
|
|
14073
|
-
maxFeePerGas?: number | undefined;
|
|
14074
|
-
maxPriorityFeePerGas?: number | undefined;
|
|
14075
|
-
}, unknown>, t.UndefinedC]>;
|
|
14076
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14724
|
+
stakingRequestId: t.StringC;
|
|
14725
|
+
}>, t.PartialC<{
|
|
14726
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
14727
|
+
}>]>, t.TypeC<{
|
|
14728
|
+
intentType: t.LiteralC<"pledge">;
|
|
14729
|
+
commitmentParams: t.IntersectionC<[t.TypeC<{
|
|
14730
|
+
commitmentFee: t.StringC;
|
|
14731
|
+
commitmentValue: t.StringC;
|
|
14732
|
+
signerAddress: t.StringC;
|
|
14733
|
+
chainId: t.NumberC;
|
|
14734
|
+
}>, t.TypeC<{
|
|
14735
|
+
pledgeCount: t.NumberC;
|
|
14736
|
+
}>]>;
|
|
14737
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14077
14738
|
intentType: t.KeyofC<{
|
|
14078
14739
|
payment: t.LiteralC<"payment">;
|
|
14079
14740
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -14133,25 +14794,19 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14133
14794
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14134
14795
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14135
14796
|
}>]>, t.TypeC<{
|
|
14136
|
-
|
|
14137
|
-
|
|
14138
|
-
|
|
14139
|
-
|
|
14140
|
-
|
|
14141
|
-
|
|
14142
|
-
|
|
14143
|
-
|
|
14144
|
-
|
|
14145
|
-
|
|
14146
|
-
|
|
14147
|
-
|
|
14148
|
-
|
|
14149
|
-
}>, t.PartialC<{
|
|
14150
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14151
|
-
}>]>>;
|
|
14152
|
-
}>, t.TypeC<{
|
|
14153
|
-
intentType: t.LiteralC<"spotTransfer">;
|
|
14154
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14797
|
+
stakingRequestId: t.StringC;
|
|
14798
|
+
}>, t.PartialC<{
|
|
14799
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
14800
|
+
}>]>, t.TypeC<{
|
|
14801
|
+
intentType: t.LiteralC<"stake">;
|
|
14802
|
+
}>]>, t.TypeC<{
|
|
14803
|
+
commitmentParams: t.TypeC<{
|
|
14804
|
+
commitmentFee: t.StringC;
|
|
14805
|
+
commitmentValue: t.StringC;
|
|
14806
|
+
signerAddress: t.StringC;
|
|
14807
|
+
chainId: t.NumberC;
|
|
14808
|
+
}>;
|
|
14809
|
+
}>]>, t.UnionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14155
14810
|
intentType: t.KeyofC<{
|
|
14156
14811
|
payment: t.LiteralC<"payment">;
|
|
14157
14812
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -14211,11 +14866,17 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14211
14866
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14212
14867
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14213
14868
|
}>]>, t.TypeC<{
|
|
14214
|
-
|
|
14215
|
-
|
|
14216
|
-
|
|
14217
|
-
|
|
14218
|
-
|
|
14869
|
+
signedRequest: t.IntersectionC<[t.TypeC<{
|
|
14870
|
+
invoice: t.StringC;
|
|
14871
|
+
}>, t.PartialC<{
|
|
14872
|
+
amountMsat: import("io-ts-types").BigIntFromStringC;
|
|
14873
|
+
feeLimitMsat: import("io-ts-types").BigIntFromStringC;
|
|
14874
|
+
feeLimitRatio: t.NumberC;
|
|
14875
|
+
}>]>;
|
|
14876
|
+
signature: t.StringC;
|
|
14877
|
+
}>, t.TypeC<{
|
|
14878
|
+
intentType: t.LiteralC<"payment">;
|
|
14879
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14219
14880
|
intentType: t.KeyofC<{
|
|
14220
14881
|
payment: t.LiteralC<"payment">;
|
|
14221
14882
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -14275,30 +14936,17 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14275
14936
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14276
14937
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14277
14938
|
}>]>, t.TypeC<{
|
|
14278
|
-
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
14279
|
-
address: t.PartialC<{
|
|
14280
|
-
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14281
|
-
option: t.UnionC<[t.Type<{
|
|
14282
|
-
[x: string]: unknown;
|
|
14283
|
-
}, {
|
|
14284
|
-
[x: string]: unknown;
|
|
14285
|
-
}, unknown>, t.UndefinedC]>;
|
|
14286
|
-
}>;
|
|
14287
|
-
amount: t.TypeC<{
|
|
14288
|
-
value: t.StringC;
|
|
14289
|
-
symbol: t.StringC;
|
|
14290
|
-
}>;
|
|
14291
|
-
}>, t.PartialC<{
|
|
14292
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14293
|
-
}>]>>;
|
|
14294
|
-
}>, t.UnionC<[t.TypeC<{
|
|
14295
|
-
intentType: t.LiteralC<"payment">;
|
|
14296
|
-
}>, t.TypeC<{
|
|
14297
14939
|
intentType: t.LiteralC<"payment">;
|
|
14298
|
-
|
|
14299
|
-
|
|
14300
|
-
|
|
14301
|
-
|
|
14940
|
+
onchainRequest: t.IntersectionC<[t.TypeC<{
|
|
14941
|
+
recipients: t.ArrayC<t.TypeC<{
|
|
14942
|
+
amountSat: import("io-ts-types").BigIntFromStringC;
|
|
14943
|
+
address: t.StringC;
|
|
14944
|
+
}>>;
|
|
14945
|
+
}>, t.PartialC<{
|
|
14946
|
+
satsPerVbyte: import("io-ts-types").BigIntFromStringC;
|
|
14947
|
+
numBlocks: t.NumberC;
|
|
14948
|
+
}>]>;
|
|
14949
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14302
14950
|
intentType: t.KeyofC<{
|
|
14303
14951
|
payment: t.LiteralC<"payment">;
|
|
14304
14952
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -14358,20 +15006,14 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14358
15006
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14359
15007
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14360
15008
|
}>]>, t.TypeC<{
|
|
14361
|
-
|
|
14362
|
-
|
|
14363
|
-
|
|
15009
|
+
intentType: t.LiteralC<"signMessage">;
|
|
15010
|
+
messageRaw: t.StringC;
|
|
15011
|
+
messageEncoded: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15012
|
+
messageStandardType: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15013
|
+
signerAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14364
15014
|
}>]>, t.TypeC<{
|
|
14365
|
-
|
|
14366
|
-
|
|
14367
|
-
commitmentFee: t.StringC;
|
|
14368
|
-
commitmentValue: t.StringC;
|
|
14369
|
-
signerAddress: t.StringC;
|
|
14370
|
-
chainId: t.NumberC;
|
|
14371
|
-
}>, t.TypeC<{
|
|
14372
|
-
pledgeCount: t.NumberC;
|
|
14373
|
-
}>]>;
|
|
14374
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15015
|
+
custodianMessageId: t.StringC;
|
|
15016
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14375
15017
|
intentType: t.KeyofC<{
|
|
14376
15018
|
payment: t.LiteralC<"payment">;
|
|
14377
15019
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -14431,19 +15073,30 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14431
15073
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14432
15074
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14433
15075
|
}>]>, t.TypeC<{
|
|
14434
|
-
|
|
14435
|
-
|
|
14436
|
-
|
|
14437
|
-
|
|
14438
|
-
|
|
14439
|
-
|
|
14440
|
-
|
|
14441
|
-
|
|
14442
|
-
|
|
14443
|
-
|
|
14444
|
-
|
|
14445
|
-
|
|
14446
|
-
|
|
15076
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
15077
|
+
address: t.PartialC<{
|
|
15078
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15079
|
+
option: t.UnionC<[t.Type<{
|
|
15080
|
+
[x: string]: unknown;
|
|
15081
|
+
}, {
|
|
15082
|
+
[x: string]: unknown;
|
|
15083
|
+
}, unknown>, t.UndefinedC]>;
|
|
15084
|
+
}>;
|
|
15085
|
+
amount: t.TypeC<{
|
|
15086
|
+
value: t.StringC;
|
|
15087
|
+
symbol: t.StringC;
|
|
15088
|
+
}>;
|
|
15089
|
+
}>, t.PartialC<{
|
|
15090
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15091
|
+
}>]>>;
|
|
15092
|
+
}>, t.UnionC<[t.TypeC<{
|
|
15093
|
+
intentType: t.LiteralC<"payment">;
|
|
15094
|
+
}>, t.TypeC<{
|
|
15095
|
+
intentType: t.LiteralC<"payment">;
|
|
15096
|
+
isTestTransaction: t.BooleanC;
|
|
15097
|
+
}>]>]>, t.TypeC<{
|
|
15098
|
+
custodianTransactionId: t.StringC;
|
|
15099
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14447
15100
|
intentType: t.KeyofC<{
|
|
14448
15101
|
payment: t.LiteralC<"payment">;
|
|
14449
15102
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -14503,17 +15156,29 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14503
15156
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14504
15157
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14505
15158
|
}>]>, t.TypeC<{
|
|
14506
|
-
|
|
14507
|
-
|
|
15159
|
+
stakingRequestId: t.StringC;
|
|
15160
|
+
}>, t.PartialC<{
|
|
15161
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
15162
|
+
}>]>, t.TypeC<{
|
|
15163
|
+
intentType: t.LiteralC<"stake">;
|
|
15164
|
+
}>]>, t.TypeC<{
|
|
15165
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
15166
|
+
address: t.PartialC<{
|
|
15167
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15168
|
+
option: t.UnionC<[t.Type<{
|
|
15169
|
+
[x: string]: unknown;
|
|
15170
|
+
}, {
|
|
15171
|
+
[x: string]: unknown;
|
|
15172
|
+
}, unknown>, t.UndefinedC]>;
|
|
15173
|
+
}>;
|
|
15174
|
+
amount: t.TypeC<{
|
|
15175
|
+
value: t.StringC;
|
|
15176
|
+
symbol: t.StringC;
|
|
15177
|
+
}>;
|
|
14508
15178
|
}>, t.PartialC<{
|
|
14509
|
-
|
|
14510
|
-
|
|
14511
|
-
|
|
14512
|
-
}>]>;
|
|
14513
|
-
signature: t.StringC;
|
|
14514
|
-
}>, t.TypeC<{
|
|
14515
|
-
intentType: t.LiteralC<"payment">;
|
|
14516
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15179
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15180
|
+
}>]>>;
|
|
15181
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14517
15182
|
intentType: t.KeyofC<{
|
|
14518
15183
|
payment: t.LiteralC<"payment">;
|
|
14519
15184
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -14573,17 +15238,29 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14573
15238
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14574
15239
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14575
15240
|
}>]>, t.TypeC<{
|
|
14576
|
-
|
|
14577
|
-
|
|
14578
|
-
|
|
14579
|
-
|
|
14580
|
-
|
|
14581
|
-
|
|
15241
|
+
stakingRequestId: t.StringC;
|
|
15242
|
+
}>, t.PartialC<{
|
|
15243
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
15244
|
+
}>]>, t.TypeC<{
|
|
15245
|
+
intentType: t.LiteralC<"unstake">;
|
|
15246
|
+
}>]>, t.TypeC<{
|
|
15247
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
15248
|
+
address: t.PartialC<{
|
|
15249
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15250
|
+
option: t.UnionC<[t.Type<{
|
|
15251
|
+
[x: string]: unknown;
|
|
15252
|
+
}, {
|
|
15253
|
+
[x: string]: unknown;
|
|
15254
|
+
}, unknown>, t.UndefinedC]>;
|
|
15255
|
+
}>;
|
|
15256
|
+
amount: t.TypeC<{
|
|
15257
|
+
value: t.StringC;
|
|
15258
|
+
symbol: t.StringC;
|
|
15259
|
+
}>;
|
|
14582
15260
|
}>, t.PartialC<{
|
|
14583
|
-
|
|
14584
|
-
|
|
14585
|
-
|
|
14586
|
-
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15261
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15262
|
+
}>]>>;
|
|
15263
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14587
15264
|
intentType: t.KeyofC<{
|
|
14588
15265
|
payment: t.LiteralC<"payment">;
|
|
14589
15266
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -14643,13 +15320,36 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14643
15320
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14644
15321
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14645
15322
|
}>]>, t.TypeC<{
|
|
14646
|
-
|
|
14647
|
-
|
|
14648
|
-
|
|
14649
|
-
messageStandardType: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14650
|
-
signerAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15323
|
+
stakingRequestId: t.StringC;
|
|
15324
|
+
}>, t.PartialC<{
|
|
15325
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
14651
15326
|
}>]>, t.TypeC<{
|
|
14652
|
-
|
|
15327
|
+
intentType: t.LiteralC<"claim">;
|
|
15328
|
+
}>, t.PartialC<{
|
|
15329
|
+
amount: t.UnionC<[t.Type<{
|
|
15330
|
+
value: string;
|
|
15331
|
+
symbol: string;
|
|
15332
|
+
}, {
|
|
15333
|
+
value: string;
|
|
15334
|
+
symbol: string;
|
|
15335
|
+
}, unknown>, t.UndefinedC]>;
|
|
15336
|
+
}>]>, t.TypeC<{
|
|
15337
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
15338
|
+
address: t.PartialC<{
|
|
15339
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15340
|
+
option: t.UnionC<[t.Type<{
|
|
15341
|
+
[x: string]: unknown;
|
|
15342
|
+
}, {
|
|
15343
|
+
[x: string]: unknown;
|
|
15344
|
+
}, unknown>, t.UndefinedC]>;
|
|
15345
|
+
}>;
|
|
15346
|
+
amount: t.TypeC<{
|
|
15347
|
+
value: t.StringC;
|
|
15348
|
+
symbol: t.StringC;
|
|
15349
|
+
}>;
|
|
15350
|
+
}>, t.PartialC<{
|
|
15351
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15352
|
+
}>]>>;
|
|
14653
15353
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14654
15354
|
intentType: t.KeyofC<{
|
|
14655
15355
|
payment: t.LiteralC<"payment">;
|
|
@@ -14709,31 +15409,60 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14709
15409
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14710
15410
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14711
15411
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14712
|
-
}>]>, t.
|
|
14713
|
-
|
|
14714
|
-
|
|
14715
|
-
|
|
14716
|
-
|
|
15412
|
+
}>]>, t.PartialC<{
|
|
15413
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15414
|
+
}>, t.TypeC<{
|
|
15415
|
+
intentType: t.LiteralC<"createAccount">;
|
|
15416
|
+
}>, t.PartialC<{
|
|
15417
|
+
name: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15418
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15419
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15420
|
+
}>, t.PartialC<{
|
|
15421
|
+
fee: t.UnionC<[t.Type<{
|
|
15422
|
+
amount: string | number;
|
|
15423
|
+
} & {
|
|
15424
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15425
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15426
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
15427
|
+
}, {
|
|
15428
|
+
amount: string | number;
|
|
15429
|
+
} & {
|
|
15430
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15431
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15432
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
15433
|
+
}, unknown>, t.UndefinedC]>;
|
|
15434
|
+
}>]>, t.PartialC<{
|
|
15435
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15436
|
+
}>, t.PartialC<{
|
|
15437
|
+
index: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
15438
|
+
recipients: t.UnionC<[t.Type<({
|
|
15439
|
+
address: {
|
|
15440
|
+
address?: string | undefined;
|
|
15441
|
+
option?: {
|
|
14717
15442
|
[x: string]: unknown;
|
|
14718
|
-
}
|
|
15443
|
+
} | undefined;
|
|
15444
|
+
};
|
|
15445
|
+
amount: {
|
|
15446
|
+
value: string;
|
|
15447
|
+
symbol: string;
|
|
15448
|
+
};
|
|
15449
|
+
} & {
|
|
15450
|
+
data?: string | undefined;
|
|
15451
|
+
})[], ({
|
|
15452
|
+
address: {
|
|
15453
|
+
address?: string | undefined;
|
|
15454
|
+
option?: {
|
|
14719
15455
|
[x: string]: unknown;
|
|
14720
|
-
}
|
|
14721
|
-
}
|
|
14722
|
-
amount:
|
|
14723
|
-
value:
|
|
14724
|
-
symbol:
|
|
14725
|
-
}
|
|
14726
|
-
}
|
|
14727
|
-
data
|
|
14728
|
-
}
|
|
14729
|
-
}>, t.
|
|
14730
|
-
intentType: t.LiteralC<"payment">;
|
|
14731
|
-
}>, t.TypeC<{
|
|
14732
|
-
intentType: t.LiteralC<"payment">;
|
|
14733
|
-
isTestTransaction: t.BooleanC;
|
|
14734
|
-
}>]>]>, t.TypeC<{
|
|
14735
|
-
custodianTransactionId: t.StringC;
|
|
14736
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15456
|
+
} | undefined;
|
|
15457
|
+
};
|
|
15458
|
+
amount: {
|
|
15459
|
+
value: string;
|
|
15460
|
+
symbol: string;
|
|
15461
|
+
};
|
|
15462
|
+
} & {
|
|
15463
|
+
data?: string | undefined;
|
|
15464
|
+
})[], unknown>, t.UndefinedC]>;
|
|
15465
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14737
15466
|
intentType: t.KeyofC<{
|
|
14738
15467
|
payment: t.LiteralC<"payment">;
|
|
14739
15468
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -14792,29 +15521,31 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14792
15521
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14793
15522
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14794
15523
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14795
|
-
}>]>, t.
|
|
14796
|
-
|
|
15524
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15525
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14797
15526
|
}>, t.PartialC<{
|
|
14798
|
-
|
|
14799
|
-
|
|
14800
|
-
|
|
14801
|
-
|
|
14802
|
-
|
|
14803
|
-
|
|
14804
|
-
|
|
14805
|
-
|
|
14806
|
-
|
|
14807
|
-
|
|
14808
|
-
|
|
14809
|
-
|
|
14810
|
-
|
|
14811
|
-
|
|
14812
|
-
|
|
14813
|
-
|
|
14814
|
-
|
|
15527
|
+
fee: t.UnionC<[t.Type<{
|
|
15528
|
+
amount: string | number;
|
|
15529
|
+
} & {
|
|
15530
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15531
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15532
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
15533
|
+
}, {
|
|
15534
|
+
amount: string | number;
|
|
15535
|
+
} & {
|
|
15536
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15537
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15538
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
15539
|
+
}, unknown>, t.UndefinedC]>;
|
|
15540
|
+
}>]>, t.TypeC<{
|
|
15541
|
+
intentType: t.LiteralC<"enableToken">;
|
|
15542
|
+
enableTokens: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
15543
|
+
name: t.StringC;
|
|
14815
15544
|
}>, t.PartialC<{
|
|
14816
|
-
|
|
15545
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14817
15546
|
}>]>>;
|
|
15547
|
+
}>, t.PartialC<{
|
|
15548
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14818
15549
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14819
15550
|
intentType: t.KeyofC<{
|
|
14820
15551
|
payment: t.LiteralC<"payment">;
|
|
@@ -14878,8 +15609,22 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14878
15609
|
stakingRequestId: t.StringC;
|
|
14879
15610
|
}>, t.PartialC<{
|
|
14880
15611
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
14881
|
-
}>]>, t.
|
|
14882
|
-
|
|
15612
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15613
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15614
|
+
}>, t.PartialC<{
|
|
15615
|
+
fee: t.UnionC<[t.Type<{
|
|
15616
|
+
amount: string | number;
|
|
15617
|
+
} & {
|
|
15618
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15619
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15620
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
15621
|
+
}, {
|
|
15622
|
+
amount: string | number;
|
|
15623
|
+
} & {
|
|
15624
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15625
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15626
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
15627
|
+
}, unknown>, t.UndefinedC]>;
|
|
14883
15628
|
}>]>, t.TypeC<{
|
|
14884
15629
|
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
14885
15630
|
address: t.PartialC<{
|
|
@@ -14897,6 +15642,10 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14897
15642
|
}>, t.PartialC<{
|
|
14898
15643
|
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14899
15644
|
}>]>>;
|
|
15645
|
+
}>]>, t.TypeC<{
|
|
15646
|
+
intentType: t.LiteralC<"stake">;
|
|
15647
|
+
}>, t.PartialC<{
|
|
15648
|
+
addToStake: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
14900
15649
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14901
15650
|
intentType: t.KeyofC<{
|
|
14902
15651
|
payment: t.LiteralC<"payment">;
|
|
@@ -14960,15 +15709,21 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14960
15709
|
stakingRequestId: t.StringC;
|
|
14961
15710
|
}>, t.PartialC<{
|
|
14962
15711
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
14963
|
-
}>]>, t.
|
|
14964
|
-
|
|
15712
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15713
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14965
15714
|
}>, t.PartialC<{
|
|
14966
|
-
|
|
14967
|
-
|
|
14968
|
-
|
|
15715
|
+
fee: t.UnionC<[t.Type<{
|
|
15716
|
+
amount: string | number;
|
|
15717
|
+
} & {
|
|
15718
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15719
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15720
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
14969
15721
|
}, {
|
|
14970
|
-
|
|
14971
|
-
|
|
15722
|
+
amount: string | number;
|
|
15723
|
+
} & {
|
|
15724
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15725
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15726
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
14972
15727
|
}, unknown>, t.UndefinedC]>;
|
|
14973
15728
|
}>]>, t.TypeC<{
|
|
14974
15729
|
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
@@ -14987,7 +15742,11 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14987
15742
|
}>, t.PartialC<{
|
|
14988
15743
|
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14989
15744
|
}>]>>;
|
|
14990
|
-
}>]>, t.
|
|
15745
|
+
}>]>, t.TypeC<{
|
|
15746
|
+
intentType: t.LiteralC<"unstake">;
|
|
15747
|
+
}>, t.PartialC<{
|
|
15748
|
+
stopStaking: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
15749
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14991
15750
|
intentType: t.KeyofC<{
|
|
14992
15751
|
payment: t.LiteralC<"payment">;
|
|
14993
15752
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -15046,12 +15805,10 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15046
15805
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15047
15806
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15048
15807
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15049
|
-
}>]>, t.
|
|
15050
|
-
|
|
15051
|
-
}>, t.TypeC<{
|
|
15052
|
-
intentType: t.LiteralC<"createAccount">;
|
|
15808
|
+
}>]>, t.TypeC<{
|
|
15809
|
+
stakingRequestId: t.StringC;
|
|
15053
15810
|
}>, t.PartialC<{
|
|
15054
|
-
|
|
15811
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
15055
15812
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15056
15813
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15057
15814
|
}>, t.PartialC<{
|
|
@@ -15068,37 +15825,25 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15068
15825
|
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15069
15826
|
type?: "max" | "base" | "tip" | undefined;
|
|
15070
15827
|
}, unknown>, t.UndefinedC]>;
|
|
15071
|
-
}>]>, t.
|
|
15072
|
-
|
|
15073
|
-
|
|
15074
|
-
|
|
15075
|
-
|
|
15076
|
-
address: {
|
|
15077
|
-
address?: string | undefined;
|
|
15078
|
-
option?: {
|
|
15828
|
+
}>]>, t.TypeC<{
|
|
15829
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
15830
|
+
address: t.PartialC<{
|
|
15831
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15832
|
+
option: t.UnionC<[t.Type<{
|
|
15079
15833
|
[x: string]: unknown;
|
|
15080
|
-
}
|
|
15081
|
-
};
|
|
15082
|
-
amount: {
|
|
15083
|
-
value: string;
|
|
15084
|
-
symbol: string;
|
|
15085
|
-
};
|
|
15086
|
-
} & {
|
|
15087
|
-
data?: string | undefined;
|
|
15088
|
-
})[], ({
|
|
15089
|
-
address: {
|
|
15090
|
-
address?: string | undefined;
|
|
15091
|
-
option?: {
|
|
15834
|
+
}, {
|
|
15092
15835
|
[x: string]: unknown;
|
|
15093
|
-
}
|
|
15094
|
-
}
|
|
15095
|
-
amount: {
|
|
15096
|
-
value:
|
|
15097
|
-
symbol:
|
|
15098
|
-
}
|
|
15099
|
-
}
|
|
15100
|
-
data
|
|
15101
|
-
}
|
|
15836
|
+
}, unknown>, t.UndefinedC]>;
|
|
15837
|
+
}>;
|
|
15838
|
+
amount: t.TypeC<{
|
|
15839
|
+
value: t.StringC;
|
|
15840
|
+
symbol: t.StringC;
|
|
15841
|
+
}>;
|
|
15842
|
+
}>, t.PartialC<{
|
|
15843
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15844
|
+
}>]>>;
|
|
15845
|
+
}>]>, t.TypeC<{
|
|
15846
|
+
intentType: t.LiteralC<"claim">;
|
|
15102
15847
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15103
15848
|
intentType: t.KeyofC<{
|
|
15104
15849
|
payment: t.LiteralC<"payment">;
|
|
@@ -15160,29 +15905,18 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15160
15905
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15161
15906
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15162
15907
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15163
|
-
}>, t.
|
|
15164
|
-
fee: t.UnionC<[t.Type<{
|
|
15165
|
-
amount: string | number;
|
|
15166
|
-
} & {
|
|
15167
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15168
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15169
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
15170
|
-
}, {
|
|
15171
|
-
amount: string | number;
|
|
15172
|
-
} & {
|
|
15173
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15174
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15175
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
15176
|
-
}, unknown>, t.UndefinedC]>;
|
|
15177
|
-
}>]>, t.TypeC<{
|
|
15178
|
-
intentType: t.LiteralC<"enableToken">;
|
|
15179
|
-
enableTokens: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
15180
|
-
name: t.StringC;
|
|
15181
|
-
}>, t.PartialC<{
|
|
15182
|
-
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15183
|
-
}>]>>;
|
|
15184
|
-
}>, t.PartialC<{
|
|
15908
|
+
}>, t.TypeC<{
|
|
15185
15909
|
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15910
|
+
}>]>, t.TypeC<{
|
|
15911
|
+
intentType: t.LiteralC<"authorize">;
|
|
15912
|
+
transactionMessage: t.StringC;
|
|
15913
|
+
stakeAccount: t.StringC;
|
|
15914
|
+
oldWithdrawPublicKey: t.StringC;
|
|
15915
|
+
newWithdrawPublicKey: t.StringC;
|
|
15916
|
+
lockupPublicKey: t.StringC;
|
|
15917
|
+
nonceAccount: t.StringC;
|
|
15918
|
+
nonceAuthority: t.StringC;
|
|
15919
|
+
blockhash: t.StringC;
|
|
15186
15920
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15187
15921
|
intentType: t.KeyofC<{
|
|
15188
15922
|
payment: t.LiteralC<"payment">;
|
|
@@ -15246,44 +15980,28 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15246
15980
|
stakingRequestId: t.StringC;
|
|
15247
15981
|
}>, t.PartialC<{
|
|
15248
15982
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
15249
|
-
}>]>, t.
|
|
15250
|
-
|
|
15983
|
+
}>]>, t.TypeC<{
|
|
15984
|
+
intentType: t.LiteralC<"claim">;
|
|
15251
15985
|
}>, t.PartialC<{
|
|
15252
|
-
|
|
15253
|
-
|
|
15254
|
-
|
|
15255
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15256
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15257
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
15986
|
+
amount: t.UnionC<[t.Type<{
|
|
15987
|
+
value: string;
|
|
15988
|
+
symbol: string;
|
|
15258
15989
|
}, {
|
|
15259
|
-
|
|
15260
|
-
|
|
15261
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15262
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15263
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
15990
|
+
value: string;
|
|
15991
|
+
symbol: string;
|
|
15264
15992
|
}, unknown>, t.UndefinedC]>;
|
|
15993
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15994
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15995
|
+
}>, t.TypeC<{
|
|
15996
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15265
15997
|
}>]>, t.TypeC<{
|
|
15266
|
-
|
|
15267
|
-
|
|
15268
|
-
|
|
15269
|
-
|
|
15270
|
-
|
|
15271
|
-
|
|
15272
|
-
|
|
15273
|
-
}, unknown>, t.UndefinedC]>;
|
|
15274
|
-
}>;
|
|
15275
|
-
amount: t.TypeC<{
|
|
15276
|
-
value: t.StringC;
|
|
15277
|
-
symbol: t.StringC;
|
|
15278
|
-
}>;
|
|
15279
|
-
}>, t.PartialC<{
|
|
15280
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15281
|
-
}>]>>;
|
|
15282
|
-
}>]>, t.TypeC<{
|
|
15283
|
-
intentType: t.LiteralC<"stake">;
|
|
15284
|
-
}>, t.PartialC<{
|
|
15285
|
-
addToStake: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
15286
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15998
|
+
amount: t.TypeC<{
|
|
15999
|
+
value: t.StringC;
|
|
16000
|
+
symbol: t.StringC;
|
|
16001
|
+
}>;
|
|
16002
|
+
}>, t.TypeC<{
|
|
16003
|
+
stakingAddress: t.StringC;
|
|
16004
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15287
16005
|
intentType: t.KeyofC<{
|
|
15288
16006
|
payment: t.LiteralC<"payment">;
|
|
15289
16007
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -15342,48 +16060,75 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15342
16060
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15343
16061
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15344
16062
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16063
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
16064
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16065
|
+
}>, t.TypeC<{
|
|
16066
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15345
16067
|
}>]>, t.TypeC<{
|
|
15346
|
-
|
|
15347
|
-
|
|
15348
|
-
|
|
16068
|
+
intentType: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
16069
|
+
accountAddress: t.StringC;
|
|
16070
|
+
destinationAddress: t.StringC;
|
|
15349
16071
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15350
16072
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16073
|
+
}>, t.TypeC<{
|
|
16074
|
+
intentType: t.LiteralC<"consolidate">;
|
|
16075
|
+
receiveAddress: t.StringC;
|
|
15351
16076
|
}>, t.PartialC<{
|
|
15352
|
-
|
|
15353
|
-
|
|
16077
|
+
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
16078
|
+
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16079
|
+
recipients: t.UnionC<[t.Type<({
|
|
16080
|
+
address: {
|
|
16081
|
+
address?: string | undefined;
|
|
16082
|
+
option?: {
|
|
16083
|
+
[x: string]: unknown;
|
|
16084
|
+
} | undefined;
|
|
16085
|
+
};
|
|
16086
|
+
amount: {
|
|
16087
|
+
value: string;
|
|
16088
|
+
symbol: string;
|
|
16089
|
+
};
|
|
15354
16090
|
} & {
|
|
15355
|
-
|
|
15356
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15357
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
15358
|
-
}, {
|
|
15359
|
-
amount: string | number;
|
|
16091
|
+
data?: string | undefined;
|
|
15360
16092
|
} & {
|
|
15361
|
-
|
|
15362
|
-
|
|
15363
|
-
|
|
15364
|
-
|
|
15365
|
-
|
|
15366
|
-
|
|
15367
|
-
|
|
15368
|
-
|
|
15369
|
-
|
|
15370
|
-
|
|
15371
|
-
|
|
16093
|
+
tokenData?: ({
|
|
16094
|
+
tokenQuantity: string;
|
|
16095
|
+
tokenType: string;
|
|
16096
|
+
} & {
|
|
16097
|
+
tokenId?: string | undefined;
|
|
16098
|
+
} & {
|
|
16099
|
+
tokenName: string;
|
|
16100
|
+
} & {
|
|
16101
|
+
tokenContractAddress?: string | undefined;
|
|
16102
|
+
decimals?: number | undefined;
|
|
16103
|
+
}) | undefined;
|
|
16104
|
+
})[], ({
|
|
16105
|
+
address: {
|
|
16106
|
+
address?: string | undefined;
|
|
16107
|
+
option?: {
|
|
15372
16108
|
[x: string]: unknown;
|
|
15373
|
-
}
|
|
15374
|
-
}
|
|
15375
|
-
amount:
|
|
15376
|
-
value:
|
|
15377
|
-
symbol:
|
|
15378
|
-
}
|
|
15379
|
-
}
|
|
15380
|
-
data
|
|
15381
|
-
}
|
|
15382
|
-
|
|
15383
|
-
|
|
15384
|
-
|
|
15385
|
-
|
|
15386
|
-
|
|
16109
|
+
} | undefined;
|
|
16110
|
+
};
|
|
16111
|
+
amount: {
|
|
16112
|
+
value: string;
|
|
16113
|
+
symbol: string;
|
|
16114
|
+
};
|
|
16115
|
+
} & {
|
|
16116
|
+
data?: string | undefined;
|
|
16117
|
+
} & {
|
|
16118
|
+
tokenData?: ({
|
|
16119
|
+
tokenQuantity: string;
|
|
16120
|
+
tokenType: string;
|
|
16121
|
+
} & {
|
|
16122
|
+
tokenId?: string | undefined;
|
|
16123
|
+
} & {
|
|
16124
|
+
tokenName: string;
|
|
16125
|
+
} & {
|
|
16126
|
+
tokenContractAddress?: string | undefined;
|
|
16127
|
+
decimals?: number | undefined;
|
|
16128
|
+
}) | undefined;
|
|
16129
|
+
})[], unknown>, t.UndefinedC]>;
|
|
16130
|
+
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
16131
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15387
16132
|
intentType: t.KeyofC<{
|
|
15388
16133
|
payment: t.LiteralC<"payment">;
|
|
15389
16134
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -15443,45 +16188,17 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15443
16188
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15444
16189
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15445
16190
|
}>]>, t.TypeC<{
|
|
15446
|
-
|
|
15447
|
-
|
|
15448
|
-
|
|
15449
|
-
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15450
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15451
|
-
}>, t.PartialC<{
|
|
15452
|
-
fee: t.UnionC<[t.Type<{
|
|
15453
|
-
amount: string | number;
|
|
15454
|
-
} & {
|
|
15455
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15456
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15457
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
15458
|
-
}, {
|
|
15459
|
-
amount: string | number;
|
|
15460
|
-
} & {
|
|
15461
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15462
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
15463
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
15464
|
-
}, unknown>, t.UndefinedC]>;
|
|
15465
|
-
}>]>, t.TypeC<{
|
|
15466
|
-
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
15467
|
-
address: t.PartialC<{
|
|
15468
|
-
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15469
|
-
option: t.UnionC<[t.Type<{
|
|
15470
|
-
[x: string]: unknown;
|
|
15471
|
-
}, {
|
|
15472
|
-
[x: string]: unknown;
|
|
15473
|
-
}, unknown>, t.UndefinedC]>;
|
|
15474
|
-
}>;
|
|
15475
|
-
amount: t.TypeC<{
|
|
15476
|
-
value: t.StringC;
|
|
15477
|
-
symbol: t.StringC;
|
|
15478
|
-
}>;
|
|
16191
|
+
intentType: t.LiteralC<"enableToken">;
|
|
16192
|
+
enableTokens: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
16193
|
+
name: t.StringC;
|
|
15479
16194
|
}>, t.PartialC<{
|
|
15480
|
-
|
|
16195
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15481
16196
|
}>]>>;
|
|
15482
|
-
}>]>, t.
|
|
15483
|
-
|
|
15484
|
-
}
|
|
16197
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
16198
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16199
|
+
}>, t.TypeC<{
|
|
16200
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16201
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15485
16202
|
intentType: t.KeyofC<{
|
|
15486
16203
|
payment: t.LiteralC<"payment">;
|
|
15487
16204
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -15545,16 +16262,17 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15545
16262
|
}>, t.TypeC<{
|
|
15546
16263
|
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15547
16264
|
}>]>, t.TypeC<{
|
|
15548
|
-
intentType: t.LiteralC<"
|
|
15549
|
-
|
|
15550
|
-
|
|
15551
|
-
|
|
15552
|
-
|
|
15553
|
-
|
|
15554
|
-
|
|
15555
|
-
|
|
15556
|
-
|
|
15557
|
-
|
|
16265
|
+
intentType: t.LiteralC<"customTx">;
|
|
16266
|
+
solInstructions: t.ArrayC<t.TypeC<{
|
|
16267
|
+
programId: t.StringC;
|
|
16268
|
+
keys: t.ArrayC<t.TypeC<{
|
|
16269
|
+
pubkey: t.StringC;
|
|
16270
|
+
isSigner: t.BooleanC;
|
|
16271
|
+
isWritable: t.BooleanC;
|
|
16272
|
+
}>>;
|
|
16273
|
+
data: t.StringC;
|
|
16274
|
+
}>>;
|
|
16275
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15558
16276
|
intentType: t.KeyofC<{
|
|
15559
16277
|
payment: t.LiteralC<"payment">;
|
|
15560
16278
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -15613,31 +16331,14 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15613
16331
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15614
16332
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15615
16333
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15616
|
-
}>]>, t.TypeC<{
|
|
15617
|
-
stakingRequestId: t.StringC;
|
|
15618
|
-
}>, t.PartialC<{
|
|
15619
|
-
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
15620
|
-
}>]>, t.TypeC<{
|
|
15621
|
-
intentType: t.LiteralC<"claim">;
|
|
15622
|
-
}>, t.PartialC<{
|
|
15623
|
-
amount: t.UnionC<[t.Type<{
|
|
15624
|
-
value: string;
|
|
15625
|
-
symbol: string;
|
|
15626
|
-
}, {
|
|
15627
|
-
value: string;
|
|
15628
|
-
symbol: string;
|
|
15629
|
-
}, unknown>, t.UndefinedC]>;
|
|
15630
16334
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15631
16335
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15632
16336
|
}>, t.TypeC<{
|
|
15633
16337
|
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15634
16338
|
}>]>, t.TypeC<{
|
|
15635
|
-
|
|
15636
|
-
|
|
15637
|
-
|
|
15638
|
-
}>;
|
|
15639
|
-
}>, t.TypeC<{
|
|
15640
|
-
stakingAddress: t.StringC;
|
|
16339
|
+
intentType: t.LiteralC<"deactivate">;
|
|
16340
|
+
stakingAddresses: t.UnionC<[t.Type<string[], string[], unknown>, t.UndefinedC]>;
|
|
16341
|
+
stakingAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15641
16342
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15642
16343
|
intentType: t.KeyofC<{
|
|
15643
16344
|
payment: t.LiteralC<"payment">;
|
|
@@ -15702,70 +16403,11 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15702
16403
|
}>, t.TypeC<{
|
|
15703
16404
|
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15704
16405
|
}>]>, t.TypeC<{
|
|
15705
|
-
intentType: t.LiteralC<"
|
|
15706
|
-
|
|
15707
|
-
|
|
15708
|
-
|
|
15709
|
-
|
|
15710
|
-
}>, t.TypeC<{
|
|
15711
|
-
intentType: t.LiteralC<"consolidate">;
|
|
15712
|
-
receiveAddress: t.StringC;
|
|
15713
|
-
}>, t.PartialC<{
|
|
15714
|
-
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
15715
|
-
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15716
|
-
recipients: t.UnionC<[t.Type<({
|
|
15717
|
-
address: {
|
|
15718
|
-
address?: string | undefined;
|
|
15719
|
-
option?: {
|
|
15720
|
-
[x: string]: unknown;
|
|
15721
|
-
} | undefined;
|
|
15722
|
-
};
|
|
15723
|
-
amount: {
|
|
15724
|
-
value: string;
|
|
15725
|
-
symbol: string;
|
|
15726
|
-
};
|
|
15727
|
-
} & {
|
|
15728
|
-
data?: string | undefined;
|
|
15729
|
-
} & {
|
|
15730
|
-
tokenData?: ({
|
|
15731
|
-
tokenQuantity: string;
|
|
15732
|
-
tokenType: string;
|
|
15733
|
-
} & {
|
|
15734
|
-
tokenId?: string | undefined;
|
|
15735
|
-
} & {
|
|
15736
|
-
tokenName: string;
|
|
15737
|
-
} & {
|
|
15738
|
-
tokenContractAddress?: string | undefined;
|
|
15739
|
-
decimals?: number | undefined;
|
|
15740
|
-
}) | undefined;
|
|
15741
|
-
})[], ({
|
|
15742
|
-
address: {
|
|
15743
|
-
address?: string | undefined;
|
|
15744
|
-
option?: {
|
|
15745
|
-
[x: string]: unknown;
|
|
15746
|
-
} | undefined;
|
|
15747
|
-
};
|
|
15748
|
-
amount: {
|
|
15749
|
-
value: string;
|
|
15750
|
-
symbol: string;
|
|
15751
|
-
};
|
|
15752
|
-
} & {
|
|
15753
|
-
data?: string | undefined;
|
|
15754
|
-
} & {
|
|
15755
|
-
tokenData?: ({
|
|
15756
|
-
tokenQuantity: string;
|
|
15757
|
-
tokenType: string;
|
|
15758
|
-
} & {
|
|
15759
|
-
tokenId?: string | undefined;
|
|
15760
|
-
} & {
|
|
15761
|
-
tokenName: string;
|
|
15762
|
-
} & {
|
|
15763
|
-
tokenContractAddress?: string | undefined;
|
|
15764
|
-
decimals?: number | undefined;
|
|
15765
|
-
}) | undefined;
|
|
15766
|
-
})[], unknown>, t.UndefinedC]>;
|
|
15767
|
-
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
15768
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16406
|
+
intentType: t.LiteralC<"delegate">;
|
|
16407
|
+
validatorAddress: t.StringC;
|
|
16408
|
+
stakingAddresses: t.UnionC<[t.Type<string[], string[], unknown>, t.UndefinedC]>;
|
|
16409
|
+
stakingAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16410
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15769
16411
|
intentType: t.KeyofC<{
|
|
15770
16412
|
payment: t.LiteralC<"payment">;
|
|
15771
16413
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -15825,17 +16467,30 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15825
16467
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15826
16468
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15827
16469
|
}>]>, t.TypeC<{
|
|
15828
|
-
|
|
15829
|
-
|
|
15830
|
-
|
|
16470
|
+
goStakingRequestId: t.StringC;
|
|
16471
|
+
}>]>, t.TypeC<{
|
|
16472
|
+
intentType: t.LiteralC<"goUnstake">;
|
|
16473
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
16474
|
+
address: t.PartialC<{
|
|
16475
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16476
|
+
option: t.UnionC<[t.Type<{
|
|
16477
|
+
[x: string]: unknown;
|
|
16478
|
+
}, {
|
|
16479
|
+
[x: string]: unknown;
|
|
16480
|
+
}, unknown>, t.UndefinedC]>;
|
|
16481
|
+
}>;
|
|
16482
|
+
amount: t.TypeC<{
|
|
16483
|
+
value: t.StringC;
|
|
16484
|
+
symbol: t.StringC;
|
|
16485
|
+
}>;
|
|
15831
16486
|
}>, t.PartialC<{
|
|
15832
|
-
|
|
16487
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15833
16488
|
}>]>>;
|
|
15834
16489
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15835
16490
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15836
16491
|
}>, t.TypeC<{
|
|
15837
16492
|
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15838
|
-
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16493
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15839
16494
|
intentType: t.KeyofC<{
|
|
15840
16495
|
payment: t.LiteralC<"payment">;
|
|
15841
16496
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -15894,22 +16549,33 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15894
16549
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15895
16550
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15896
16551
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15897
|
-
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15898
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15899
|
-
}>, t.TypeC<{
|
|
15900
|
-
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15901
16552
|
}>]>, t.TypeC<{
|
|
15902
|
-
|
|
15903
|
-
|
|
15904
|
-
|
|
15905
|
-
|
|
15906
|
-
|
|
15907
|
-
|
|
15908
|
-
|
|
15909
|
-
|
|
15910
|
-
|
|
15911
|
-
|
|
15912
|
-
|
|
16553
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
16554
|
+
address: t.PartialC<{
|
|
16555
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16556
|
+
option: t.UnionC<[t.Type<{
|
|
16557
|
+
[x: string]: unknown;
|
|
16558
|
+
}, {
|
|
16559
|
+
[x: string]: unknown;
|
|
16560
|
+
}, unknown>, t.UndefinedC]>;
|
|
16561
|
+
}>;
|
|
16562
|
+
amount: t.TypeC<{
|
|
16563
|
+
value: t.StringC;
|
|
16564
|
+
symbol: t.StringC;
|
|
16565
|
+
}>;
|
|
16566
|
+
}>, t.PartialC<{
|
|
16567
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16568
|
+
}>]>>;
|
|
16569
|
+
}>, t.UnionC<[t.TypeC<{
|
|
16570
|
+
intentType: t.LiteralC<"payment">;
|
|
16571
|
+
}>, t.TypeC<{
|
|
16572
|
+
intentType: t.LiteralC<"payment">;
|
|
16573
|
+
isTestTransaction: t.BooleanC;
|
|
16574
|
+
}>]>]>, t.IntersectionC<[t.PartialC<{
|
|
16575
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16576
|
+
}>, t.TypeC<{
|
|
16577
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16578
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15913
16579
|
intentType: t.KeyofC<{
|
|
15914
16580
|
payment: t.LiteralC<"payment">;
|
|
15915
16581
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -15968,15 +16634,26 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
15968
16634
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15969
16635
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15970
16636
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16637
|
+
}>]>, t.TypeC<{
|
|
16638
|
+
stakingRequestId: t.StringC;
|
|
16639
|
+
}>, t.PartialC<{
|
|
16640
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
16641
|
+
}>]>, t.TypeC<{
|
|
16642
|
+
intentType: t.LiteralC<"stake">;
|
|
15971
16643
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15972
16644
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15973
16645
|
}>, t.TypeC<{
|
|
15974
16646
|
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15975
16647
|
}>]>, t.TypeC<{
|
|
15976
|
-
|
|
15977
|
-
|
|
15978
|
-
|
|
15979
|
-
|
|
16648
|
+
amount: t.TypeC<{
|
|
16649
|
+
value: t.StringC;
|
|
16650
|
+
symbol: t.StringC;
|
|
16651
|
+
}>;
|
|
16652
|
+
}>, t.TypeC<{
|
|
16653
|
+
validatorAddress: t.StringC;
|
|
16654
|
+
isMarinade: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
16655
|
+
stakingType: t.UnionC<[t.Type<"NATIVE" | "MARINADE" | "JITO", "NATIVE" | "MARINADE" | "JITO", unknown>, t.UndefinedC]>;
|
|
16656
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15980
16657
|
intentType: t.KeyofC<{
|
|
15981
16658
|
payment: t.LiteralC<"payment">;
|
|
15982
16659
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -16035,16 +16712,63 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16035
16712
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16036
16713
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16037
16714
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16715
|
+
}>]>, t.TypeC<{
|
|
16716
|
+
stakingRequestId: t.StringC;
|
|
16717
|
+
}>, t.PartialC<{
|
|
16718
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
16719
|
+
}>]>, t.TypeC<{
|
|
16720
|
+
intentType: t.LiteralC<"unstake">;
|
|
16038
16721
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
16039
16722
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16040
16723
|
}>, t.TypeC<{
|
|
16041
16724
|
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16042
16725
|
}>]>, t.TypeC<{
|
|
16043
|
-
|
|
16044
|
-
|
|
16045
|
-
|
|
16046
|
-
|
|
16047
|
-
|
|
16726
|
+
stakingAddress: t.StringC;
|
|
16727
|
+
}>, t.PartialC<{
|
|
16728
|
+
amount: t.UnionC<[t.Type<{
|
|
16729
|
+
value: string;
|
|
16730
|
+
symbol: string;
|
|
16731
|
+
}, {
|
|
16732
|
+
value: string;
|
|
16733
|
+
symbol: string;
|
|
16734
|
+
}, unknown>, t.UndefinedC]>;
|
|
16735
|
+
remainingStakingAmount: t.UnionC<[t.Type<{
|
|
16736
|
+
value: string;
|
|
16737
|
+
symbol: string;
|
|
16738
|
+
}, {
|
|
16739
|
+
value: string;
|
|
16740
|
+
symbol: string;
|
|
16741
|
+
}, unknown>, t.UndefinedC]>;
|
|
16742
|
+
isMarinade: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
16743
|
+
stakingType: t.UnionC<[t.Type<"NATIVE" | "MARINADE" | "JITO", "NATIVE" | "MARINADE" | "JITO", unknown>, t.UndefinedC]>;
|
|
16744
|
+
recipients: t.UnionC<[t.Type<({
|
|
16745
|
+
address: {
|
|
16746
|
+
address?: string | undefined;
|
|
16747
|
+
option?: {
|
|
16748
|
+
[x: string]: unknown;
|
|
16749
|
+
} | undefined;
|
|
16750
|
+
};
|
|
16751
|
+
amount: {
|
|
16752
|
+
value: string;
|
|
16753
|
+
symbol: string;
|
|
16754
|
+
};
|
|
16755
|
+
} & {
|
|
16756
|
+
data?: string | undefined;
|
|
16757
|
+
})[], ({
|
|
16758
|
+
address: {
|
|
16759
|
+
address?: string | undefined;
|
|
16760
|
+
option?: {
|
|
16761
|
+
[x: string]: unknown;
|
|
16762
|
+
} | undefined;
|
|
16763
|
+
};
|
|
16764
|
+
amount: {
|
|
16765
|
+
value: string;
|
|
16766
|
+
symbol: string;
|
|
16767
|
+
};
|
|
16768
|
+
} & {
|
|
16769
|
+
data?: string | undefined;
|
|
16770
|
+
})[], unknown>, t.UndefinedC]>;
|
|
16771
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16048
16772
|
intentType: t.KeyofC<{
|
|
16049
16773
|
payment: t.LiteralC<"payment">;
|
|
16050
16774
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -16103,31 +16827,93 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16103
16827
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16104
16828
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16105
16829
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16830
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
16831
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16832
|
+
}>, t.TypeC<{
|
|
16833
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16106
16834
|
}>]>, t.TypeC<{
|
|
16107
|
-
|
|
16108
|
-
|
|
16109
|
-
|
|
16110
|
-
|
|
16111
|
-
|
|
16112
|
-
|
|
16113
|
-
|
|
16114
|
-
|
|
16115
|
-
|
|
16116
|
-
|
|
16117
|
-
|
|
16118
|
-
}
|
|
16119
|
-
|
|
16120
|
-
|
|
16121
|
-
|
|
16835
|
+
intentType: t.LiteralC<"customTx">;
|
|
16836
|
+
solVersionedTransactionData: t.IntersectionC<[t.TypeC<{
|
|
16837
|
+
versionedInstructions: t.ArrayC<t.TypeC<{
|
|
16838
|
+
programIdIndex: t.NumberC;
|
|
16839
|
+
accountKeyIndexes: t.ArrayC<t.NumberC>;
|
|
16840
|
+
data: t.StringC;
|
|
16841
|
+
}>>;
|
|
16842
|
+
addressLookupTables: t.ArrayC<t.TypeC<{
|
|
16843
|
+
accountKey: t.StringC;
|
|
16844
|
+
writableIndexes: t.ArrayC<t.NumberC>;
|
|
16845
|
+
readonlyIndexes: t.ArrayC<t.NumberC>;
|
|
16846
|
+
}>>;
|
|
16847
|
+
staticAccountKeys: t.ArrayC<t.StringC>;
|
|
16848
|
+
messageHeader: t.TypeC<{
|
|
16849
|
+
numRequiredSignatures: t.NumberC;
|
|
16850
|
+
numReadonlySignedAccounts: t.NumberC;
|
|
16851
|
+
numReadonlyUnsignedAccounts: t.NumberC;
|
|
16122
16852
|
}>;
|
|
16123
16853
|
}>, t.PartialC<{
|
|
16124
|
-
|
|
16125
|
-
}>]
|
|
16854
|
+
recentBlockhash: t.StringC;
|
|
16855
|
+
}>]>;
|
|
16126
16856
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
16127
16857
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16128
16858
|
}>, t.TypeC<{
|
|
16129
|
-
|
|
16130
|
-
|
|
16859
|
+
intentType: t.LiteralC<"consolidate">;
|
|
16860
|
+
receiveAddress: t.StringC;
|
|
16861
|
+
}>, t.PartialC<{
|
|
16862
|
+
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
16863
|
+
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16864
|
+
recipients: t.UnionC<[t.Type<({
|
|
16865
|
+
address: {
|
|
16866
|
+
address?: string | undefined;
|
|
16867
|
+
option?: {
|
|
16868
|
+
[x: string]: unknown;
|
|
16869
|
+
} | undefined;
|
|
16870
|
+
};
|
|
16871
|
+
amount: {
|
|
16872
|
+
value: string;
|
|
16873
|
+
symbol: string;
|
|
16874
|
+
};
|
|
16875
|
+
} & {
|
|
16876
|
+
data?: string | undefined;
|
|
16877
|
+
} & {
|
|
16878
|
+
tokenData?: ({
|
|
16879
|
+
tokenQuantity: string;
|
|
16880
|
+
tokenType: string;
|
|
16881
|
+
} & {
|
|
16882
|
+
tokenId?: string | undefined;
|
|
16883
|
+
} & {
|
|
16884
|
+
tokenName: string;
|
|
16885
|
+
} & {
|
|
16886
|
+
tokenContractAddress?: string | undefined;
|
|
16887
|
+
decimals?: number | undefined;
|
|
16888
|
+
}) | undefined;
|
|
16889
|
+
})[], ({
|
|
16890
|
+
address: {
|
|
16891
|
+
address?: string | undefined;
|
|
16892
|
+
option?: {
|
|
16893
|
+
[x: string]: unknown;
|
|
16894
|
+
} | undefined;
|
|
16895
|
+
};
|
|
16896
|
+
amount: {
|
|
16897
|
+
value: string;
|
|
16898
|
+
symbol: string;
|
|
16899
|
+
};
|
|
16900
|
+
} & {
|
|
16901
|
+
data?: string | undefined;
|
|
16902
|
+
} & {
|
|
16903
|
+
tokenData?: ({
|
|
16904
|
+
tokenQuantity: string;
|
|
16905
|
+
tokenType: string;
|
|
16906
|
+
} & {
|
|
16907
|
+
tokenId?: string | undefined;
|
|
16908
|
+
} & {
|
|
16909
|
+
tokenName: string;
|
|
16910
|
+
} & {
|
|
16911
|
+
tokenContractAddress?: string | undefined;
|
|
16912
|
+
decimals?: number | undefined;
|
|
16913
|
+
}) | undefined;
|
|
16914
|
+
})[], unknown>, t.UndefinedC]>;
|
|
16915
|
+
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
16916
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16131
16917
|
intentType: t.KeyofC<{
|
|
16132
16918
|
payment: t.LiteralC<"payment">;
|
|
16133
16919
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -16210,9 +16996,83 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16210
16996
|
isTestTransaction: t.BooleanC;
|
|
16211
16997
|
}>]>]>, t.IntersectionC<[t.PartialC<{
|
|
16212
16998
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16213
|
-
}>, t.
|
|
16999
|
+
}>, t.PartialC<{
|
|
17000
|
+
fee: t.UnionC<[t.Type<{
|
|
17001
|
+
amount: string | number;
|
|
17002
|
+
} & {
|
|
17003
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
17004
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
17005
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
17006
|
+
}, {
|
|
17007
|
+
amount: string | number;
|
|
17008
|
+
} & {
|
|
17009
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
17010
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
17011
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
17012
|
+
}, unknown>, t.UndefinedC]>;
|
|
17013
|
+
}>]>, t.PartialC<{
|
|
16214
17014
|
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16215
|
-
}>]
|
|
17015
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.PartialC<{
|
|
17016
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17017
|
+
}>, t.TypeC<{
|
|
17018
|
+
intentType: t.LiteralC<"consolidate">;
|
|
17019
|
+
receiveAddress: t.StringC;
|
|
17020
|
+
}>, t.PartialC<{
|
|
17021
|
+
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
17022
|
+
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17023
|
+
recipients: t.UnionC<[t.Type<({
|
|
17024
|
+
address: {
|
|
17025
|
+
address?: string | undefined;
|
|
17026
|
+
option?: {
|
|
17027
|
+
[x: string]: unknown;
|
|
17028
|
+
} | undefined;
|
|
17029
|
+
};
|
|
17030
|
+
amount: {
|
|
17031
|
+
value: string;
|
|
17032
|
+
symbol: string;
|
|
17033
|
+
};
|
|
17034
|
+
} & {
|
|
17035
|
+
data?: string | undefined;
|
|
17036
|
+
} & {
|
|
17037
|
+
tokenData?: ({
|
|
17038
|
+
tokenQuantity: string;
|
|
17039
|
+
tokenType: string;
|
|
17040
|
+
} & {
|
|
17041
|
+
tokenId?: string | undefined;
|
|
17042
|
+
} & {
|
|
17043
|
+
tokenName: string;
|
|
17044
|
+
} & {
|
|
17045
|
+
tokenContractAddress?: string | undefined;
|
|
17046
|
+
decimals?: number | undefined;
|
|
17047
|
+
}) | undefined;
|
|
17048
|
+
})[], ({
|
|
17049
|
+
address: {
|
|
17050
|
+
address?: string | undefined;
|
|
17051
|
+
option?: {
|
|
17052
|
+
[x: string]: unknown;
|
|
17053
|
+
} | undefined;
|
|
17054
|
+
};
|
|
17055
|
+
amount: {
|
|
17056
|
+
value: string;
|
|
17057
|
+
symbol: string;
|
|
17058
|
+
};
|
|
17059
|
+
} & {
|
|
17060
|
+
data?: string | undefined;
|
|
17061
|
+
} & {
|
|
17062
|
+
tokenData?: ({
|
|
17063
|
+
tokenQuantity: string;
|
|
17064
|
+
tokenType: string;
|
|
17065
|
+
} & {
|
|
17066
|
+
tokenId?: string | undefined;
|
|
17067
|
+
} & {
|
|
17068
|
+
tokenName: string;
|
|
17069
|
+
} & {
|
|
17070
|
+
tokenContractAddress?: string | undefined;
|
|
17071
|
+
decimals?: number | undefined;
|
|
17072
|
+
}) | undefined;
|
|
17073
|
+
})[], unknown>, t.UndefinedC]>;
|
|
17074
|
+
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
17075
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16216
17076
|
intentType: t.KeyofC<{
|
|
16217
17077
|
payment: t.LiteralC<"payment">;
|
|
16218
17078
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -16272,25 +17132,11 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16272
17132
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16273
17133
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16274
17134
|
}>]>, t.TypeC<{
|
|
16275
|
-
|
|
16276
|
-
|
|
16277
|
-
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
16278
|
-
}>]>, t.TypeC<{
|
|
16279
|
-
intentType: t.LiteralC<"stake">;
|
|
16280
|
-
}>]>, t.IntersectionC<[t.PartialC<{
|
|
16281
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16282
|
-
}>, t.TypeC<{
|
|
16283
|
-
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16284
|
-
}>]>, t.TypeC<{
|
|
16285
|
-
amount: t.TypeC<{
|
|
16286
|
-
value: t.StringC;
|
|
16287
|
-
symbol: t.StringC;
|
|
17135
|
+
feeOptions: t.TypeC<{
|
|
17136
|
+
gasLimit: t.NumberC;
|
|
16288
17137
|
}>;
|
|
16289
|
-
|
|
16290
|
-
|
|
16291
|
-
isMarinade: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
16292
|
-
stakingType: t.UnionC<[t.Type<"NATIVE" | "MARINADE" | "JITO", "NATIVE" | "MARINADE" | "JITO", unknown>, t.UndefinedC]>;
|
|
16293
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17138
|
+
lockedAmount: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17139
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16294
17140
|
intentType: t.KeyofC<{
|
|
16295
17141
|
payment: t.LiteralC<"payment">;
|
|
16296
17142
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -16349,62 +17195,6 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16349
17195
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16350
17196
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16351
17197
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16352
|
-
}>]>, t.TypeC<{
|
|
16353
|
-
stakingRequestId: t.StringC;
|
|
16354
|
-
}>, t.PartialC<{
|
|
16355
|
-
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
16356
|
-
}>]>, t.TypeC<{
|
|
16357
|
-
intentType: t.LiteralC<"unstake">;
|
|
16358
|
-
}>]>, t.IntersectionC<[t.PartialC<{
|
|
16359
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16360
|
-
}>, t.TypeC<{
|
|
16361
|
-
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16362
|
-
}>]>, t.TypeC<{
|
|
16363
|
-
stakingAddress: t.StringC;
|
|
16364
|
-
}>, t.PartialC<{
|
|
16365
|
-
amount: t.UnionC<[t.Type<{
|
|
16366
|
-
value: string;
|
|
16367
|
-
symbol: string;
|
|
16368
|
-
}, {
|
|
16369
|
-
value: string;
|
|
16370
|
-
symbol: string;
|
|
16371
|
-
}, unknown>, t.UndefinedC]>;
|
|
16372
|
-
remainingStakingAmount: t.UnionC<[t.Type<{
|
|
16373
|
-
value: string;
|
|
16374
|
-
symbol: string;
|
|
16375
|
-
}, {
|
|
16376
|
-
value: string;
|
|
16377
|
-
symbol: string;
|
|
16378
|
-
}, unknown>, t.UndefinedC]>;
|
|
16379
|
-
isMarinade: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
16380
|
-
stakingType: t.UnionC<[t.Type<"NATIVE" | "MARINADE" | "JITO", "NATIVE" | "MARINADE" | "JITO", unknown>, t.UndefinedC]>;
|
|
16381
|
-
recipients: t.UnionC<[t.Type<({
|
|
16382
|
-
address: {
|
|
16383
|
-
address?: string | undefined;
|
|
16384
|
-
option?: {
|
|
16385
|
-
[x: string]: unknown;
|
|
16386
|
-
} | undefined;
|
|
16387
|
-
};
|
|
16388
|
-
amount: {
|
|
16389
|
-
value: string;
|
|
16390
|
-
symbol: string;
|
|
16391
|
-
};
|
|
16392
|
-
} & {
|
|
16393
|
-
data?: string | undefined;
|
|
16394
|
-
})[], ({
|
|
16395
|
-
address: {
|
|
16396
|
-
address?: string | undefined;
|
|
16397
|
-
option?: {
|
|
16398
|
-
[x: string]: unknown;
|
|
16399
|
-
} | undefined;
|
|
16400
|
-
};
|
|
16401
|
-
amount: {
|
|
16402
|
-
value: string;
|
|
16403
|
-
symbol: string;
|
|
16404
|
-
};
|
|
16405
|
-
} & {
|
|
16406
|
-
data?: string | undefined;
|
|
16407
|
-
})[], unknown>, t.UndefinedC]>;
|
|
16408
17198
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16409
17199
|
intentType: t.KeyofC<{
|
|
16410
17200
|
payment: t.LiteralC<"payment">;
|
|
@@ -16464,93 +17254,15 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16464
17254
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16465
17255
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16466
17256
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16467
|
-
}>]>, t.
|
|
16468
|
-
|
|
16469
|
-
|
|
16470
|
-
|
|
17257
|
+
}>]>, t.TypeC<{
|
|
17258
|
+
feeOptions: t.TypeC<{
|
|
17259
|
+
gasLimit: t.NumberC;
|
|
17260
|
+
}>;
|
|
17261
|
+
lockedAmount: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16471
17262
|
}>]>, t.TypeC<{
|
|
16472
17263
|
intentType: t.LiteralC<"customTx">;
|
|
16473
|
-
|
|
16474
|
-
|
|
16475
|
-
programIdIndex: t.NumberC;
|
|
16476
|
-
accountKeyIndexes: t.ArrayC<t.NumberC>;
|
|
16477
|
-
data: t.StringC;
|
|
16478
|
-
}>>;
|
|
16479
|
-
addressLookupTables: t.ArrayC<t.TypeC<{
|
|
16480
|
-
accountKey: t.StringC;
|
|
16481
|
-
writableIndexes: t.ArrayC<t.NumberC>;
|
|
16482
|
-
readonlyIndexes: t.ArrayC<t.NumberC>;
|
|
16483
|
-
}>>;
|
|
16484
|
-
staticAccountKeys: t.ArrayC<t.StringC>;
|
|
16485
|
-
messageHeader: t.TypeC<{
|
|
16486
|
-
numRequiredSignatures: t.NumberC;
|
|
16487
|
-
numReadonlySignedAccounts: t.NumberC;
|
|
16488
|
-
numReadonlyUnsignedAccounts: t.NumberC;
|
|
16489
|
-
}>;
|
|
16490
|
-
}>, t.PartialC<{
|
|
16491
|
-
recentBlockhash: t.StringC;
|
|
16492
|
-
}>]>;
|
|
16493
|
-
}>]>, t.IntersectionC<[t.PartialC<{
|
|
16494
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16495
|
-
}>, t.TypeC<{
|
|
16496
|
-
intentType: t.LiteralC<"consolidate">;
|
|
16497
|
-
receiveAddress: t.StringC;
|
|
16498
|
-
}>, t.PartialC<{
|
|
16499
|
-
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
16500
|
-
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16501
|
-
recipients: t.UnionC<[t.Type<({
|
|
16502
|
-
address: {
|
|
16503
|
-
address?: string | undefined;
|
|
16504
|
-
option?: {
|
|
16505
|
-
[x: string]: unknown;
|
|
16506
|
-
} | undefined;
|
|
16507
|
-
};
|
|
16508
|
-
amount: {
|
|
16509
|
-
value: string;
|
|
16510
|
-
symbol: string;
|
|
16511
|
-
};
|
|
16512
|
-
} & {
|
|
16513
|
-
data?: string | undefined;
|
|
16514
|
-
} & {
|
|
16515
|
-
tokenData?: ({
|
|
16516
|
-
tokenQuantity: string;
|
|
16517
|
-
tokenType: string;
|
|
16518
|
-
} & {
|
|
16519
|
-
tokenId?: string | undefined;
|
|
16520
|
-
} & {
|
|
16521
|
-
tokenName: string;
|
|
16522
|
-
} & {
|
|
16523
|
-
tokenContractAddress?: string | undefined;
|
|
16524
|
-
decimals?: number | undefined;
|
|
16525
|
-
}) | undefined;
|
|
16526
|
-
})[], ({
|
|
16527
|
-
address: {
|
|
16528
|
-
address?: string | undefined;
|
|
16529
|
-
option?: {
|
|
16530
|
-
[x: string]: unknown;
|
|
16531
|
-
} | undefined;
|
|
16532
|
-
};
|
|
16533
|
-
amount: {
|
|
16534
|
-
value: string;
|
|
16535
|
-
symbol: string;
|
|
16536
|
-
};
|
|
16537
|
-
} & {
|
|
16538
|
-
data?: string | undefined;
|
|
16539
|
-
} & {
|
|
16540
|
-
tokenData?: ({
|
|
16541
|
-
tokenQuantity: string;
|
|
16542
|
-
tokenType: string;
|
|
16543
|
-
} & {
|
|
16544
|
-
tokenId?: string | undefined;
|
|
16545
|
-
} & {
|
|
16546
|
-
tokenName: string;
|
|
16547
|
-
} & {
|
|
16548
|
-
tokenContractAddress?: string | undefined;
|
|
16549
|
-
decimals?: number | undefined;
|
|
16550
|
-
}) | undefined;
|
|
16551
|
-
})[], unknown>, t.UndefinedC]>;
|
|
16552
|
-
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
16553
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17264
|
+
rawTx: t.StringC;
|
|
17265
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16554
17266
|
intentType: t.KeyofC<{
|
|
16555
17267
|
payment: t.LiteralC<"payment">;
|
|
16556
17268
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -16607,108 +17319,28 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16607
17319
|
}>;
|
|
16608
17320
|
}>, t.PartialC<{
|
|
16609
17321
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16610
|
-
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16611
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16612
|
-
}>]>, t.TypeC<{
|
|
16613
|
-
|
|
16614
|
-
|
|
16615
|
-
|
|
16616
|
-
|
|
16617
|
-
|
|
16618
|
-
|
|
16619
|
-
|
|
16620
|
-
}, unknown>, t.UndefinedC]>;
|
|
16621
|
-
}>;
|
|
16622
|
-
amount: t.TypeC<{
|
|
16623
|
-
value: t.StringC;
|
|
16624
|
-
symbol: t.StringC;
|
|
16625
|
-
}>;
|
|
16626
|
-
}>, t.PartialC<{
|
|
16627
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16628
|
-
}>]>>;
|
|
16629
|
-
}>, t.UnionC<[t.TypeC<{
|
|
16630
|
-
intentType: t.LiteralC<"payment">;
|
|
16631
|
-
}>, t.TypeC<{
|
|
16632
|
-
intentType: t.LiteralC<"payment">;
|
|
16633
|
-
isTestTransaction: t.BooleanC;
|
|
16634
|
-
}>]>]>, t.IntersectionC<[t.PartialC<{
|
|
16635
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16636
|
-
}>, t.PartialC<{
|
|
16637
|
-
fee: t.UnionC<[t.Type<{
|
|
16638
|
-
amount: string | number;
|
|
16639
|
-
} & {
|
|
16640
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
16641
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
16642
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
16643
|
-
}, {
|
|
16644
|
-
amount: string | number;
|
|
16645
|
-
} & {
|
|
16646
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
16647
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
16648
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
16649
|
-
}, unknown>, t.UndefinedC]>;
|
|
16650
|
-
}>]>, t.PartialC<{
|
|
16651
|
-
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16652
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.PartialC<{
|
|
16653
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16654
|
-
}>, t.TypeC<{
|
|
16655
|
-
intentType: t.LiteralC<"consolidate">;
|
|
16656
|
-
receiveAddress: t.StringC;
|
|
16657
|
-
}>, t.PartialC<{
|
|
16658
|
-
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
16659
|
-
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16660
|
-
recipients: t.UnionC<[t.Type<({
|
|
16661
|
-
address: {
|
|
16662
|
-
address?: string | undefined;
|
|
16663
|
-
option?: {
|
|
16664
|
-
[x: string]: unknown;
|
|
16665
|
-
} | undefined;
|
|
16666
|
-
};
|
|
16667
|
-
amount: {
|
|
16668
|
-
value: string;
|
|
16669
|
-
symbol: string;
|
|
16670
|
-
};
|
|
16671
|
-
} & {
|
|
16672
|
-
data?: string | undefined;
|
|
16673
|
-
} & {
|
|
16674
|
-
tokenData?: ({
|
|
16675
|
-
tokenQuantity: string;
|
|
16676
|
-
tokenType: string;
|
|
16677
|
-
} & {
|
|
16678
|
-
tokenId?: string | undefined;
|
|
16679
|
-
} & {
|
|
16680
|
-
tokenName: string;
|
|
16681
|
-
} & {
|
|
16682
|
-
tokenContractAddress?: string | undefined;
|
|
16683
|
-
decimals?: number | undefined;
|
|
16684
|
-
}) | undefined;
|
|
16685
|
-
})[], ({
|
|
16686
|
-
address: {
|
|
16687
|
-
address?: string | undefined;
|
|
16688
|
-
option?: {
|
|
17322
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17323
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17324
|
+
}>]>, t.TypeC<{
|
|
17325
|
+
goStakingRequestId: t.StringC;
|
|
17326
|
+
}>]>, t.TypeC<{
|
|
17327
|
+
intentType: t.LiteralC<"goUnstake">;
|
|
17328
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
17329
|
+
address: t.PartialC<{
|
|
17330
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17331
|
+
option: t.UnionC<[t.Type<{
|
|
16689
17332
|
[x: string]: unknown;
|
|
16690
|
-
}
|
|
16691
|
-
|
|
16692
|
-
|
|
16693
|
-
|
|
16694
|
-
|
|
16695
|
-
|
|
16696
|
-
|
|
16697
|
-
|
|
16698
|
-
}
|
|
16699
|
-
|
|
16700
|
-
|
|
16701
|
-
tokenType: string;
|
|
16702
|
-
} & {
|
|
16703
|
-
tokenId?: string | undefined;
|
|
16704
|
-
} & {
|
|
16705
|
-
tokenName: string;
|
|
16706
|
-
} & {
|
|
16707
|
-
tokenContractAddress?: string | undefined;
|
|
16708
|
-
decimals?: number | undefined;
|
|
16709
|
-
}) | undefined;
|
|
16710
|
-
})[], unknown>, t.UndefinedC]>;
|
|
16711
|
-
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
17333
|
+
}, {
|
|
17334
|
+
[x: string]: unknown;
|
|
17335
|
+
}, unknown>, t.UndefinedC]>;
|
|
17336
|
+
}>;
|
|
17337
|
+
amount: t.TypeC<{
|
|
17338
|
+
value: t.StringC;
|
|
17339
|
+
symbol: t.StringC;
|
|
17340
|
+
}>;
|
|
17341
|
+
}>, t.PartialC<{
|
|
17342
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17343
|
+
}>]>>;
|
|
16712
17344
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16713
17345
|
intentType: t.KeyofC<{
|
|
16714
17346
|
payment: t.LiteralC<"payment">;
|
|
@@ -16773,7 +17405,7 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16773
17405
|
gasLimit: t.NumberC;
|
|
16774
17406
|
}>;
|
|
16775
17407
|
lockedAmount: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16776
|
-
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17408
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16777
17409
|
intentType: t.KeyofC<{
|
|
16778
17410
|
payment: t.LiteralC<"payment">;
|
|
16779
17411
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -16832,7 +17464,29 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16832
17464
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16833
17465
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16834
17466
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16835
|
-
}>]>, t.
|
|
17467
|
+
}>]>, t.TypeC<{
|
|
17468
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
17469
|
+
address: t.PartialC<{
|
|
17470
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17471
|
+
option: t.UnionC<[t.Type<{
|
|
17472
|
+
[x: string]: unknown;
|
|
17473
|
+
}, {
|
|
17474
|
+
[x: string]: unknown;
|
|
17475
|
+
}, unknown>, t.UndefinedC]>;
|
|
17476
|
+
}>;
|
|
17477
|
+
amount: t.TypeC<{
|
|
17478
|
+
value: t.StringC;
|
|
17479
|
+
symbol: t.StringC;
|
|
17480
|
+
}>;
|
|
17481
|
+
}>, t.PartialC<{
|
|
17482
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17483
|
+
}>]>>;
|
|
17484
|
+
}>, t.UnionC<[t.TypeC<{
|
|
17485
|
+
intentType: t.LiteralC<"payment">;
|
|
17486
|
+
}>, t.TypeC<{
|
|
17487
|
+
intentType: t.LiteralC<"payment">;
|
|
17488
|
+
isTestTransaction: t.BooleanC;
|
|
17489
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16836
17490
|
intentType: t.KeyofC<{
|
|
16837
17491
|
payment: t.LiteralC<"payment">;
|
|
16838
17492
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -16896,10 +17550,7 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16896
17550
|
gasLimit: t.NumberC;
|
|
16897
17551
|
}>;
|
|
16898
17552
|
lockedAmount: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16899
|
-
}>]>, t.TypeC<{
|
|
16900
|
-
intentType: t.LiteralC<"customTx">;
|
|
16901
|
-
rawTx: t.StringC;
|
|
16902
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17553
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16903
17554
|
intentType: t.KeyofC<{
|
|
16904
17555
|
payment: t.LiteralC<"payment">;
|
|
16905
17556
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -16959,26 +17610,48 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
16959
17610
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
16960
17611
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16961
17612
|
}>]>, t.TypeC<{
|
|
16962
|
-
|
|
17613
|
+
stakingRequestId: t.StringC;
|
|
17614
|
+
}>, t.PartialC<{
|
|
17615
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
16963
17616
|
}>]>, t.TypeC<{
|
|
16964
|
-
intentType: t.LiteralC<"
|
|
16965
|
-
|
|
16966
|
-
|
|
16967
|
-
|
|
16968
|
-
|
|
17617
|
+
intentType: t.LiteralC<"stake">;
|
|
17618
|
+
}>]>, t.PartialC<{
|
|
17619
|
+
validatorAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17620
|
+
amount: t.UnionC<[t.Type<{
|
|
17621
|
+
value: string;
|
|
17622
|
+
symbol: string;
|
|
17623
|
+
}, {
|
|
17624
|
+
value: string;
|
|
17625
|
+
symbol: string;
|
|
17626
|
+
}, unknown>, t.UndefinedC]>;
|
|
17627
|
+
recipients: t.UnionC<[t.Type<({
|
|
17628
|
+
address: {
|
|
17629
|
+
address?: string | undefined;
|
|
17630
|
+
option?: {
|
|
16969
17631
|
[x: string]: unknown;
|
|
16970
|
-
}
|
|
17632
|
+
} | undefined;
|
|
17633
|
+
};
|
|
17634
|
+
amount: {
|
|
17635
|
+
value: string;
|
|
17636
|
+
symbol: string;
|
|
17637
|
+
};
|
|
17638
|
+
} & {
|
|
17639
|
+
data?: string | undefined;
|
|
17640
|
+
})[], ({
|
|
17641
|
+
address: {
|
|
17642
|
+
address?: string | undefined;
|
|
17643
|
+
option?: {
|
|
16971
17644
|
[x: string]: unknown;
|
|
16972
|
-
}
|
|
16973
|
-
}
|
|
16974
|
-
amount:
|
|
16975
|
-
value:
|
|
16976
|
-
symbol:
|
|
16977
|
-
}
|
|
16978
|
-
}
|
|
16979
|
-
data
|
|
16980
|
-
}
|
|
16981
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17645
|
+
} | undefined;
|
|
17646
|
+
};
|
|
17647
|
+
amount: {
|
|
17648
|
+
value: string;
|
|
17649
|
+
symbol: string;
|
|
17650
|
+
};
|
|
17651
|
+
} & {
|
|
17652
|
+
data?: string | undefined;
|
|
17653
|
+
})[], unknown>, t.UndefinedC]>;
|
|
17654
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
16982
17655
|
intentType: t.KeyofC<{
|
|
16983
17656
|
payment: t.LiteralC<"payment">;
|
|
16984
17657
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -17038,11 +17711,30 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17038
17711
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17039
17712
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17040
17713
|
}>]>, t.TypeC<{
|
|
17041
|
-
|
|
17042
|
-
|
|
17043
|
-
|
|
17044
|
-
|
|
17045
|
-
|
|
17714
|
+
stakingRequestId: t.StringC;
|
|
17715
|
+
}>, t.PartialC<{
|
|
17716
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
17717
|
+
}>]>, t.TypeC<{
|
|
17718
|
+
intentType: t.LiteralC<"claim">;
|
|
17719
|
+
}>, t.PartialC<{
|
|
17720
|
+
amount: t.UnionC<[t.Type<{
|
|
17721
|
+
value: string;
|
|
17722
|
+
symbol: string;
|
|
17723
|
+
}, {
|
|
17724
|
+
value: string;
|
|
17725
|
+
symbol: string;
|
|
17726
|
+
}, unknown>, t.UndefinedC]>;
|
|
17727
|
+
}>]>, t.TypeC<{
|
|
17728
|
+
stakedSuiObjectId: t.StringC;
|
|
17729
|
+
}>, t.PartialC<{
|
|
17730
|
+
amount: t.UnionC<[t.Type<{
|
|
17731
|
+
value: string;
|
|
17732
|
+
symbol: string;
|
|
17733
|
+
}, {
|
|
17734
|
+
value: string;
|
|
17735
|
+
symbol: string;
|
|
17736
|
+
}, unknown>, t.UndefinedC]>;
|
|
17737
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17046
17738
|
intentType: t.KeyofC<{
|
|
17047
17739
|
payment: t.LiteralC<"payment">;
|
|
17048
17740
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -17102,28 +17794,12 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17102
17794
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17103
17795
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17104
17796
|
}>]>, t.TypeC<{
|
|
17105
|
-
|
|
17106
|
-
|
|
17107
|
-
|
|
17108
|
-
|
|
17109
|
-
|
|
17110
|
-
|
|
17111
|
-
[x: string]: unknown;
|
|
17112
|
-
}, unknown>, t.UndefinedC]>;
|
|
17113
|
-
}>;
|
|
17114
|
-
amount: t.TypeC<{
|
|
17115
|
-
value: t.StringC;
|
|
17116
|
-
symbol: t.StringC;
|
|
17117
|
-
}>;
|
|
17118
|
-
}>, t.PartialC<{
|
|
17119
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17120
|
-
}>]>>;
|
|
17121
|
-
}>, t.UnionC<[t.TypeC<{
|
|
17122
|
-
intentType: t.LiteralC<"payment">;
|
|
17123
|
-
}>, t.TypeC<{
|
|
17124
|
-
intentType: t.LiteralC<"payment">;
|
|
17125
|
-
isTestTransaction: t.BooleanC;
|
|
17126
|
-
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17797
|
+
stakingRequestId: t.StringC;
|
|
17798
|
+
}>, t.PartialC<{
|
|
17799
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
17800
|
+
}>]>, t.TypeC<{
|
|
17801
|
+
intentType: t.LiteralC<"stake">;
|
|
17802
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17127
17803
|
intentType: t.KeyofC<{
|
|
17128
17804
|
payment: t.LiteralC<"payment">;
|
|
17129
17805
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -17183,11 +17859,31 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17183
17859
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17184
17860
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17185
17861
|
}>]>, t.TypeC<{
|
|
17186
|
-
|
|
17187
|
-
|
|
17188
|
-
|
|
17189
|
-
|
|
17190
|
-
|
|
17862
|
+
stakingRequestId: t.StringC;
|
|
17863
|
+
}>, t.PartialC<{
|
|
17864
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
17865
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
17866
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17867
|
+
}>, t.PartialC<{
|
|
17868
|
+
fee: t.UnionC<[t.Type<{
|
|
17869
|
+
amount: string | number;
|
|
17870
|
+
} & {
|
|
17871
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
17872
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
17873
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
17874
|
+
}, {
|
|
17875
|
+
amount: string | number;
|
|
17876
|
+
} & {
|
|
17877
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
17878
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
17879
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
17880
|
+
}, unknown>, t.UndefinedC]>;
|
|
17881
|
+
}>]>, t.TypeC<{
|
|
17882
|
+
hotkey: t.StringC;
|
|
17883
|
+
netuid: t.StringC;
|
|
17884
|
+
}>]>, t.TypeC<{
|
|
17885
|
+
amountStaked: t.StringC;
|
|
17886
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17191
17887
|
intentType: t.KeyofC<{
|
|
17192
17888
|
payment: t.LiteralC<"payment">;
|
|
17193
17889
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -17250,45 +17946,30 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17250
17946
|
stakingRequestId: t.StringC;
|
|
17251
17947
|
}>, t.PartialC<{
|
|
17252
17948
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
17253
|
-
}>]>, t.
|
|
17254
|
-
|
|
17255
|
-
}
|
|
17256
|
-
|
|
17257
|
-
|
|
17258
|
-
value: string;
|
|
17259
|
-
symbol: string;
|
|
17260
|
-
}, {
|
|
17261
|
-
value: string;
|
|
17262
|
-
symbol: string;
|
|
17263
|
-
}, unknown>, t.UndefinedC]>;
|
|
17264
|
-
recipients: t.UnionC<[t.Type<({
|
|
17265
|
-
address: {
|
|
17266
|
-
address?: string | undefined;
|
|
17267
|
-
option?: {
|
|
17268
|
-
[x: string]: unknown;
|
|
17269
|
-
} | undefined;
|
|
17270
|
-
};
|
|
17271
|
-
amount: {
|
|
17272
|
-
value: string;
|
|
17273
|
-
symbol: string;
|
|
17274
|
-
};
|
|
17949
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
17950
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17951
|
+
}>, t.PartialC<{
|
|
17952
|
+
fee: t.UnionC<[t.Type<{
|
|
17953
|
+
amount: string | number;
|
|
17275
17954
|
} & {
|
|
17276
|
-
|
|
17277
|
-
|
|
17278
|
-
|
|
17279
|
-
|
|
17280
|
-
|
|
17281
|
-
[x: string]: unknown;
|
|
17282
|
-
} | undefined;
|
|
17283
|
-
};
|
|
17284
|
-
amount: {
|
|
17285
|
-
value: string;
|
|
17286
|
-
symbol: string;
|
|
17287
|
-
};
|
|
17955
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
17956
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
17957
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
17958
|
+
}, {
|
|
17959
|
+
amount: string | number;
|
|
17288
17960
|
} & {
|
|
17289
|
-
|
|
17290
|
-
|
|
17291
|
-
|
|
17961
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
17962
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
17963
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
17964
|
+
}, unknown>, t.UndefinedC]>;
|
|
17965
|
+
}>]>, t.TypeC<{
|
|
17966
|
+
intentType: t.LiteralC<"switchValidator">;
|
|
17967
|
+
originHotkey: t.StringC;
|
|
17968
|
+
destinationHotkey: t.StringC;
|
|
17969
|
+
originNetuid: t.StringC;
|
|
17970
|
+
destinationNetuid: t.StringC;
|
|
17971
|
+
alphaAmount: t.StringC;
|
|
17972
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17292
17973
|
intentType: t.KeyofC<{
|
|
17293
17974
|
payment: t.LiteralC<"payment">;
|
|
17294
17975
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -17351,26 +18032,30 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17351
18032
|
stakingRequestId: t.StringC;
|
|
17352
18033
|
}>, t.PartialC<{
|
|
17353
18034
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
17354
|
-
}>]>, t.
|
|
17355
|
-
|
|
18035
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
18036
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17356
18037
|
}>, t.PartialC<{
|
|
17357
|
-
|
|
17358
|
-
|
|
17359
|
-
|
|
18038
|
+
fee: t.UnionC<[t.Type<{
|
|
18039
|
+
amount: string | number;
|
|
18040
|
+
} & {
|
|
18041
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
18042
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
18043
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
17360
18044
|
}, {
|
|
17361
|
-
|
|
17362
|
-
|
|
18045
|
+
amount: string | number;
|
|
18046
|
+
} & {
|
|
18047
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
18048
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
18049
|
+
type?: "max" | "base" | "tip" | undefined;
|
|
17363
18050
|
}, unknown>, t.UndefinedC]>;
|
|
17364
18051
|
}>]>, t.TypeC<{
|
|
17365
|
-
|
|
17366
|
-
|
|
17367
|
-
|
|
17368
|
-
|
|
17369
|
-
|
|
17370
|
-
|
|
17371
|
-
|
|
17372
|
-
symbol: string;
|
|
17373
|
-
}, unknown>, t.UndefinedC]>;
|
|
18052
|
+
intentType: t.LiteralC<"transferStake">;
|
|
18053
|
+
originColdkey: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18054
|
+
destinationColdkey: t.StringC;
|
|
18055
|
+
hotkey: t.StringC;
|
|
18056
|
+
originNetuid: t.StringC;
|
|
18057
|
+
destinationNetuid: t.StringC;
|
|
18058
|
+
alphaAmount: t.StringC;
|
|
17374
18059
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17375
18060
|
intentType: t.KeyofC<{
|
|
17376
18061
|
payment: t.LiteralC<"payment">;
|
|
@@ -17435,7 +18120,15 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17435
18120
|
}>, t.PartialC<{
|
|
17436
18121
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
17437
18122
|
}>]>, t.TypeC<{
|
|
17438
|
-
intentType: t.LiteralC<"
|
|
18123
|
+
intentType: t.LiteralC<"claim">;
|
|
18124
|
+
}>, t.PartialC<{
|
|
18125
|
+
amount: t.UnionC<[t.Type<{
|
|
18126
|
+
value: string;
|
|
18127
|
+
symbol: string;
|
|
18128
|
+
}, {
|
|
18129
|
+
value: string;
|
|
18130
|
+
symbol: string;
|
|
18131
|
+
}, unknown>, t.UndefinedC]>;
|
|
17439
18132
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17440
18133
|
intentType: t.KeyofC<{
|
|
17441
18134
|
payment: t.LiteralC<"payment">;
|
|
@@ -17519,8 +18212,8 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17519
18212
|
hotkey: t.StringC;
|
|
17520
18213
|
netuid: t.StringC;
|
|
17521
18214
|
}>]>, t.TypeC<{
|
|
17522
|
-
|
|
17523
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.
|
|
18215
|
+
amountUnstaked: t.StringC;
|
|
18216
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17524
18217
|
intentType: t.KeyofC<{
|
|
17525
18218
|
payment: t.LiteralC<"payment">;
|
|
17526
18219
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -17580,33 +18273,70 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17580
18273
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17581
18274
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17582
18275
|
}>]>, t.TypeC<{
|
|
17583
|
-
|
|
17584
|
-
}>, t.
|
|
17585
|
-
|
|
18276
|
+
tokenName: t.StringC;
|
|
18277
|
+
}>, t.TypeC<{
|
|
18278
|
+
intentType: t.LiteralC<"tokenApproval">;
|
|
17586
18279
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
17587
18280
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
18281
|
+
}>, t.TypeC<{
|
|
18282
|
+
intentType: t.LiteralC<"consolidate">;
|
|
18283
|
+
receiveAddress: t.StringC;
|
|
17588
18284
|
}>, t.PartialC<{
|
|
17589
|
-
|
|
17590
|
-
|
|
18285
|
+
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
18286
|
+
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18287
|
+
recipients: t.UnionC<[t.Type<({
|
|
18288
|
+
address: {
|
|
18289
|
+
address?: string | undefined;
|
|
18290
|
+
option?: {
|
|
18291
|
+
[x: string]: unknown;
|
|
18292
|
+
} | undefined;
|
|
18293
|
+
};
|
|
18294
|
+
amount: {
|
|
18295
|
+
value: string;
|
|
18296
|
+
symbol: string;
|
|
18297
|
+
};
|
|
17591
18298
|
} & {
|
|
17592
|
-
|
|
17593
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
17594
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
17595
|
-
}, {
|
|
17596
|
-
amount: string | number;
|
|
18299
|
+
data?: string | undefined;
|
|
17597
18300
|
} & {
|
|
17598
|
-
|
|
17599
|
-
|
|
17600
|
-
|
|
17601
|
-
|
|
17602
|
-
|
|
17603
|
-
|
|
17604
|
-
|
|
17605
|
-
|
|
17606
|
-
|
|
17607
|
-
|
|
17608
|
-
|
|
17609
|
-
|
|
18301
|
+
tokenData?: ({
|
|
18302
|
+
tokenQuantity: string;
|
|
18303
|
+
tokenType: string;
|
|
18304
|
+
} & {
|
|
18305
|
+
tokenId?: string | undefined;
|
|
18306
|
+
} & {
|
|
18307
|
+
tokenName: string;
|
|
18308
|
+
} & {
|
|
18309
|
+
tokenContractAddress?: string | undefined;
|
|
18310
|
+
decimals?: number | undefined;
|
|
18311
|
+
}) | undefined;
|
|
18312
|
+
})[], ({
|
|
18313
|
+
address: {
|
|
18314
|
+
address?: string | undefined;
|
|
18315
|
+
option?: {
|
|
18316
|
+
[x: string]: unknown;
|
|
18317
|
+
} | undefined;
|
|
18318
|
+
};
|
|
18319
|
+
amount: {
|
|
18320
|
+
value: string;
|
|
18321
|
+
symbol: string;
|
|
18322
|
+
};
|
|
18323
|
+
} & {
|
|
18324
|
+
data?: string | undefined;
|
|
18325
|
+
} & {
|
|
18326
|
+
tokenData?: ({
|
|
18327
|
+
tokenQuantity: string;
|
|
18328
|
+
tokenType: string;
|
|
18329
|
+
} & {
|
|
18330
|
+
tokenId?: string | undefined;
|
|
18331
|
+
} & {
|
|
18332
|
+
tokenName: string;
|
|
18333
|
+
} & {
|
|
18334
|
+
tokenContractAddress?: string | undefined;
|
|
18335
|
+
decimals?: number | undefined;
|
|
18336
|
+
}) | undefined;
|
|
18337
|
+
})[], unknown>, t.UndefinedC]>;
|
|
18338
|
+
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
18339
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17610
18340
|
intentType: t.KeyofC<{
|
|
17611
18341
|
payment: t.LiteralC<"payment">;
|
|
17612
18342
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -17666,34 +18396,18 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17666
18396
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17667
18397
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17668
18398
|
}>]>, t.TypeC<{
|
|
17669
|
-
|
|
17670
|
-
|
|
17671
|
-
|
|
17672
|
-
|
|
17673
|
-
|
|
18399
|
+
amount: t.TypeC<{
|
|
18400
|
+
value: t.StringC;
|
|
18401
|
+
symbol: t.StringC;
|
|
18402
|
+
}>;
|
|
18403
|
+
}>, t.TypeC<{
|
|
18404
|
+
intentType: t.LiteralC<"delegate">;
|
|
18405
|
+
validatorAddress: t.StringC;
|
|
18406
|
+
useSingleNominator: t.BooleanC;
|
|
17674
18407
|
}>, t.PartialC<{
|
|
17675
|
-
|
|
17676
|
-
|
|
17677
|
-
|
|
17678
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
17679
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
17680
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
17681
|
-
}, {
|
|
17682
|
-
amount: string | number;
|
|
17683
|
-
} & {
|
|
17684
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
17685
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | undefined;
|
|
17686
|
-
type?: "max" | "base" | "tip" | undefined;
|
|
17687
|
-
}, unknown>, t.UndefinedC]>;
|
|
17688
|
-
}>]>, t.TypeC<{
|
|
17689
|
-
intentType: t.LiteralC<"transferStake">;
|
|
17690
|
-
originColdkey: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17691
|
-
destinationColdkey: t.StringC;
|
|
17692
|
-
hotkey: t.StringC;
|
|
17693
|
-
originNetuid: t.StringC;
|
|
17694
|
-
destinationNetuid: t.StringC;
|
|
17695
|
-
alphaAmount: t.StringC;
|
|
17696
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18408
|
+
ownerAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18409
|
+
tonStakingType: t.KeyofC<typeof import(".").TonStakingTypeEnum>;
|
|
18410
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17697
18411
|
intentType: t.KeyofC<{
|
|
17698
18412
|
payment: t.LiteralC<"payment">;
|
|
17699
18413
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -17753,19 +18467,77 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17753
18467
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17754
18468
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17755
18469
|
}>]>, t.TypeC<{
|
|
17756
|
-
|
|
17757
|
-
|
|
17758
|
-
|
|
17759
|
-
|
|
17760
|
-
|
|
18470
|
+
amount: t.TypeC<{
|
|
18471
|
+
value: t.StringC;
|
|
18472
|
+
symbol: t.StringC;
|
|
18473
|
+
}>;
|
|
18474
|
+
}>, t.TypeC<{
|
|
18475
|
+
intentType: t.LiteralC<"delegate">;
|
|
18476
|
+
validatorAddress: t.StringC;
|
|
18477
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.MULTI_NOMINATOR>;
|
|
18478
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18479
|
+
intentType: t.KeyofC<{
|
|
18480
|
+
payment: t.LiteralC<"payment">;
|
|
18481
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
18482
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
18483
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
18484
|
+
fanout: t.LiteralC<"fanout">;
|
|
18485
|
+
stake: t.LiteralC<"stake">;
|
|
18486
|
+
unstake: t.LiteralC<"unstake">;
|
|
18487
|
+
delegate: t.LiteralC<"delegate">;
|
|
18488
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
18489
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
18490
|
+
claim: t.LiteralC<"claim">;
|
|
18491
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
18492
|
+
pledge: t.LiteralC<"pledge">;
|
|
18493
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
18494
|
+
vote: t.LiteralC<"vote">;
|
|
18495
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
18496
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
18497
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
18498
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
18499
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
18500
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
18501
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
18502
|
+
authorize: t.LiteralC<"authorize">;
|
|
18503
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
18504
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
18505
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
18506
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
18507
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
18508
|
+
customTx: t.LiteralC<"customTx">;
|
|
18509
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
18510
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
18511
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
18512
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
18513
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
18514
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
18515
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
18516
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
18517
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
18518
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
18519
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
18520
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
18521
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
18522
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
18523
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
18524
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
18525
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
18526
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
18527
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
18528
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
18529
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
18530
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
18531
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
18532
|
+
}>;
|
|
17761
18533
|
}>, t.PartialC<{
|
|
17762
|
-
|
|
17763
|
-
|
|
17764
|
-
|
|
17765
|
-
|
|
17766
|
-
|
|
17767
|
-
|
|
17768
|
-
|
|
18534
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18535
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18536
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
18537
|
+
}>]>, t.TypeC<{
|
|
18538
|
+
intentType: t.LiteralC<"undelegate">;
|
|
18539
|
+
validatorAddress: t.StringC;
|
|
18540
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.MULTI_NOMINATOR>;
|
|
17769
18541
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17770
18542
|
intentType: t.KeyofC<{
|
|
17771
18543
|
payment: t.LiteralC<"payment">;
|
|
@@ -17826,30 +18598,29 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17826
18598
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17827
18599
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17828
18600
|
}>]>, t.TypeC<{
|
|
17829
|
-
|
|
17830
|
-
|
|
17831
|
-
|
|
17832
|
-
|
|
17833
|
-
|
|
17834
|
-
|
|
17835
|
-
|
|
17836
|
-
|
|
17837
|
-
|
|
17838
|
-
|
|
17839
|
-
|
|
17840
|
-
|
|
17841
|
-
|
|
17842
|
-
|
|
17843
|
-
|
|
17844
|
-
|
|
17845
|
-
|
|
17846
|
-
|
|
17847
|
-
|
|
17848
|
-
|
|
17849
|
-
|
|
17850
|
-
|
|
17851
|
-
|
|
17852
|
-
amountUnstaked: t.StringC;
|
|
18601
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
18602
|
+
address: t.PartialC<{
|
|
18603
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18604
|
+
option: t.UnionC<[t.Type<{
|
|
18605
|
+
[x: string]: unknown;
|
|
18606
|
+
}, {
|
|
18607
|
+
[x: string]: unknown;
|
|
18608
|
+
}, unknown>, t.UndefinedC]>;
|
|
18609
|
+
}>;
|
|
18610
|
+
amount: t.TypeC<{
|
|
18611
|
+
value: t.StringC;
|
|
18612
|
+
symbol: t.StringC;
|
|
18613
|
+
}>;
|
|
18614
|
+
}>, t.PartialC<{
|
|
18615
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18616
|
+
}>]>>;
|
|
18617
|
+
}>, t.UnionC<[t.TypeC<{
|
|
18618
|
+
intentType: t.LiteralC<"payment">;
|
|
18619
|
+
}>, t.TypeC<{
|
|
18620
|
+
intentType: t.LiteralC<"payment">;
|
|
18621
|
+
isTestTransaction: t.BooleanC;
|
|
18622
|
+
}>]>]>, t.PartialC<{
|
|
18623
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17853
18624
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17854
18625
|
intentType: t.KeyofC<{
|
|
17855
18626
|
payment: t.LiteralC<"payment">;
|
|
@@ -17910,69 +18681,15 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
17910
18681
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17911
18682
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
17912
18683
|
}>]>, t.TypeC<{
|
|
17913
|
-
|
|
17914
|
-
|
|
17915
|
-
|
|
17916
|
-
|
|
17917
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
18684
|
+
amount: t.TypeC<{
|
|
18685
|
+
value: t.StringC;
|
|
18686
|
+
symbol: t.StringC;
|
|
18687
|
+
}>;
|
|
17918
18688
|
}>, t.TypeC<{
|
|
17919
|
-
intentType: t.LiteralC<"
|
|
17920
|
-
|
|
17921
|
-
|
|
17922
|
-
|
|
17923
|
-
consolidateId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17924
|
-
recipients: t.UnionC<[t.Type<({
|
|
17925
|
-
address: {
|
|
17926
|
-
address?: string | undefined;
|
|
17927
|
-
option?: {
|
|
17928
|
-
[x: string]: unknown;
|
|
17929
|
-
} | undefined;
|
|
17930
|
-
};
|
|
17931
|
-
amount: {
|
|
17932
|
-
value: string;
|
|
17933
|
-
symbol: string;
|
|
17934
|
-
};
|
|
17935
|
-
} & {
|
|
17936
|
-
data?: string | undefined;
|
|
17937
|
-
} & {
|
|
17938
|
-
tokenData?: ({
|
|
17939
|
-
tokenQuantity: string;
|
|
17940
|
-
tokenType: string;
|
|
17941
|
-
} & {
|
|
17942
|
-
tokenId?: string | undefined;
|
|
17943
|
-
} & {
|
|
17944
|
-
tokenName: string;
|
|
17945
|
-
} & {
|
|
17946
|
-
tokenContractAddress?: string | undefined;
|
|
17947
|
-
decimals?: number | undefined;
|
|
17948
|
-
}) | undefined;
|
|
17949
|
-
})[], ({
|
|
17950
|
-
address: {
|
|
17951
|
-
address?: string | undefined;
|
|
17952
|
-
option?: {
|
|
17953
|
-
[x: string]: unknown;
|
|
17954
|
-
} | undefined;
|
|
17955
|
-
};
|
|
17956
|
-
amount: {
|
|
17957
|
-
value: string;
|
|
17958
|
-
symbol: string;
|
|
17959
|
-
};
|
|
17960
|
-
} & {
|
|
17961
|
-
data?: string | undefined;
|
|
17962
|
-
} & {
|
|
17963
|
-
tokenData?: ({
|
|
17964
|
-
tokenQuantity: string;
|
|
17965
|
-
tokenType: string;
|
|
17966
|
-
} & {
|
|
17967
|
-
tokenId?: string | undefined;
|
|
17968
|
-
} & {
|
|
17969
|
-
tokenName: string;
|
|
17970
|
-
} & {
|
|
17971
|
-
tokenContractAddress?: string | undefined;
|
|
17972
|
-
decimals?: number | undefined;
|
|
17973
|
-
}) | undefined;
|
|
17974
|
-
})[], unknown>, t.UndefinedC]>;
|
|
17975
|
-
keepAlive: t.UnionC<[t.Type<boolean, boolean, unknown>, t.UndefinedC]>;
|
|
18689
|
+
intentType: t.LiteralC<"delegate">;
|
|
18690
|
+
validatorAddress: t.StringC;
|
|
18691
|
+
ownerAddress: t.StringC;
|
|
18692
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.SINGLE_NOMINATOR>;
|
|
17976
18693
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
17977
18694
|
intentType: t.KeyofC<{
|
|
17978
18695
|
payment: t.LiteralC<"payment">;
|
|
@@ -18038,12 +18755,9 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
18038
18755
|
symbol: t.StringC;
|
|
18039
18756
|
}>;
|
|
18040
18757
|
}>, t.TypeC<{
|
|
18041
|
-
intentType: t.LiteralC<"
|
|
18758
|
+
intentType: t.LiteralC<"undelegate">;
|
|
18042
18759
|
validatorAddress: t.StringC;
|
|
18043
|
-
|
|
18044
|
-
}>, t.PartialC<{
|
|
18045
|
-
ownerAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18046
|
-
tonStakingType: t.KeyofC<typeof import(".").TonStakingTypeEnum>;
|
|
18760
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.SINGLE_NOMINATOR>;
|
|
18047
18761
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18048
18762
|
intentType: t.KeyofC<{
|
|
18049
18763
|
payment: t.LiteralC<"payment">;
|
|
@@ -18104,14 +18818,15 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
18104
18818
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18105
18819
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
18106
18820
|
}>]>, t.TypeC<{
|
|
18107
|
-
|
|
18821
|
+
intentType: t.LiteralC<"undelegate">;
|
|
18822
|
+
validatorAddress: t.StringC;
|
|
18823
|
+
useSingleNominator: t.BooleanC;
|
|
18824
|
+
singleNominatorAmount: t.TypeC<{
|
|
18108
18825
|
value: t.StringC;
|
|
18109
18826
|
symbol: t.StringC;
|
|
18110
18827
|
}>;
|
|
18111
|
-
}>, t.
|
|
18112
|
-
|
|
18113
|
-
validatorAddress: t.StringC;
|
|
18114
|
-
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.MULTI_NOMINATOR>;
|
|
18828
|
+
}>, t.PartialC<{
|
|
18829
|
+
tonStakingType: t.KeyofC<typeof import(".").TonStakingTypeEnum>;
|
|
18115
18830
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18116
18831
|
intentType: t.KeyofC<{
|
|
18117
18832
|
payment: t.LiteralC<"payment">;
|
|
@@ -18172,10 +18887,15 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
18172
18887
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18173
18888
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
18174
18889
|
}>]>, t.TypeC<{
|
|
18175
|
-
|
|
18890
|
+
amount: t.TypeC<{
|
|
18891
|
+
value: t.StringC;
|
|
18892
|
+
symbol: t.StringC;
|
|
18893
|
+
}>;
|
|
18894
|
+
}>, t.TypeC<{
|
|
18895
|
+
intentType: t.LiteralC<"delegate">;
|
|
18176
18896
|
validatorAddress: t.StringC;
|
|
18177
|
-
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.
|
|
18178
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.
|
|
18897
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.TON_WHALES>;
|
|
18898
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18179
18899
|
intentType: t.KeyofC<{
|
|
18180
18900
|
payment: t.LiteralC<"payment">;
|
|
18181
18901
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -18235,30 +18955,19 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
18235
18955
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18236
18956
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
18237
18957
|
}>]>, t.TypeC<{
|
|
18238
|
-
|
|
18239
|
-
|
|
18240
|
-
|
|
18241
|
-
|
|
18242
|
-
[x: string]: unknown;
|
|
18243
|
-
}, {
|
|
18244
|
-
[x: string]: unknown;
|
|
18245
|
-
}, unknown>, t.UndefinedC]>;
|
|
18246
|
-
}>;
|
|
18247
|
-
amount: t.TypeC<{
|
|
18248
|
-
value: t.StringC;
|
|
18249
|
-
symbol: t.StringC;
|
|
18250
|
-
}>;
|
|
18251
|
-
}>, t.PartialC<{
|
|
18252
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18253
|
-
}>]>>;
|
|
18254
|
-
}>, t.UnionC<[t.TypeC<{
|
|
18255
|
-
intentType: t.LiteralC<"payment">;
|
|
18958
|
+
amount: t.TypeC<{
|
|
18959
|
+
value: t.StringC;
|
|
18960
|
+
symbol: t.StringC;
|
|
18961
|
+
}>;
|
|
18256
18962
|
}>, t.TypeC<{
|
|
18257
|
-
intentType: t.LiteralC<"
|
|
18258
|
-
|
|
18259
|
-
|
|
18260
|
-
|
|
18261
|
-
|
|
18963
|
+
intentType: t.LiteralC<"undelegate">;
|
|
18964
|
+
validatorAddress: t.StringC;
|
|
18965
|
+
withdrawalAmount: t.TypeC<{
|
|
18966
|
+
value: t.StringC;
|
|
18967
|
+
symbol: t.StringC;
|
|
18968
|
+
}>;
|
|
18969
|
+
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.TON_WHALES>;
|
|
18970
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18262
18971
|
intentType: t.KeyofC<{
|
|
18263
18972
|
payment: t.LiteralC<"payment">;
|
|
18264
18973
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -18317,17 +19026,19 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
18317
19026
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18318
19027
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18319
19028
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
19029
|
+
}>]>, t.TypeC<{
|
|
19030
|
+
stakingRequestId: t.StringC;
|
|
19031
|
+
}>, t.PartialC<{
|
|
19032
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
18320
19033
|
}>]>, t.TypeC<{
|
|
18321
19034
|
amount: t.TypeC<{
|
|
18322
19035
|
value: t.StringC;
|
|
18323
19036
|
symbol: t.StringC;
|
|
18324
19037
|
}>;
|
|
18325
19038
|
}>, t.TypeC<{
|
|
18326
|
-
intentType: t.LiteralC<"
|
|
18327
|
-
validatorAddress: t.StringC;
|
|
19039
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
18328
19040
|
ownerAddress: t.StringC;
|
|
18329
|
-
|
|
18330
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
19041
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18331
19042
|
intentType: t.KeyofC<{
|
|
18332
19043
|
payment: t.LiteralC<"payment">;
|
|
18333
19044
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -18386,16 +19097,21 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
18386
19097
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18387
19098
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18388
19099
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
19100
|
+
}>]>, t.TypeC<{
|
|
19101
|
+
stakingRequestId: t.StringC;
|
|
19102
|
+
}>, t.PartialC<{
|
|
19103
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
18389
19104
|
}>]>, t.TypeC<{
|
|
18390
19105
|
amount: t.TypeC<{
|
|
18391
19106
|
value: t.StringC;
|
|
18392
19107
|
symbol: t.StringC;
|
|
18393
19108
|
}>;
|
|
18394
19109
|
}>, t.TypeC<{
|
|
18395
|
-
intentType: t.LiteralC<"
|
|
19110
|
+
intentType: t.LiteralC<"stake">;
|
|
18396
19111
|
validatorAddress: t.StringC;
|
|
18397
|
-
|
|
18398
|
-
|
|
19112
|
+
ownerAddress: t.StringC;
|
|
19113
|
+
resource: t.UnionC<[t.LiteralC<"BANDWIDTH">, t.LiteralC<"ENERGY">]>;
|
|
19114
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18399
19115
|
intentType: t.KeyofC<{
|
|
18400
19116
|
payment: t.LiteralC<"payment">;
|
|
18401
19117
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -18455,16 +19171,19 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
18455
19171
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18456
19172
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
18457
19173
|
}>]>, t.TypeC<{
|
|
18458
|
-
|
|
18459
|
-
|
|
18460
|
-
|
|
18461
|
-
|
|
19174
|
+
stakingRequestId: t.StringC;
|
|
19175
|
+
}>, t.PartialC<{
|
|
19176
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
19177
|
+
}>]>, t.TypeC<{
|
|
19178
|
+
amount: t.TypeC<{
|
|
18462
19179
|
value: t.StringC;
|
|
18463
19180
|
symbol: t.StringC;
|
|
18464
19181
|
}>;
|
|
18465
|
-
}>, t.
|
|
18466
|
-
|
|
18467
|
-
|
|
19182
|
+
}>, t.TypeC<{
|
|
19183
|
+
intentType: t.LiteralC<"unstake">;
|
|
19184
|
+
ownerAddress: t.StringC;
|
|
19185
|
+
resource: t.UnionC<[t.LiteralC<"BANDWIDTH">, t.LiteralC<"ENERGY">]>;
|
|
19186
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18468
19187
|
intentType: t.KeyofC<{
|
|
18469
19188
|
payment: t.LiteralC<"payment">;
|
|
18470
19189
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -18523,16 +19242,24 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
18523
19242
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18524
19243
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18525
19244
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
19245
|
+
}>]>, t.TypeC<{
|
|
19246
|
+
stakingRequestId: t.StringC;
|
|
19247
|
+
}>, t.PartialC<{
|
|
19248
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
18526
19249
|
}>]>, t.TypeC<{
|
|
18527
19250
|
amount: t.TypeC<{
|
|
18528
19251
|
value: t.StringC;
|
|
18529
19252
|
symbol: t.StringC;
|
|
18530
19253
|
}>;
|
|
18531
19254
|
}>, t.TypeC<{
|
|
18532
|
-
intentType: t.LiteralC<"
|
|
19255
|
+
intentType: t.LiteralC<"voteDelegation">;
|
|
18533
19256
|
validatorAddress: t.StringC;
|
|
18534
|
-
|
|
18535
|
-
|
|
19257
|
+
ownerAddress: t.StringC;
|
|
19258
|
+
votes: t.ArrayC<t.TypeC<{
|
|
19259
|
+
vote_address: t.StringC;
|
|
19260
|
+
vote_count: t.StringC;
|
|
19261
|
+
}>>;
|
|
19262
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18536
19263
|
intentType: t.KeyofC<{
|
|
18537
19264
|
payment: t.LiteralC<"payment">;
|
|
18538
19265
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -18591,19 +19318,18 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
18591
19318
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18592
19319
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
18593
19320
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
19321
|
+
}>]>, t.TypeC<{
|
|
19322
|
+
stakingRequestId: t.StringC;
|
|
19323
|
+
}>, t.PartialC<{
|
|
19324
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
18594
19325
|
}>]>, t.TypeC<{
|
|
18595
19326
|
amount: t.TypeC<{
|
|
18596
19327
|
value: t.StringC;
|
|
18597
19328
|
symbol: t.StringC;
|
|
18598
19329
|
}>;
|
|
18599
19330
|
}>, t.TypeC<{
|
|
18600
|
-
intentType: t.LiteralC<"
|
|
18601
|
-
|
|
18602
|
-
withdrawalAmount: t.TypeC<{
|
|
18603
|
-
value: t.StringC;
|
|
18604
|
-
symbol: t.StringC;
|
|
18605
|
-
}>;
|
|
18606
|
-
tonStakingType: t.LiteralC<import(".").TonStakingTypeEnum.TON_WHALES>;
|
|
19331
|
+
intentType: t.LiteralC<"claim">;
|
|
19332
|
+
ownerAddress: t.StringC;
|
|
18607
19333
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
18608
19334
|
intentType: t.KeyofC<{
|
|
18609
19335
|
payment: t.LiteralC<"payment">;
|