@bitgo/public-types 6.5.2 → 6.7.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/accelerationIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/accountBaseBuildOptions.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/accountBaseConsolidateIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/atomPaymentIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/atomStakeIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/atomUnstakeIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/atomWithdrawIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/baseBridgeFundsIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/baseIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/baseStakeIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/baseStakeIntentWithCalldata.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/claimIntent.d.ts +70 -0
- package/dist/src/schema/transactionRequest/intents/claimIntent.js +36 -0
- package/dist/src/schema/transactionRequest/intents/claimIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/cosmosContractCallIntent.d.ts +70 -0
- package/dist/src/schema/transactionRequest/intents/cosmosContractCallIntent.js +41 -0
- package/dist/src/schema/transactionRequest/intents/cosmosContractCallIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/cosmosPaymentIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/cosmosStakeClaimRewardsIntent.d.ts +71 -0
- package/dist/src/schema/transactionRequest/intents/cosmosStakeClaimRewardsIntent.js +37 -0
- package/dist/src/schema/transactionRequest/intents/cosmosStakeClaimRewardsIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/cosmosStakeIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/cosmosSwitchValidatorIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/cosmosUnstakeIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/cosmosWithdrawIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/delegateIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/ethAccelerationIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/ethBuildOptions.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/ethConsolidateIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/ethConsolidateTokenIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/ethFillNonceIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/ethPaymentIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/ethStakingIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/ethTransferTokenIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/fillNonceIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/hypeevmBridgeFundsIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/hypeevmSpotTransferIntent.js.map +1 -1
- 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 +717 -265
- package/dist/src/schema/transactionRequest/intents/intent.js +18 -4
- package/dist/src/schema/transactionRequest/intents/intent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/paymentIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/stakeClaimRewardsIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/stakeIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/stakeSwitchValidatorIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/stakeWithCallDataIntent.d.ts +72 -0
- package/dist/src/schema/transactionRequest/intents/stakeWithCallDataIntent.js +36 -0
- package/dist/src/schema/transactionRequest/intents/stakeWithCallDataIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/switchValidatorWithCallDataIntent.d.ts +72 -0
- package/dist/src/schema/transactionRequest/intents/switchValidatorWithCallDataIntent.js +36 -0
- package/dist/src/schema/transactionRequest/intents/switchValidatorWithCallDataIntent.js.map +1 -0
- package/dist/src/schema/transactionRequest/intents/tokenApprovalIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/transferTokenIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/undelegateIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/transactionRequest.d.ts +1434 -530
- package/package.json +1 -1
- package/src/schema/transactionRequest/intents/accelerationIntent.ts +7 -0
- package/src/schema/transactionRequest/intents/accountBaseBuildOptions.ts +1 -0
- package/src/schema/transactionRequest/intents/accountBaseConsolidateIntent.ts +6 -0
- package/src/schema/transactionRequest/intents/atomPaymentIntent.ts +5 -0
- package/src/schema/transactionRequest/intents/atomStakeIntent.ts +6 -0
- package/src/schema/transactionRequest/intents/atomUnstakeIntent.ts +6 -0
- package/src/schema/transactionRequest/intents/atomWithdrawIntent.ts +6 -0
- package/src/schema/transactionRequest/intents/baseBridgeFundsIntent.ts +4 -5
- package/src/schema/transactionRequest/intents/baseIntent.ts +9 -0
- package/src/schema/transactionRequest/intents/baseStakeIntent.ts +2 -0
- package/src/schema/transactionRequest/intents/baseStakeIntentWithCalldata.ts +1 -0
- package/src/schema/transactionRequest/intents/claimIntent.ts +20 -0
- package/src/schema/transactionRequest/intents/cosmosContractCallIntent.ts +30 -0
- package/src/schema/transactionRequest/intents/cosmosPaymentIntent.ts +5 -0
- package/src/schema/transactionRequest/intents/cosmosStakeClaimRewardsIntent.ts +23 -0
- package/src/schema/transactionRequest/intents/cosmosStakeIntent.ts +6 -0
- package/src/schema/transactionRequest/intents/cosmosSwitchValidatorIntent.ts +4 -0
- package/src/schema/transactionRequest/intents/cosmosUnstakeIntent.ts +7 -0
- package/src/schema/transactionRequest/intents/cosmosWithdrawIntent.ts +6 -0
- package/src/schema/transactionRequest/intents/delegateIntent.ts +6 -0
- package/src/schema/transactionRequest/intents/ethAccelerationIntent.ts +5 -0
- package/src/schema/transactionRequest/intents/ethBuildOptions.ts +10 -0
- package/src/schema/transactionRequest/intents/ethConsolidateIntent.ts +4 -0
- package/src/schema/transactionRequest/intents/ethConsolidateTokenIntent.ts +8 -0
- package/src/schema/transactionRequest/intents/ethFillNonceIntent.ts +4 -0
- package/src/schema/transactionRequest/intents/ethPaymentIntent.ts +5 -0
- package/src/schema/transactionRequest/intents/ethStakingIntent.ts +9 -0
- package/src/schema/transactionRequest/intents/ethTransferTokenIntent.ts +4 -0
- package/src/schema/transactionRequest/intents/fillNonceIntent.ts +8 -0
- package/src/schema/transactionRequest/intents/hypeevmBridgeFundsIntent.ts +4 -4
- package/src/schema/transactionRequest/intents/hypeevmSpotTransferIntent.ts +4 -0
- package/src/schema/transactionRequest/intents/index.ts +5 -0
- package/src/schema/transactionRequest/intents/intent.ts +18 -4
- package/src/schema/transactionRequest/intents/paymentIntent.ts +3 -0
- package/src/schema/transactionRequest/intents/stakeClaimRewardsIntent.ts +6 -0
- package/src/schema/transactionRequest/intents/stakeIntent.ts +1 -0
- package/src/schema/transactionRequest/intents/stakeSwitchValidatorIntent.ts +2 -0
- package/src/schema/transactionRequest/intents/stakeWithCallDataIntent.ts +20 -0
- package/src/schema/transactionRequest/intents/switchValidatorWithCallDataIntent.ts +22 -0
- package/src/schema/transactionRequest/intents/tokenApprovalIntent.ts +5 -1
- package/src/schema/transactionRequest/intents/transferTokenIntent.ts +1 -0
- package/src/schema/transactionRequest/intents/undelegateIntent.ts +6 -0
|
@@ -909,88 +909,6 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
909
909
|
} & {
|
|
910
910
|
data?: string | undefined;
|
|
911
911
|
})[], unknown>, t.UndefinedC]>;
|
|
912
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
913
|
-
intentType: t.KeyofC<{
|
|
914
|
-
payment: t.LiteralC<"payment">;
|
|
915
|
-
transferToken: t.LiteralC<"transferToken">;
|
|
916
|
-
consolidate: t.LiteralC<"consolidate">;
|
|
917
|
-
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
918
|
-
fanout: t.LiteralC<"fanout">;
|
|
919
|
-
stake: t.LiteralC<"stake">;
|
|
920
|
-
unstake: t.LiteralC<"unstake">;
|
|
921
|
-
delegate: t.LiteralC<"delegate">;
|
|
922
|
-
undelegate: t.LiteralC<"undelegate">;
|
|
923
|
-
switchValidator: t.LiteralC<"switchValidator">;
|
|
924
|
-
claim: t.LiteralC<"claim">;
|
|
925
|
-
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
926
|
-
pledge: t.LiteralC<"pledge">;
|
|
927
|
-
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
928
|
-
vote: t.LiteralC<"vote">;
|
|
929
|
-
createAccount: t.LiteralC<"createAccount">;
|
|
930
|
-
updateAccount: t.LiteralC<"updateAccount">;
|
|
931
|
-
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
932
|
-
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
933
|
-
signMessage: t.LiteralC<"signMessage">;
|
|
934
|
-
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
935
|
-
enableToken: t.LiteralC<"enableToken">;
|
|
936
|
-
authorize: t.LiteralC<"authorize">;
|
|
937
|
-
acceleration: t.LiteralC<"acceleration">;
|
|
938
|
-
fillNonce: t.LiteralC<"fillNonce">;
|
|
939
|
-
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
940
|
-
contractCall: t.LiteralC<"contractCall">;
|
|
941
|
-
deactivate: t.LiteralC<"deactivate">;
|
|
942
|
-
customTx: t.LiteralC<"customTx">;
|
|
943
|
-
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
944
|
-
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
945
|
-
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
946
|
-
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
947
|
-
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
948
|
-
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
949
|
-
transferStake: t.LiteralC<"transferStake">;
|
|
950
|
-
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
951
|
-
increaseStake: t.LiteralC<"increaseStake">;
|
|
952
|
-
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
953
|
-
signalExit: t.LiteralC<"signalExit">;
|
|
954
|
-
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
955
|
-
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
956
|
-
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
957
|
-
enableBridging: t.LiteralC<"enableBridging">;
|
|
958
|
-
goUnstake: t.LiteralC<"goUnstake">;
|
|
959
|
-
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
960
|
-
transferAccept: t.LiteralC<"transferAccept">;
|
|
961
|
-
transferReject: t.LiteralC<"transferReject">;
|
|
962
|
-
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
963
|
-
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
964
|
-
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
965
|
-
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
966
|
-
delegateResource: t.LiteralC<"delegateResource">;
|
|
967
|
-
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
968
|
-
}>;
|
|
969
|
-
}>, t.PartialC<{
|
|
970
|
-
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
971
|
-
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
972
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
973
|
-
}>]>, t.TypeC<{
|
|
974
|
-
stakingRequestId: t.StringC;
|
|
975
|
-
}>, t.PartialC<{
|
|
976
|
-
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
977
|
-
}>]>, t.TypeC<{
|
|
978
|
-
intentType: t.LiteralC<"claim">;
|
|
979
|
-
}>, t.PartialC<{
|
|
980
|
-
amount: t.UnionC<[t.Type<{
|
|
981
|
-
value: string;
|
|
982
|
-
symbol: string;
|
|
983
|
-
}, {
|
|
984
|
-
value: string;
|
|
985
|
-
symbol: string;
|
|
986
|
-
}, unknown>, t.UndefinedC]>;
|
|
987
|
-
}>]>, t.TypeC<{
|
|
988
|
-
amount: t.TypeC<{
|
|
989
|
-
value: t.StringC;
|
|
990
|
-
symbol: t.StringC;
|
|
991
|
-
}>;
|
|
992
|
-
}>, t.TypeC<{
|
|
993
|
-
validatorAddress: t.StringC;
|
|
994
912
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
995
913
|
intentType: t.KeyofC<{
|
|
996
914
|
payment: t.LiteralC<"payment">;
|
|
@@ -1777,30 +1695,12 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
1777
1695
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1778
1696
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
1779
1697
|
}>]>, t.TypeC<{
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
[x: string]: unknown;
|
|
1787
|
-
}, unknown>, t.UndefinedC]>;
|
|
1788
|
-
}>;
|
|
1789
|
-
amount: t.TypeC<{
|
|
1790
|
-
value: t.StringC;
|
|
1791
|
-
symbol: t.StringC;
|
|
1792
|
-
}>;
|
|
1793
|
-
}>, t.PartialC<{
|
|
1794
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1795
|
-
}>]>>;
|
|
1796
|
-
}>, t.UnionC<[t.TypeC<{
|
|
1797
|
-
intentType: t.LiteralC<"payment">;
|
|
1798
|
-
}>, t.TypeC<{
|
|
1799
|
-
intentType: t.LiteralC<"payment">;
|
|
1800
|
-
isTestTransaction: t.BooleanC;
|
|
1801
|
-
}>]>]>, t.TypeC<{
|
|
1802
|
-
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1803
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1698
|
+
stakingRequestId: t.StringC;
|
|
1699
|
+
}>, t.PartialC<{
|
|
1700
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
1701
|
+
}>]>, t.TypeC<{
|
|
1702
|
+
intentType: t.LiteralC<"claim">;
|
|
1703
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1804
1704
|
intentType: t.KeyofC<{
|
|
1805
1705
|
payment: t.LiteralC<"payment">;
|
|
1806
1706
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -1862,45 +1762,96 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
1862
1762
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1863
1763
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
1864
1764
|
}>]>, t.TypeC<{
|
|
1865
|
-
|
|
1765
|
+
intentType: t.LiteralC<"contractCall">;
|
|
1766
|
+
contract: t.StringC;
|
|
1767
|
+
msgHex: t.StringC;
|
|
1866
1768
|
}>, t.PartialC<{
|
|
1867
|
-
|
|
1868
|
-
}>]>, t.TypeC<{
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1769
|
+
feeGranter: t.StringC;
|
|
1770
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1771
|
+
intentType: t.KeyofC<{
|
|
1772
|
+
payment: t.LiteralC<"payment">;
|
|
1773
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
1774
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
1775
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
1776
|
+
fanout: t.LiteralC<"fanout">;
|
|
1777
|
+
stake: t.LiteralC<"stake">;
|
|
1778
|
+
unstake: t.LiteralC<"unstake">;
|
|
1779
|
+
delegate: t.LiteralC<"delegate">;
|
|
1780
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
1781
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
1782
|
+
claim: t.LiteralC<"claim">;
|
|
1783
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
1784
|
+
pledge: t.LiteralC<"pledge">;
|
|
1785
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
1786
|
+
vote: t.LiteralC<"vote">;
|
|
1787
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
1788
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
1789
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
1790
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
1791
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
1792
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
1793
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
1794
|
+
authorize: t.LiteralC<"authorize">;
|
|
1795
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
1796
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
1797
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
1798
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
1799
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
1800
|
+
customTx: t.LiteralC<"customTx">;
|
|
1801
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
1802
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
1803
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
1804
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
1805
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
1806
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
1807
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
1808
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
1809
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
1810
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
1811
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
1812
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
1813
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
1814
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
1815
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
1816
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
1817
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
1818
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
1819
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
1820
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
1821
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
1822
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
1823
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
1824
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
1825
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
1872
1826
|
}>;
|
|
1873
|
-
}>, t.TypeC<{
|
|
1874
|
-
intentType: t.LiteralC<"delegate">;
|
|
1875
|
-
validatorAddress: t.StringC;
|
|
1876
1827
|
}>, t.PartialC<{
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1828
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1829
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1830
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
1831
|
+
}>]>, t.TypeC<{
|
|
1832
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
1833
|
+
address: t.PartialC<{
|
|
1834
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1835
|
+
option: t.UnionC<[t.Type<{
|
|
1881
1836
|
[x: string]: unknown;
|
|
1882
|
-
}
|
|
1883
|
-
};
|
|
1884
|
-
amount: {
|
|
1885
|
-
value: string;
|
|
1886
|
-
symbol: string;
|
|
1887
|
-
};
|
|
1888
|
-
} & {
|
|
1889
|
-
data?: string | undefined;
|
|
1890
|
-
})[], ({
|
|
1891
|
-
address: {
|
|
1892
|
-
address?: string | undefined;
|
|
1893
|
-
option?: {
|
|
1837
|
+
}, {
|
|
1894
1838
|
[x: string]: unknown;
|
|
1895
|
-
}
|
|
1896
|
-
}
|
|
1897
|
-
amount: {
|
|
1898
|
-
value:
|
|
1899
|
-
symbol:
|
|
1900
|
-
}
|
|
1901
|
-
}
|
|
1902
|
-
data
|
|
1903
|
-
}
|
|
1839
|
+
}, unknown>, t.UndefinedC]>;
|
|
1840
|
+
}>;
|
|
1841
|
+
amount: t.TypeC<{
|
|
1842
|
+
value: t.StringC;
|
|
1843
|
+
symbol: t.StringC;
|
|
1844
|
+
}>;
|
|
1845
|
+
}>, t.PartialC<{
|
|
1846
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1847
|
+
}>]>>;
|
|
1848
|
+
}>, t.UnionC<[t.TypeC<{
|
|
1849
|
+
intentType: t.LiteralC<"payment">;
|
|
1850
|
+
}>, t.TypeC<{
|
|
1851
|
+
intentType: t.LiteralC<"payment">;
|
|
1852
|
+
isTestTransaction: t.BooleanC;
|
|
1853
|
+
}>]>]>, t.TypeC<{
|
|
1854
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1904
1855
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1905
1856
|
intentType: t.KeyofC<{
|
|
1906
1857
|
payment: t.LiteralC<"payment">;
|
|
@@ -1967,14 +1918,8 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
1967
1918
|
}>, t.PartialC<{
|
|
1968
1919
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
1969
1920
|
}>]>, t.TypeC<{
|
|
1970
|
-
|
|
1971
|
-
value: t.StringC;
|
|
1972
|
-
symbol: t.StringC;
|
|
1973
|
-
}>;
|
|
1974
|
-
}>, t.TypeC<{
|
|
1975
|
-
intentType: t.LiteralC<"switchValidator">;
|
|
1921
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
1976
1922
|
validatorAddress: t.StringC;
|
|
1977
|
-
destValidatorAddress: t.StringC;
|
|
1978
1923
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1979
1924
|
intentType: t.KeyofC<{
|
|
1980
1925
|
payment: t.LiteralC<"payment">;
|
|
@@ -2046,7 +1991,7 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
2046
1991
|
symbol: t.StringC;
|
|
2047
1992
|
}>;
|
|
2048
1993
|
}>, t.TypeC<{
|
|
2049
|
-
intentType: t.LiteralC<"
|
|
1994
|
+
intentType: t.LiteralC<"delegate">;
|
|
2050
1995
|
validatorAddress: t.StringC;
|
|
2051
1996
|
}>, t.PartialC<{
|
|
2052
1997
|
recipients: t.UnionC<[t.Type<({
|
|
@@ -2076,7 +2021,7 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
2076
2021
|
} & {
|
|
2077
2022
|
data?: string | undefined;
|
|
2078
2023
|
})[], unknown>, t.UndefinedC]>;
|
|
2079
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.
|
|
2024
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2080
2025
|
intentType: t.KeyofC<{
|
|
2081
2026
|
payment: t.LiteralC<"payment">;
|
|
2082
2027
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -2142,17 +2087,115 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
2142
2087
|
}>, t.PartialC<{
|
|
2143
2088
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
2144
2089
|
}>]>, t.TypeC<{
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
value: string;
|
|
2152
|
-
symbol: string;
|
|
2153
|
-
}, unknown>, t.UndefinedC]>;
|
|
2154
|
-
}>]>, t.TypeC<{
|
|
2090
|
+
amount: t.TypeC<{
|
|
2091
|
+
value: t.StringC;
|
|
2092
|
+
symbol: t.StringC;
|
|
2093
|
+
}>;
|
|
2094
|
+
}>, t.TypeC<{
|
|
2095
|
+
intentType: t.LiteralC<"switchValidator">;
|
|
2155
2096
|
validatorAddress: t.StringC;
|
|
2097
|
+
destValidatorAddress: t.StringC;
|
|
2098
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2099
|
+
intentType: t.KeyofC<{
|
|
2100
|
+
payment: t.LiteralC<"payment">;
|
|
2101
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
2102
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
2103
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
2104
|
+
fanout: t.LiteralC<"fanout">;
|
|
2105
|
+
stake: t.LiteralC<"stake">;
|
|
2106
|
+
unstake: t.LiteralC<"unstake">;
|
|
2107
|
+
delegate: t.LiteralC<"delegate">;
|
|
2108
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
2109
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
2110
|
+
claim: t.LiteralC<"claim">;
|
|
2111
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
2112
|
+
pledge: t.LiteralC<"pledge">;
|
|
2113
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
2114
|
+
vote: t.LiteralC<"vote">;
|
|
2115
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
2116
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
2117
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
2118
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
2119
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
2120
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
2121
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
2122
|
+
authorize: t.LiteralC<"authorize">;
|
|
2123
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
2124
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
2125
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
2126
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
2127
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
2128
|
+
customTx: t.LiteralC<"customTx">;
|
|
2129
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
2130
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
2131
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
2132
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
2133
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
2134
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
2135
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
2136
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
2137
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
2138
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
2139
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
2140
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
2141
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
2142
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
2143
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
2144
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
2145
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
2146
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
2147
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
2148
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
2149
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
2150
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
2151
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
2152
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
2153
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
2154
|
+
}>;
|
|
2155
|
+
}>, t.PartialC<{
|
|
2156
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
2157
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
2158
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
2159
|
+
}>]>, t.TypeC<{
|
|
2160
|
+
stakingRequestId: t.StringC;
|
|
2161
|
+
}>, t.PartialC<{
|
|
2162
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
2163
|
+
}>]>, t.TypeC<{
|
|
2164
|
+
amount: t.TypeC<{
|
|
2165
|
+
value: t.StringC;
|
|
2166
|
+
symbol: t.StringC;
|
|
2167
|
+
}>;
|
|
2168
|
+
}>, t.TypeC<{
|
|
2169
|
+
intentType: t.LiteralC<"undelegate">;
|
|
2170
|
+
validatorAddress: t.StringC;
|
|
2171
|
+
}>, t.PartialC<{
|
|
2172
|
+
recipients: t.UnionC<[t.Type<({
|
|
2173
|
+
address: {
|
|
2174
|
+
address?: string | undefined;
|
|
2175
|
+
option?: {
|
|
2176
|
+
[x: string]: unknown;
|
|
2177
|
+
} | undefined;
|
|
2178
|
+
};
|
|
2179
|
+
amount: {
|
|
2180
|
+
value: string;
|
|
2181
|
+
symbol: string;
|
|
2182
|
+
};
|
|
2183
|
+
} & {
|
|
2184
|
+
data?: string | undefined;
|
|
2185
|
+
})[], ({
|
|
2186
|
+
address: {
|
|
2187
|
+
address?: string | undefined;
|
|
2188
|
+
option?: {
|
|
2189
|
+
[x: string]: unknown;
|
|
2190
|
+
} | undefined;
|
|
2191
|
+
};
|
|
2192
|
+
amount: {
|
|
2193
|
+
value: string;
|
|
2194
|
+
symbol: string;
|
|
2195
|
+
};
|
|
2196
|
+
} & {
|
|
2197
|
+
data?: string | undefined;
|
|
2198
|
+
})[], unknown>, t.UndefinedC]>;
|
|
2156
2199
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2157
2200
|
intentType: t.KeyofC<{
|
|
2158
2201
|
payment: t.LiteralC<"payment">;
|
|
@@ -2902,6 +2945,73 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
2902
2945
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
2903
2946
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
2904
2947
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
2948
|
+
}>]>, t.TypeC<{
|
|
2949
|
+
stakingRequestId: t.StringC;
|
|
2950
|
+
}>, t.PartialC<{
|
|
2951
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
2952
|
+
}>]>, t.TypeC<{
|
|
2953
|
+
intentType: t.LiteralC<"delegate">;
|
|
2954
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2955
|
+
intentType: t.KeyofC<{
|
|
2956
|
+
payment: t.LiteralC<"payment">;
|
|
2957
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
2958
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
2959
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
2960
|
+
fanout: t.LiteralC<"fanout">;
|
|
2961
|
+
stake: t.LiteralC<"stake">;
|
|
2962
|
+
unstake: t.LiteralC<"unstake">;
|
|
2963
|
+
delegate: t.LiteralC<"delegate">;
|
|
2964
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
2965
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
2966
|
+
claim: t.LiteralC<"claim">;
|
|
2967
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
2968
|
+
pledge: t.LiteralC<"pledge">;
|
|
2969
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
2970
|
+
vote: t.LiteralC<"vote">;
|
|
2971
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
2972
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
2973
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
2974
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
2975
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
2976
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
2977
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
2978
|
+
authorize: t.LiteralC<"authorize">;
|
|
2979
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
2980
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
2981
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
2982
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
2983
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
2984
|
+
customTx: t.LiteralC<"customTx">;
|
|
2985
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
2986
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
2987
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
2988
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
2989
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
2990
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
2991
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
2992
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
2993
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
2994
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
2995
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
2996
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
2997
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
2998
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
2999
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
3000
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
3001
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
3002
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
3003
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
3004
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
3005
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
3006
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
3007
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
3008
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
3009
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
3010
|
+
}>;
|
|
3011
|
+
}>, t.PartialC<{
|
|
3012
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3013
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3014
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
2905
3015
|
}>]>, t.TypeC<{
|
|
2906
3016
|
intentType: t.LiteralC<"acceleration">;
|
|
2907
3017
|
txid: t.StringC;
|
|
@@ -3245,6 +3355,71 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
3245
3355
|
}, unknown>, t.UndefinedC]>;
|
|
3246
3356
|
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3247
3357
|
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
3358
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3359
|
+
intentType: t.KeyofC<{
|
|
3360
|
+
payment: t.LiteralC<"payment">;
|
|
3361
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
3362
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
3363
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
3364
|
+
fanout: t.LiteralC<"fanout">;
|
|
3365
|
+
stake: t.LiteralC<"stake">;
|
|
3366
|
+
unstake: t.LiteralC<"unstake">;
|
|
3367
|
+
delegate: t.LiteralC<"delegate">;
|
|
3368
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
3369
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
3370
|
+
claim: t.LiteralC<"claim">;
|
|
3371
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
3372
|
+
pledge: t.LiteralC<"pledge">;
|
|
3373
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
3374
|
+
vote: t.LiteralC<"vote">;
|
|
3375
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
3376
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
3377
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
3378
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
3379
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
3380
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
3381
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
3382
|
+
authorize: t.LiteralC<"authorize">;
|
|
3383
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
3384
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
3385
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
3386
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
3387
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
3388
|
+
customTx: t.LiteralC<"customTx">;
|
|
3389
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
3390
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
3391
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
3392
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
3393
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
3394
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
3395
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
3396
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
3397
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
3398
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
3399
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
3400
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
3401
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
3402
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
3403
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
3404
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
3405
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
3406
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
3407
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
3408
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
3409
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
3410
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
3411
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
3412
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
3413
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
3414
|
+
}>;
|
|
3415
|
+
}>, t.PartialC<{
|
|
3416
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3417
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3418
|
+
}>]>, t.TypeC<{
|
|
3419
|
+
intentType: t.LiteralC<"fillNonce">;
|
|
3420
|
+
nonce: t.UnionC<[t.StringC, t.NumberC]>;
|
|
3421
|
+
}>, t.PartialC<{
|
|
3422
|
+
senderAddress: t.StringC;
|
|
3248
3423
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3249
3424
|
intentType: t.KeyofC<{
|
|
3250
3425
|
payment: t.LiteralC<"payment">;
|
|
@@ -3599,7 +3774,7 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
3599
3774
|
}, unknown>, t.UndefinedC]>;
|
|
3600
3775
|
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3601
3776
|
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
3602
|
-
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3777
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3603
3778
|
intentType: t.KeyofC<{
|
|
3604
3779
|
payment: t.LiteralC<"payment">;
|
|
3605
3780
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -3661,26 +3836,165 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
3661
3836
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3662
3837
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
3663
3838
|
}>]>, t.TypeC<{
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3839
|
+
stakingRequestId: t.StringC;
|
|
3840
|
+
}>, t.PartialC<{
|
|
3841
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
3842
|
+
}>]>, t.TypeC<{
|
|
3843
|
+
amount: t.TypeC<{
|
|
3844
|
+
value: t.StringC;
|
|
3845
|
+
symbol: t.StringC;
|
|
3846
|
+
}>;
|
|
3847
|
+
}>, t.TypeC<{
|
|
3848
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
3849
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3850
|
+
intentType: t.KeyofC<{
|
|
3851
|
+
payment: t.LiteralC<"payment">;
|
|
3852
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
3853
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
3854
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
3855
|
+
fanout: t.LiteralC<"fanout">;
|
|
3856
|
+
stake: t.LiteralC<"stake">;
|
|
3857
|
+
unstake: t.LiteralC<"unstake">;
|
|
3858
|
+
delegate: t.LiteralC<"delegate">;
|
|
3859
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
3860
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
3861
|
+
claim: t.LiteralC<"claim">;
|
|
3862
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
3863
|
+
pledge: t.LiteralC<"pledge">;
|
|
3864
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
3865
|
+
vote: t.LiteralC<"vote">;
|
|
3866
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
3867
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
3868
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
3869
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
3870
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
3871
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
3872
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
3873
|
+
authorize: t.LiteralC<"authorize">;
|
|
3874
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
3875
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
3876
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
3877
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
3878
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
3879
|
+
customTx: t.LiteralC<"customTx">;
|
|
3880
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
3881
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
3882
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
3883
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
3884
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
3885
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
3886
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
3887
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
3888
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
3889
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
3890
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
3891
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
3892
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
3893
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
3894
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
3895
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
3896
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
3897
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
3898
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
3899
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
3900
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
3901
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
3902
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
3903
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
3904
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
3905
|
+
}>;
|
|
3906
|
+
}>, t.PartialC<{
|
|
3907
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3908
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3909
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
3910
|
+
}>]>, t.TypeC<{
|
|
3911
|
+
stakingRequestId: t.StringC;
|
|
3912
|
+
}>, t.PartialC<{
|
|
3913
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
3914
|
+
}>]>, t.TypeC<{
|
|
3915
|
+
intentType: t.LiteralC<"undelegate">;
|
|
3916
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3917
|
+
intentType: t.KeyofC<{
|
|
3918
|
+
payment: t.LiteralC<"payment">;
|
|
3919
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
3920
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
3921
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
3922
|
+
fanout: t.LiteralC<"fanout">;
|
|
3923
|
+
stake: t.LiteralC<"stake">;
|
|
3924
|
+
unstake: t.LiteralC<"unstake">;
|
|
3925
|
+
delegate: t.LiteralC<"delegate">;
|
|
3926
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
3927
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
3928
|
+
claim: t.LiteralC<"claim">;
|
|
3929
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
3930
|
+
pledge: t.LiteralC<"pledge">;
|
|
3931
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
3932
|
+
vote: t.LiteralC<"vote">;
|
|
3933
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
3934
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
3935
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
3936
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
3937
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
3938
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
3939
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
3940
|
+
authorize: t.LiteralC<"authorize">;
|
|
3941
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
3942
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
3943
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
3944
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
3945
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
3946
|
+
customTx: t.LiteralC<"customTx">;
|
|
3947
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
3948
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
3949
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
3950
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
3951
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
3952
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
3953
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
3954
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
3955
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
3956
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
3957
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
3958
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
3959
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
3960
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
3961
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
3962
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
3963
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
3964
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
3965
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
3966
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
3967
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
3968
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
3969
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
3970
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
3971
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
3972
|
+
}>;
|
|
3973
|
+
}>, t.PartialC<{
|
|
3974
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3975
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3976
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
3977
|
+
}>]>, t.TypeC<{
|
|
3978
|
+
intentType: t.LiteralC<"feeAddressTransfer">;
|
|
3979
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
3980
|
+
address: t.PartialC<{
|
|
3981
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3982
|
+
option: t.UnionC<[t.Type<{
|
|
3983
|
+
[x: string]: unknown;
|
|
3984
|
+
}, {
|
|
3985
|
+
[x: string]: unknown;
|
|
3986
|
+
}, unknown>, t.UndefinedC]>;
|
|
3987
|
+
}>;
|
|
3988
|
+
amount: t.TypeC<{
|
|
3989
|
+
value: t.StringC;
|
|
3990
|
+
symbol: t.StringC;
|
|
3991
|
+
}>;
|
|
3992
|
+
}>, t.PartialC<{
|
|
3993
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3994
|
+
}>]>>;
|
|
3995
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3996
|
+
intentType: t.KeyofC<{
|
|
3997
|
+
payment: t.LiteralC<"payment">;
|
|
3684
3998
|
transferToken: t.LiteralC<"transferToken">;
|
|
3685
3999
|
consolidate: t.LiteralC<"consolidate">;
|
|
3686
4000
|
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
@@ -9941,13 +10255,7 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
9941
10255
|
}>]>, t.TypeC<{
|
|
9942
10256
|
calldata: t.StringC;
|
|
9943
10257
|
}>]>, t.TypeC<{
|
|
9944
|
-
|
|
9945
|
-
value: t.StringC;
|
|
9946
|
-
symbol: t.StringC;
|
|
9947
|
-
}>;
|
|
9948
|
-
}>, t.TypeC<{
|
|
9949
|
-
intentType: t.LiteralC<"delegate">;
|
|
9950
|
-
validatorAddress: t.StringC;
|
|
10258
|
+
intentType: t.LiteralC<"stakeWithCallData">;
|
|
9951
10259
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
9952
10260
|
intentType: t.KeyofC<{
|
|
9953
10261
|
payment: t.LiteralC<"payment">;
|
|
@@ -10016,13 +10324,7 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
10016
10324
|
}>]>, t.TypeC<{
|
|
10017
10325
|
calldata: t.StringC;
|
|
10018
10326
|
}>]>, t.TypeC<{
|
|
10019
|
-
|
|
10020
|
-
value: t.StringC;
|
|
10021
|
-
symbol: t.StringC;
|
|
10022
|
-
}>;
|
|
10023
|
-
}>, t.TypeC<{
|
|
10024
|
-
intentType: t.LiteralC<"undelegate">;
|
|
10025
|
-
validatorAddress: t.StringC;
|
|
10327
|
+
intentType: t.LiteralC<"switchValidatorWithCallData">;
|
|
10026
10328
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10027
10329
|
intentType: t.KeyofC<{
|
|
10028
10330
|
payment: t.LiteralC<"payment">;
|
|
@@ -10091,8 +10393,14 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
10091
10393
|
}>]>, t.TypeC<{
|
|
10092
10394
|
calldata: t.StringC;
|
|
10093
10395
|
}>]>, t.TypeC<{
|
|
10094
|
-
|
|
10095
|
-
|
|
10396
|
+
amount: t.TypeC<{
|
|
10397
|
+
value: t.StringC;
|
|
10398
|
+
symbol: t.StringC;
|
|
10399
|
+
}>;
|
|
10400
|
+
}>, t.TypeC<{
|
|
10401
|
+
intentType: t.LiteralC<"delegate">;
|
|
10402
|
+
validatorAddress: t.StringC;
|
|
10403
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10096
10404
|
intentType: t.KeyofC<{
|
|
10097
10405
|
payment: t.LiteralC<"payment">;
|
|
10098
10406
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -10158,6 +10466,16 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
10158
10466
|
}>, t.PartialC<{
|
|
10159
10467
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10160
10468
|
}>]>, t.TypeC<{
|
|
10469
|
+
calldata: t.StringC;
|
|
10470
|
+
}>]>, t.TypeC<{
|
|
10471
|
+
amount: t.TypeC<{
|
|
10472
|
+
value: t.StringC;
|
|
10473
|
+
symbol: t.StringC;
|
|
10474
|
+
}>;
|
|
10475
|
+
}>, t.TypeC<{
|
|
10476
|
+
intentType: t.LiteralC<"undelegate">;
|
|
10477
|
+
validatorAddress: t.StringC;
|
|
10478
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10161
10479
|
intentType: t.KeyofC<{
|
|
10162
10480
|
payment: t.LiteralC<"payment">;
|
|
10163
10481
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -10215,33 +10533,17 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
10215
10533
|
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
10216
10534
|
}>;
|
|
10217
10535
|
}>, t.PartialC<{
|
|
10218
|
-
|
|
10219
|
-
|
|
10220
|
-
|
|
10221
|
-
|
|
10222
|
-
|
|
10223
|
-
|
|
10224
|
-
|
|
10225
|
-
|
|
10226
|
-
|
|
10227
|
-
|
|
10228
|
-
|
|
10229
|
-
} & {
|
|
10230
|
-
data?: string | undefined;
|
|
10231
|
-
})[], ({
|
|
10232
|
-
address: {
|
|
10233
|
-
address?: string | undefined;
|
|
10234
|
-
option?: {
|
|
10235
|
-
[x: string]: unknown;
|
|
10236
|
-
} | undefined;
|
|
10237
|
-
};
|
|
10238
|
-
amount: {
|
|
10239
|
-
value: string;
|
|
10240
|
-
symbol: string;
|
|
10241
|
-
};
|
|
10242
|
-
} & {
|
|
10243
|
-
data?: string | undefined;
|
|
10244
|
-
})[], unknown>, t.UndefinedC]>;
|
|
10536
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10537
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10538
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10539
|
+
}>]>, t.TypeC<{
|
|
10540
|
+
stakingRequestId: t.StringC;
|
|
10541
|
+
}>, t.PartialC<{
|
|
10542
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10543
|
+
}>]>, t.TypeC<{
|
|
10544
|
+
calldata: t.StringC;
|
|
10545
|
+
}>]>, t.TypeC<{
|
|
10546
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
10245
10547
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10246
10548
|
intentType: t.KeyofC<{
|
|
10247
10549
|
payment: t.LiteralC<"payment">;
|
|
@@ -10308,31 +10610,181 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
10308
10610
|
}>, t.PartialC<{
|
|
10309
10611
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10310
10612
|
}>]>, t.TypeC<{
|
|
10311
|
-
intentType: t.
|
|
10312
|
-
|
|
10313
|
-
|
|
10314
|
-
|
|
10315
|
-
|
|
10316
|
-
|
|
10317
|
-
|
|
10318
|
-
|
|
10319
|
-
|
|
10320
|
-
|
|
10321
|
-
|
|
10322
|
-
|
|
10323
|
-
|
|
10324
|
-
|
|
10325
|
-
|
|
10326
|
-
|
|
10327
|
-
|
|
10328
|
-
|
|
10329
|
-
|
|
10330
|
-
|
|
10331
|
-
|
|
10332
|
-
|
|
10333
|
-
|
|
10334
|
-
|
|
10335
|
-
|
|
10613
|
+
intentType: t.KeyofC<{
|
|
10614
|
+
payment: t.LiteralC<"payment">;
|
|
10615
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
10616
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
10617
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
10618
|
+
fanout: t.LiteralC<"fanout">;
|
|
10619
|
+
stake: t.LiteralC<"stake">;
|
|
10620
|
+
unstake: t.LiteralC<"unstake">;
|
|
10621
|
+
delegate: t.LiteralC<"delegate">;
|
|
10622
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
10623
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
10624
|
+
claim: t.LiteralC<"claim">;
|
|
10625
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
10626
|
+
pledge: t.LiteralC<"pledge">;
|
|
10627
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
10628
|
+
vote: t.LiteralC<"vote">;
|
|
10629
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
10630
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
10631
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
10632
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
10633
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
10634
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
10635
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
10636
|
+
authorize: t.LiteralC<"authorize">;
|
|
10637
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
10638
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
10639
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
10640
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
10641
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
10642
|
+
customTx: t.LiteralC<"customTx">;
|
|
10643
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
10644
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
10645
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
10646
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
10647
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
10648
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
10649
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
10650
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
10651
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
10652
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
10653
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
10654
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
10655
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
10656
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
10657
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
10658
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
10659
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
10660
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
10661
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
10662
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
10663
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
10664
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
10665
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
10666
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
10667
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
10668
|
+
}>;
|
|
10669
|
+
}>, t.PartialC<{
|
|
10670
|
+
recipients: t.UnionC<[t.Type<({
|
|
10671
|
+
address: {
|
|
10672
|
+
address?: string | undefined;
|
|
10673
|
+
option?: {
|
|
10674
|
+
[x: string]: unknown;
|
|
10675
|
+
} | undefined;
|
|
10676
|
+
};
|
|
10677
|
+
amount: {
|
|
10678
|
+
value: string;
|
|
10679
|
+
symbol: string;
|
|
10680
|
+
};
|
|
10681
|
+
} & {
|
|
10682
|
+
data?: string | undefined;
|
|
10683
|
+
})[], ({
|
|
10684
|
+
address: {
|
|
10685
|
+
address?: string | undefined;
|
|
10686
|
+
option?: {
|
|
10687
|
+
[x: string]: unknown;
|
|
10688
|
+
} | undefined;
|
|
10689
|
+
};
|
|
10690
|
+
amount: {
|
|
10691
|
+
value: string;
|
|
10692
|
+
symbol: string;
|
|
10693
|
+
};
|
|
10694
|
+
} & {
|
|
10695
|
+
data?: string | undefined;
|
|
10696
|
+
})[], unknown>, t.UndefinedC]>;
|
|
10697
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10698
|
+
intentType: t.KeyofC<{
|
|
10699
|
+
payment: t.LiteralC<"payment">;
|
|
10700
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
10701
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
10702
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
10703
|
+
fanout: t.LiteralC<"fanout">;
|
|
10704
|
+
stake: t.LiteralC<"stake">;
|
|
10705
|
+
unstake: t.LiteralC<"unstake">;
|
|
10706
|
+
delegate: t.LiteralC<"delegate">;
|
|
10707
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
10708
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
10709
|
+
claim: t.LiteralC<"claim">;
|
|
10710
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
10711
|
+
pledge: t.LiteralC<"pledge">;
|
|
10712
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
10713
|
+
vote: t.LiteralC<"vote">;
|
|
10714
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
10715
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
10716
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
10717
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
10718
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
10719
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
10720
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
10721
|
+
authorize: t.LiteralC<"authorize">;
|
|
10722
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
10723
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
10724
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
10725
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
10726
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
10727
|
+
customTx: t.LiteralC<"customTx">;
|
|
10728
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
10729
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
10730
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
10731
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
10732
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
10733
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
10734
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
10735
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
10736
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
10737
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
10738
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
10739
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
10740
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
10741
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
10742
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
10743
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
10744
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
10745
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
10746
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
10747
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
10748
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
10749
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
10750
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
10751
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
10752
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
10753
|
+
}>;
|
|
10754
|
+
}>, t.PartialC<{
|
|
10755
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10756
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10757
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10758
|
+
}>]>, t.TypeC<{
|
|
10759
|
+
stakingRequestId: t.StringC;
|
|
10760
|
+
}>, t.PartialC<{
|
|
10761
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
10762
|
+
}>]>, t.TypeC<{
|
|
10763
|
+
intentType: t.LiteralC<"delegate">;
|
|
10764
|
+
}>, t.PartialC<{
|
|
10765
|
+
recipients: t.UnionC<[t.Type<({
|
|
10766
|
+
address: {
|
|
10767
|
+
address?: string | undefined;
|
|
10768
|
+
option?: {
|
|
10769
|
+
[x: string]: unknown;
|
|
10770
|
+
} | undefined;
|
|
10771
|
+
};
|
|
10772
|
+
amount: {
|
|
10773
|
+
value: string;
|
|
10774
|
+
symbol: string;
|
|
10775
|
+
};
|
|
10776
|
+
} & {
|
|
10777
|
+
data?: string | undefined;
|
|
10778
|
+
})[], ({
|
|
10779
|
+
address: {
|
|
10780
|
+
address?: string | undefined;
|
|
10781
|
+
option?: {
|
|
10782
|
+
[x: string]: unknown;
|
|
10783
|
+
} | undefined;
|
|
10784
|
+
};
|
|
10785
|
+
amount: {
|
|
10786
|
+
value: string;
|
|
10787
|
+
symbol: string;
|
|
10336
10788
|
};
|
|
10337
10789
|
} & {
|
|
10338
10790
|
data?: string | undefined;
|
|
@@ -12155,7 +12607,7 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12155
12607
|
} & {
|
|
12156
12608
|
data?: string | undefined;
|
|
12157
12609
|
})[], unknown>, t.UndefinedC]>;
|
|
12158
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.
|
|
12610
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12159
12611
|
intentType: t.KeyofC<{
|
|
12160
12612
|
payment: t.LiteralC<"payment">;
|
|
12161
12613
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -12221,22 +12673,8 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12221
12673
|
}>, t.PartialC<{
|
|
12222
12674
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
12223
12675
|
}>]>, t.TypeC<{
|
|
12224
|
-
intentType: t.LiteralC<"
|
|
12225
|
-
|
|
12226
|
-
amount: t.UnionC<[t.Type<{
|
|
12227
|
-
value: string;
|
|
12228
|
-
symbol: string;
|
|
12229
|
-
}, {
|
|
12230
|
-
value: string;
|
|
12231
|
-
symbol: string;
|
|
12232
|
-
}, unknown>, t.UndefinedC]>;
|
|
12233
|
-
}>]>, t.TypeC<{
|
|
12234
|
-
amount: t.TypeC<{
|
|
12235
|
-
value: t.StringC;
|
|
12236
|
-
symbol: t.StringC;
|
|
12237
|
-
}>;
|
|
12238
|
-
}>, t.TypeC<{
|
|
12239
|
-
validatorAddress: t.StringC;
|
|
12676
|
+
intentType: t.LiteralC<"createBtcDelegation">;
|
|
12677
|
+
createBtcDelegationBytes: t.StringC;
|
|
12240
12678
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12241
12679
|
intentType: t.KeyofC<{
|
|
12242
12680
|
payment: t.LiteralC<"payment">;
|
|
@@ -12303,8 +12741,8 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12303
12741
|
}>, t.PartialC<{
|
|
12304
12742
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
12305
12743
|
}>]>, t.TypeC<{
|
|
12306
|
-
intentType: t.LiteralC<"
|
|
12307
|
-
|
|
12744
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
12745
|
+
type: t.StringC;
|
|
12308
12746
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12309
12747
|
intentType: t.KeyofC<{
|
|
12310
12748
|
payment: t.LiteralC<"payment">;
|
|
@@ -12371,8 +12809,16 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12371
12809
|
}>, t.PartialC<{
|
|
12372
12810
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
12373
12811
|
}>]>, t.TypeC<{
|
|
12374
|
-
|
|
12375
|
-
|
|
12812
|
+
amount: t.TypeC<{
|
|
12813
|
+
value: t.StringC;
|
|
12814
|
+
symbol: t.StringC;
|
|
12815
|
+
}>;
|
|
12816
|
+
}>, t.TypeC<{
|
|
12817
|
+
intentType: t.LiteralC<"delegate">;
|
|
12818
|
+
validatorAddress: t.StringC;
|
|
12819
|
+
}>, t.PartialC<{
|
|
12820
|
+
relayerFee: t.StringC;
|
|
12821
|
+
delegateVotePower: t.StringC;
|
|
12376
12822
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12377
12823
|
intentType: t.KeyofC<{
|
|
12378
12824
|
payment: t.LiteralC<"payment">;
|
|
@@ -12444,12 +12890,11 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12444
12890
|
symbol: t.StringC;
|
|
12445
12891
|
}>;
|
|
12446
12892
|
}>, t.TypeC<{
|
|
12447
|
-
intentType: t.LiteralC<"
|
|
12893
|
+
intentType: t.LiteralC<"undelegate">;
|
|
12448
12894
|
validatorAddress: t.StringC;
|
|
12449
12895
|
}>, t.PartialC<{
|
|
12450
12896
|
relayerFee: t.StringC;
|
|
12451
|
-
|
|
12452
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12897
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12453
12898
|
intentType: t.KeyofC<{
|
|
12454
12899
|
payment: t.LiteralC<"payment">;
|
|
12455
12900
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -12515,16 +12960,19 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12515
12960
|
}>, t.PartialC<{
|
|
12516
12961
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
12517
12962
|
}>]>, t.TypeC<{
|
|
12518
|
-
|
|
12519
|
-
value: t.StringC;
|
|
12520
|
-
symbol: t.StringC;
|
|
12521
|
-
}>;
|
|
12522
|
-
}>, t.TypeC<{
|
|
12523
|
-
intentType: t.LiteralC<"undelegate">;
|
|
12524
|
-
validatorAddress: t.StringC;
|
|
12963
|
+
intentType: t.LiteralC<"claim">;
|
|
12525
12964
|
}>, t.PartialC<{
|
|
12526
|
-
|
|
12527
|
-
|
|
12965
|
+
amount: t.UnionC<[t.Type<{
|
|
12966
|
+
value: string;
|
|
12967
|
+
symbol: string;
|
|
12968
|
+
}, {
|
|
12969
|
+
value: string;
|
|
12970
|
+
symbol: string;
|
|
12971
|
+
}, unknown>, t.UndefinedC]>;
|
|
12972
|
+
}>]>, t.TypeC<{
|
|
12973
|
+
validatorAddress: t.StringC;
|
|
12974
|
+
requestNumber: t.NumberC;
|
|
12975
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12528
12976
|
intentType: t.KeyofC<{
|
|
12529
12977
|
payment: t.LiteralC<"payment">;
|
|
12530
12978
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -12586,25 +13034,35 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12586
13034
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
12587
13035
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
12588
13036
|
}>]>, t.TypeC<{
|
|
12589
|
-
|
|
12590
|
-
|
|
12591
|
-
|
|
12592
|
-
|
|
12593
|
-
|
|
12594
|
-
|
|
12595
|
-
|
|
12596
|
-
|
|
12597
|
-
|
|
12598
|
-
|
|
12599
|
-
|
|
12600
|
-
|
|
12601
|
-
|
|
12602
|
-
|
|
12603
|
-
|
|
12604
|
-
|
|
12605
|
-
}
|
|
12606
|
-
intentType: t.
|
|
12607
|
-
|
|
13037
|
+
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
13038
|
+
address: t.PartialC<{
|
|
13039
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13040
|
+
option: t.UnionC<[t.Type<{
|
|
13041
|
+
[x: string]: unknown;
|
|
13042
|
+
}, {
|
|
13043
|
+
[x: string]: unknown;
|
|
13044
|
+
}, unknown>, t.UndefinedC]>;
|
|
13045
|
+
}>;
|
|
13046
|
+
amount: t.TypeC<{
|
|
13047
|
+
value: t.StringC;
|
|
13048
|
+
symbol: t.StringC;
|
|
13049
|
+
}>;
|
|
13050
|
+
}>, t.PartialC<{
|
|
13051
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13052
|
+
}>]>>;
|
|
13053
|
+
}>, t.UnionC<[t.TypeC<{
|
|
13054
|
+
intentType: t.LiteralC<"payment">;
|
|
13055
|
+
}>, t.TypeC<{
|
|
13056
|
+
intentType: t.LiteralC<"payment">;
|
|
13057
|
+
isTestTransaction: t.BooleanC;
|
|
13058
|
+
}>]>]>, t.PartialC<{
|
|
13059
|
+
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13060
|
+
isConsolidate: t.BooleanC;
|
|
13061
|
+
}>, t.TypeC<{
|
|
13062
|
+
unspents: t.UnionC<[t.Type<string[], string[], unknown>, t.UndefinedC]>;
|
|
13063
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13064
|
+
intentType: t.KeyofC<{
|
|
13065
|
+
payment: t.LiteralC<"payment">;
|
|
12608
13066
|
transferToken: t.LiteralC<"transferToken">;
|
|
12609
13067
|
consolidate: t.LiteralC<"consolidate">;
|
|
12610
13068
|
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
@@ -12664,32 +13122,11 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12664
13122
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
12665
13123
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
12666
13124
|
}>]>, t.TypeC<{
|
|
12667
|
-
|
|
12668
|
-
|
|
12669
|
-
|
|
12670
|
-
|
|
12671
|
-
|
|
12672
|
-
}, {
|
|
12673
|
-
[x: string]: unknown;
|
|
12674
|
-
}, unknown>, t.UndefinedC]>;
|
|
12675
|
-
}>;
|
|
12676
|
-
amount: t.TypeC<{
|
|
12677
|
-
value: t.StringC;
|
|
12678
|
-
symbol: t.StringC;
|
|
12679
|
-
}>;
|
|
12680
|
-
}>, t.PartialC<{
|
|
12681
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
12682
|
-
}>]>>;
|
|
12683
|
-
}>, t.UnionC<[t.TypeC<{
|
|
12684
|
-
intentType: t.LiteralC<"payment">;
|
|
12685
|
-
}>, t.TypeC<{
|
|
12686
|
-
intentType: t.LiteralC<"payment">;
|
|
12687
|
-
isTestTransaction: t.BooleanC;
|
|
12688
|
-
}>]>]>, t.PartialC<{
|
|
12689
|
-
memo: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
12690
|
-
isConsolidate: t.BooleanC;
|
|
12691
|
-
}>, t.TypeC<{
|
|
12692
|
-
unspents: t.UnionC<[t.Type<string[], string[], unknown>, t.UndefinedC]>;
|
|
13125
|
+
intentType: t.LiteralC<"transferAccept">;
|
|
13126
|
+
txRequestId: t.StringC;
|
|
13127
|
+
}>, t.PartialC<{
|
|
13128
|
+
token: t.StringC;
|
|
13129
|
+
expiry: t.NumberC;
|
|
12693
13130
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12694
13131
|
intentType: t.KeyofC<{
|
|
12695
13132
|
payment: t.LiteralC<"payment">;
|
|
@@ -12752,11 +13189,15 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12752
13189
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
12753
13190
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
12754
13191
|
}>]>, t.TypeC<{
|
|
12755
|
-
intentType: t.LiteralC<"
|
|
12756
|
-
|
|
13192
|
+
intentType: t.LiteralC<"transferAcknowledge">;
|
|
13193
|
+
contractId: t.StringC;
|
|
13194
|
+
senderPartyId: t.StringC;
|
|
13195
|
+
updateId: t.StringC;
|
|
13196
|
+
amount: import("io-ts-types").NumberFromStringC;
|
|
13197
|
+
expiry: t.NumberC;
|
|
12757
13198
|
}>, t.PartialC<{
|
|
13199
|
+
memoId: t.StringC;
|
|
12758
13200
|
token: t.StringC;
|
|
12759
|
-
expiry: t.NumberC;
|
|
12760
13201
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12761
13202
|
intentType: t.KeyofC<{
|
|
12762
13203
|
payment: t.LiteralC<"payment">;
|
|
@@ -12819,14 +13260,9 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12819
13260
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
12820
13261
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
12821
13262
|
}>]>, t.TypeC<{
|
|
12822
|
-
intentType: t.LiteralC<"
|
|
12823
|
-
|
|
12824
|
-
senderPartyId: t.StringC;
|
|
12825
|
-
updateId: t.StringC;
|
|
12826
|
-
amount: import("io-ts-types").NumberFromStringC;
|
|
12827
|
-
expiry: t.NumberC;
|
|
13263
|
+
intentType: t.LiteralC<"transferOfferWithdrawn">;
|
|
13264
|
+
transferOfferId: t.StringC;
|
|
12828
13265
|
}>, t.PartialC<{
|
|
12829
|
-
memoId: t.StringC;
|
|
12830
13266
|
token: t.StringC;
|
|
12831
13267
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12832
13268
|
intentType: t.KeyofC<{
|
|
@@ -12890,10 +13326,78 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12890
13326
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
12891
13327
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
12892
13328
|
}>]>, t.TypeC<{
|
|
12893
|
-
intentType: t.LiteralC<"
|
|
12894
|
-
|
|
13329
|
+
intentType: t.LiteralC<"transferReject">;
|
|
13330
|
+
txRequestId: t.StringC;
|
|
12895
13331
|
}>, t.PartialC<{
|
|
12896
13332
|
token: t.StringC;
|
|
13333
|
+
expiry: t.NumberC;
|
|
13334
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13335
|
+
intentType: t.KeyofC<{
|
|
13336
|
+
payment: t.LiteralC<"payment">;
|
|
13337
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
13338
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
13339
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
13340
|
+
fanout: t.LiteralC<"fanout">;
|
|
13341
|
+
stake: t.LiteralC<"stake">;
|
|
13342
|
+
unstake: t.LiteralC<"unstake">;
|
|
13343
|
+
delegate: t.LiteralC<"delegate">;
|
|
13344
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
13345
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
13346
|
+
claim: t.LiteralC<"claim">;
|
|
13347
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
13348
|
+
pledge: t.LiteralC<"pledge">;
|
|
13349
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
13350
|
+
vote: t.LiteralC<"vote">;
|
|
13351
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
13352
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
13353
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
13354
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
13355
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
13356
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
13357
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
13358
|
+
authorize: t.LiteralC<"authorize">;
|
|
13359
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
13360
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
13361
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
13362
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
13363
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
13364
|
+
customTx: t.LiteralC<"customTx">;
|
|
13365
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
13366
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
13367
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
13368
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
13369
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
13370
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
13371
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
13372
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
13373
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
13374
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
13375
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
13376
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
13377
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
13378
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
13379
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
13380
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
13381
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
13382
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
13383
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
13384
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
13385
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
13386
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
13387
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
13388
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
13389
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
13390
|
+
}>;
|
|
13391
|
+
}>, t.PartialC<{
|
|
13392
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13393
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13394
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13395
|
+
}>]>, t.TypeC<{
|
|
13396
|
+
stakingRequestId: t.StringC;
|
|
13397
|
+
}>, t.PartialC<{
|
|
13398
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
13399
|
+
}>]>, t.TypeC<{
|
|
13400
|
+
intentType: t.LiteralC<"claim">;
|
|
12897
13401
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12898
13402
|
intentType: t.KeyofC<{
|
|
12899
13403
|
payment: t.LiteralC<"payment">;
|
|
@@ -12956,11 +13460,11 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
12956
13460
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
12957
13461
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
12958
13462
|
}>]>, t.TypeC<{
|
|
12959
|
-
intentType: t.LiteralC<"
|
|
12960
|
-
|
|
13463
|
+
intentType: t.LiteralC<"contractCall">;
|
|
13464
|
+
contract: t.StringC;
|
|
13465
|
+
msgHex: t.StringC;
|
|
12961
13466
|
}>, t.PartialC<{
|
|
12962
|
-
|
|
12963
|
-
expiry: t.NumberC;
|
|
13467
|
+
feeGranter: t.StringC;
|
|
12964
13468
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
12965
13469
|
intentType: t.KeyofC<{
|
|
12966
13470
|
payment: t.LiteralC<"payment">;
|
|
@@ -13111,6 +13615,74 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13111
13615
|
stakingRequestId: t.StringC;
|
|
13112
13616
|
}>, t.PartialC<{
|
|
13113
13617
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
13618
|
+
}>]>, t.TypeC<{
|
|
13619
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
13620
|
+
validatorAddress: t.StringC;
|
|
13621
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13622
|
+
intentType: t.KeyofC<{
|
|
13623
|
+
payment: t.LiteralC<"payment">;
|
|
13624
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
13625
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
13626
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
13627
|
+
fanout: t.LiteralC<"fanout">;
|
|
13628
|
+
stake: t.LiteralC<"stake">;
|
|
13629
|
+
unstake: t.LiteralC<"unstake">;
|
|
13630
|
+
delegate: t.LiteralC<"delegate">;
|
|
13631
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
13632
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
13633
|
+
claim: t.LiteralC<"claim">;
|
|
13634
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
13635
|
+
pledge: t.LiteralC<"pledge">;
|
|
13636
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
13637
|
+
vote: t.LiteralC<"vote">;
|
|
13638
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
13639
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
13640
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
13641
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
13642
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
13643
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
13644
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
13645
|
+
authorize: t.LiteralC<"authorize">;
|
|
13646
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
13647
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
13648
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
13649
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
13650
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
13651
|
+
customTx: t.LiteralC<"customTx">;
|
|
13652
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
13653
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
13654
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
13655
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
13656
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
13657
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
13658
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
13659
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
13660
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
13661
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
13662
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
13663
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
13664
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
13665
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
13666
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
13667
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
13668
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
13669
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
13670
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
13671
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
13672
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
13673
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
13674
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
13675
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
13676
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
13677
|
+
}>;
|
|
13678
|
+
}>, t.PartialC<{
|
|
13679
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13680
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13681
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13682
|
+
}>]>, t.TypeC<{
|
|
13683
|
+
stakingRequestId: t.StringC;
|
|
13684
|
+
}>, t.PartialC<{
|
|
13685
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
13114
13686
|
}>]>, t.TypeC<{
|
|
13115
13687
|
amount: t.TypeC<{
|
|
13116
13688
|
value: t.StringC;
|
|
@@ -13322,7 +13894,7 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13322
13894
|
} & {
|
|
13323
13895
|
data?: string | undefined;
|
|
13324
13896
|
})[], unknown>, t.UndefinedC]>;
|
|
13325
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.
|
|
13897
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13326
13898
|
intentType: t.KeyofC<{
|
|
13327
13899
|
payment: t.LiteralC<"payment">;
|
|
13328
13900
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -13384,21 +13956,9 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13384
13956
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13385
13957
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13386
13958
|
}>]>, t.TypeC<{
|
|
13387
|
-
|
|
13388
|
-
|
|
13389
|
-
|
|
13390
|
-
}>]>, t.TypeC<{
|
|
13391
|
-
intentType: t.LiteralC<"claim">;
|
|
13392
|
-
}>, t.PartialC<{
|
|
13393
|
-
amount: t.UnionC<[t.Type<{
|
|
13394
|
-
value: string;
|
|
13395
|
-
symbol: string;
|
|
13396
|
-
}, {
|
|
13397
|
-
value: string;
|
|
13398
|
-
symbol: string;
|
|
13399
|
-
}, unknown>, t.UndefinedC]>;
|
|
13400
|
-
}>]>, t.TypeC<{
|
|
13401
|
-
validatorAddress: t.StringC;
|
|
13959
|
+
intentType: t.LiteralC<"defi-deposit">;
|
|
13960
|
+
protocol: t.StringC;
|
|
13961
|
+
amount: t.StringC;
|
|
13402
13962
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13403
13963
|
intentType: t.KeyofC<{
|
|
13404
13964
|
payment: t.LiteralC<"payment">;
|
|
@@ -13461,72 +14021,7 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13461
14021
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13462
14022
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13463
14023
|
}>]>, t.TypeC<{
|
|
13464
|
-
intentType: t.LiteralC<"defi-
|
|
13465
|
-
protocol: t.StringC;
|
|
13466
|
-
amount: t.StringC;
|
|
13467
|
-
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
13468
|
-
intentType: t.KeyofC<{
|
|
13469
|
-
payment: t.LiteralC<"payment">;
|
|
13470
|
-
transferToken: t.LiteralC<"transferToken">;
|
|
13471
|
-
consolidate: t.LiteralC<"consolidate">;
|
|
13472
|
-
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
13473
|
-
fanout: t.LiteralC<"fanout">;
|
|
13474
|
-
stake: t.LiteralC<"stake">;
|
|
13475
|
-
unstake: t.LiteralC<"unstake">;
|
|
13476
|
-
delegate: t.LiteralC<"delegate">;
|
|
13477
|
-
undelegate: t.LiteralC<"undelegate">;
|
|
13478
|
-
switchValidator: t.LiteralC<"switchValidator">;
|
|
13479
|
-
claim: t.LiteralC<"claim">;
|
|
13480
|
-
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
13481
|
-
pledge: t.LiteralC<"pledge">;
|
|
13482
|
-
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
13483
|
-
vote: t.LiteralC<"vote">;
|
|
13484
|
-
createAccount: t.LiteralC<"createAccount">;
|
|
13485
|
-
updateAccount: t.LiteralC<"updateAccount">;
|
|
13486
|
-
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
13487
|
-
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
13488
|
-
signMessage: t.LiteralC<"signMessage">;
|
|
13489
|
-
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
13490
|
-
enableToken: t.LiteralC<"enableToken">;
|
|
13491
|
-
authorize: t.LiteralC<"authorize">;
|
|
13492
|
-
acceleration: t.LiteralC<"acceleration">;
|
|
13493
|
-
fillNonce: t.LiteralC<"fillNonce">;
|
|
13494
|
-
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
13495
|
-
contractCall: t.LiteralC<"contractCall">;
|
|
13496
|
-
deactivate: t.LiteralC<"deactivate">;
|
|
13497
|
-
customTx: t.LiteralC<"customTx">;
|
|
13498
|
-
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
13499
|
-
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
13500
|
-
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
13501
|
-
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
13502
|
-
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
13503
|
-
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
13504
|
-
transferStake: t.LiteralC<"transferStake">;
|
|
13505
|
-
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
13506
|
-
increaseStake: t.LiteralC<"increaseStake">;
|
|
13507
|
-
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
13508
|
-
signalExit: t.LiteralC<"signalExit">;
|
|
13509
|
-
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
13510
|
-
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
13511
|
-
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
13512
|
-
enableBridging: t.LiteralC<"enableBridging">;
|
|
13513
|
-
goUnstake: t.LiteralC<"goUnstake">;
|
|
13514
|
-
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
13515
|
-
transferAccept: t.LiteralC<"transferAccept">;
|
|
13516
|
-
transferReject: t.LiteralC<"transferReject">;
|
|
13517
|
-
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
13518
|
-
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
13519
|
-
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
13520
|
-
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
13521
|
-
delegateResource: t.LiteralC<"delegateResource">;
|
|
13522
|
-
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
13523
|
-
}>;
|
|
13524
|
-
}>, t.PartialC<{
|
|
13525
|
-
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13526
|
-
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
13527
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
13528
|
-
}>]>, t.TypeC<{
|
|
13529
|
-
intentType: t.LiteralC<"defi-redeem">;
|
|
14024
|
+
intentType: t.LiteralC<"defi-redeem">;
|
|
13530
14025
|
protocol: t.StringC;
|
|
13531
14026
|
amount: t.StringC;
|
|
13532
14027
|
}>]>, t.IntersectionC<[t.PartialC<{
|
|
@@ -14148,6 +14643,73 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14148
14643
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14149
14644
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14150
14645
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14646
|
+
}>]>, t.TypeC<{
|
|
14647
|
+
stakingRequestId: t.StringC;
|
|
14648
|
+
}>, t.PartialC<{
|
|
14649
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
14650
|
+
}>]>, t.TypeC<{
|
|
14651
|
+
intentType: t.LiteralC<"delegate">;
|
|
14652
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14653
|
+
intentType: t.KeyofC<{
|
|
14654
|
+
payment: t.LiteralC<"payment">;
|
|
14655
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
14656
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
14657
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
14658
|
+
fanout: t.LiteralC<"fanout">;
|
|
14659
|
+
stake: t.LiteralC<"stake">;
|
|
14660
|
+
unstake: t.LiteralC<"unstake">;
|
|
14661
|
+
delegate: t.LiteralC<"delegate">;
|
|
14662
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
14663
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
14664
|
+
claim: t.LiteralC<"claim">;
|
|
14665
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
14666
|
+
pledge: t.LiteralC<"pledge">;
|
|
14667
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
14668
|
+
vote: t.LiteralC<"vote">;
|
|
14669
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
14670
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
14671
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
14672
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
14673
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
14674
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
14675
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
14676
|
+
authorize: t.LiteralC<"authorize">;
|
|
14677
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
14678
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
14679
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
14680
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
14681
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
14682
|
+
customTx: t.LiteralC<"customTx">;
|
|
14683
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
14684
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
14685
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
14686
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
14687
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
14688
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
14689
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
14690
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
14691
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
14692
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
14693
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
14694
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
14695
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
14696
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
14697
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
14698
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
14699
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
14700
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
14701
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
14702
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
14703
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
14704
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
14705
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
14706
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
14707
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
14708
|
+
}>;
|
|
14709
|
+
}>, t.PartialC<{
|
|
14710
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14711
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14712
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14151
14713
|
}>]>, t.TypeC<{
|
|
14152
14714
|
intentType: t.LiteralC<"acceleration">;
|
|
14153
14715
|
txid: t.StringC;
|
|
@@ -14491,6 +15053,71 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14491
15053
|
}, unknown>, t.UndefinedC]>;
|
|
14492
15054
|
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14493
15055
|
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
15056
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15057
|
+
intentType: t.KeyofC<{
|
|
15058
|
+
payment: t.LiteralC<"payment">;
|
|
15059
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
15060
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
15061
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
15062
|
+
fanout: t.LiteralC<"fanout">;
|
|
15063
|
+
stake: t.LiteralC<"stake">;
|
|
15064
|
+
unstake: t.LiteralC<"unstake">;
|
|
15065
|
+
delegate: t.LiteralC<"delegate">;
|
|
15066
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
15067
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
15068
|
+
claim: t.LiteralC<"claim">;
|
|
15069
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
15070
|
+
pledge: t.LiteralC<"pledge">;
|
|
15071
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
15072
|
+
vote: t.LiteralC<"vote">;
|
|
15073
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
15074
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
15075
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
15076
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
15077
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
15078
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
15079
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
15080
|
+
authorize: t.LiteralC<"authorize">;
|
|
15081
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
15082
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
15083
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
15084
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
15085
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
15086
|
+
customTx: t.LiteralC<"customTx">;
|
|
15087
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
15088
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
15089
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
15090
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
15091
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
15092
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
15093
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
15094
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
15095
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
15096
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
15097
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
15098
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
15099
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
15100
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
15101
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
15102
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
15103
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
15104
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
15105
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
15106
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
15107
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
15108
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
15109
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
15110
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
15111
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
15112
|
+
}>;
|
|
15113
|
+
}>, t.PartialC<{
|
|
15114
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15115
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15116
|
+
}>]>, t.TypeC<{
|
|
15117
|
+
intentType: t.LiteralC<"fillNonce">;
|
|
15118
|
+
nonce: t.UnionC<[t.StringC, t.NumberC]>;
|
|
15119
|
+
}>, t.PartialC<{
|
|
15120
|
+
senderAddress: t.StringC;
|
|
14494
15121
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14495
15122
|
intentType: t.KeyofC<{
|
|
14496
15123
|
payment: t.LiteralC<"payment">;
|
|
@@ -14677,47 +15304,246 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14677
15304
|
}>, t.PartialC<{
|
|
14678
15305
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
14679
15306
|
}>]>, t.TypeC<{
|
|
14680
|
-
intentType: t.LiteralC<"stake">;
|
|
14681
|
-
}>]>, t.IntersectionC<[t.PartialC<{
|
|
14682
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14683
|
-
}>, t.PartialC<{
|
|
14684
|
-
feeOptions: t.UnionC<[t.Type<{
|
|
14685
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
14686
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
14687
|
-
feeType?: "max" | "base" | "tip" | undefined;
|
|
14688
|
-
gasLimit?: number | undefined;
|
|
14689
|
-
gasPrice?: number | undefined;
|
|
14690
|
-
} | {
|
|
14691
|
-
gasLimit?: number | undefined;
|
|
14692
|
-
maxFeePerGas?: number | undefined;
|
|
14693
|
-
maxPriorityFeePerGas?: number | undefined;
|
|
14694
|
-
}, {
|
|
14695
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
14696
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
14697
|
-
feeType?: "max" | "base" | "tip" | undefined;
|
|
14698
|
-
gasLimit?: number | undefined;
|
|
14699
|
-
gasPrice?: number | undefined;
|
|
14700
|
-
} | {
|
|
14701
|
-
gasLimit?: number | undefined;
|
|
14702
|
-
maxFeePerGas?: number | undefined;
|
|
14703
|
-
maxPriorityFeePerGas?: number | undefined;
|
|
14704
|
-
}, unknown>, t.UndefinedC]>;
|
|
14705
|
-
hopParams: t.UnionC<[t.Type<{
|
|
14706
|
-
paymentId: string | undefined;
|
|
14707
|
-
userReqSig: string | undefined;
|
|
14708
|
-
gasPriceMax: number | undefined;
|
|
14709
|
-
}, {
|
|
14710
|
-
paymentId: string | undefined;
|
|
14711
|
-
userReqSig: string | undefined;
|
|
14712
|
-
gasPriceMax: number | undefined;
|
|
14713
|
-
}, unknown>, t.UndefinedC]>;
|
|
14714
|
-
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14715
|
-
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
14716
|
-
}>]>, t.TypeC<{
|
|
14717
|
-
pubkey: t.StringC;
|
|
14718
|
-
withdrawalCredentials: t.StringC;
|
|
14719
|
-
signature: t.StringC;
|
|
14720
|
-
depositDataRoot: t.StringC;
|
|
15307
|
+
intentType: t.LiteralC<"stake">;
|
|
15308
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15309
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15310
|
+
}>, t.PartialC<{
|
|
15311
|
+
feeOptions: t.UnionC<[t.Type<{
|
|
15312
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15313
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
15314
|
+
feeType?: "max" | "base" | "tip" | undefined;
|
|
15315
|
+
gasLimit?: number | undefined;
|
|
15316
|
+
gasPrice?: number | undefined;
|
|
15317
|
+
} | {
|
|
15318
|
+
gasLimit?: number | undefined;
|
|
15319
|
+
maxFeePerGas?: number | undefined;
|
|
15320
|
+
maxPriorityFeePerGas?: number | undefined;
|
|
15321
|
+
}, {
|
|
15322
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15323
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
15324
|
+
feeType?: "max" | "base" | "tip" | undefined;
|
|
15325
|
+
gasLimit?: number | undefined;
|
|
15326
|
+
gasPrice?: number | undefined;
|
|
15327
|
+
} | {
|
|
15328
|
+
gasLimit?: number | undefined;
|
|
15329
|
+
maxFeePerGas?: number | undefined;
|
|
15330
|
+
maxPriorityFeePerGas?: number | undefined;
|
|
15331
|
+
}, unknown>, t.UndefinedC]>;
|
|
15332
|
+
hopParams: t.UnionC<[t.Type<{
|
|
15333
|
+
paymentId: string | undefined;
|
|
15334
|
+
userReqSig: string | undefined;
|
|
15335
|
+
gasPriceMax: number | undefined;
|
|
15336
|
+
}, {
|
|
15337
|
+
paymentId: string | undefined;
|
|
15338
|
+
userReqSig: string | undefined;
|
|
15339
|
+
gasPriceMax: number | undefined;
|
|
15340
|
+
}, unknown>, t.UndefinedC]>;
|
|
15341
|
+
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15342
|
+
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
15343
|
+
}>]>, t.TypeC<{
|
|
15344
|
+
pubkey: t.StringC;
|
|
15345
|
+
withdrawalCredentials: t.StringC;
|
|
15346
|
+
signature: t.StringC;
|
|
15347
|
+
depositDataRoot: t.StringC;
|
|
15348
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15349
|
+
intentType: t.KeyofC<{
|
|
15350
|
+
payment: t.LiteralC<"payment">;
|
|
15351
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
15352
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
15353
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
15354
|
+
fanout: t.LiteralC<"fanout">;
|
|
15355
|
+
stake: t.LiteralC<"stake">;
|
|
15356
|
+
unstake: t.LiteralC<"unstake">;
|
|
15357
|
+
delegate: t.LiteralC<"delegate">;
|
|
15358
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
15359
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
15360
|
+
claim: t.LiteralC<"claim">;
|
|
15361
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
15362
|
+
pledge: t.LiteralC<"pledge">;
|
|
15363
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
15364
|
+
vote: t.LiteralC<"vote">;
|
|
15365
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
15366
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
15367
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
15368
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
15369
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
15370
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
15371
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
15372
|
+
authorize: t.LiteralC<"authorize">;
|
|
15373
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
15374
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
15375
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
15376
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
15377
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
15378
|
+
customTx: t.LiteralC<"customTx">;
|
|
15379
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
15380
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
15381
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
15382
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
15383
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
15384
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
15385
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
15386
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
15387
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
15388
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
15389
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
15390
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
15391
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
15392
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
15393
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
15394
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
15395
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
15396
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
15397
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
15398
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
15399
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
15400
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
15401
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
15402
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
15403
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
15404
|
+
}>;
|
|
15405
|
+
}>, t.PartialC<{
|
|
15406
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15407
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15408
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15409
|
+
}>]>, t.TypeC<{
|
|
15410
|
+
recipients: t.ArrayC<t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15411
|
+
address: t.PartialC<{
|
|
15412
|
+
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15413
|
+
option: t.UnionC<[t.Type<{
|
|
15414
|
+
[x: string]: unknown;
|
|
15415
|
+
}, {
|
|
15416
|
+
[x: string]: unknown;
|
|
15417
|
+
}, unknown>, t.UndefinedC]>;
|
|
15418
|
+
}>;
|
|
15419
|
+
amount: t.TypeC<{
|
|
15420
|
+
value: t.StringC;
|
|
15421
|
+
symbol: t.StringC;
|
|
15422
|
+
}>;
|
|
15423
|
+
}>, t.PartialC<{
|
|
15424
|
+
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15425
|
+
}>]>, t.PartialC<{
|
|
15426
|
+
tokenData: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15427
|
+
tokenQuantity: t.StringC;
|
|
15428
|
+
tokenType: t.StringC;
|
|
15429
|
+
}>, t.PartialC<{
|
|
15430
|
+
tokenId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15431
|
+
}>]>, t.TypeC<{
|
|
15432
|
+
tokenName: t.StringC;
|
|
15433
|
+
}>, t.PartialC<{
|
|
15434
|
+
tokenContractAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15435
|
+
decimals: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
15436
|
+
}>]>;
|
|
15437
|
+
}>]>>;
|
|
15438
|
+
}>, t.TypeC<{
|
|
15439
|
+
intentType: t.LiteralC<"transferToken">;
|
|
15440
|
+
}>]>, t.IntersectionC<[t.PartialC<{
|
|
15441
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15442
|
+
}>, t.PartialC<{
|
|
15443
|
+
feeOptions: t.UnionC<[t.Type<{
|
|
15444
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15445
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
15446
|
+
feeType?: "max" | "base" | "tip" | undefined;
|
|
15447
|
+
gasLimit?: number | undefined;
|
|
15448
|
+
gasPrice?: number | undefined;
|
|
15449
|
+
} | {
|
|
15450
|
+
gasLimit?: number | undefined;
|
|
15451
|
+
maxFeePerGas?: number | undefined;
|
|
15452
|
+
maxPriorityFeePerGas?: number | undefined;
|
|
15453
|
+
}, {
|
|
15454
|
+
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
15455
|
+
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
15456
|
+
feeType?: "max" | "base" | "tip" | undefined;
|
|
15457
|
+
gasLimit?: number | undefined;
|
|
15458
|
+
gasPrice?: number | undefined;
|
|
15459
|
+
} | {
|
|
15460
|
+
gasLimit?: number | undefined;
|
|
15461
|
+
maxFeePerGas?: number | undefined;
|
|
15462
|
+
maxPriorityFeePerGas?: number | undefined;
|
|
15463
|
+
}, unknown>, t.UndefinedC]>;
|
|
15464
|
+
hopParams: t.UnionC<[t.Type<{
|
|
15465
|
+
paymentId: string | undefined;
|
|
15466
|
+
userReqSig: string | undefined;
|
|
15467
|
+
gasPriceMax: number | undefined;
|
|
15468
|
+
}, {
|
|
15469
|
+
paymentId: string | undefined;
|
|
15470
|
+
userReqSig: string | undefined;
|
|
15471
|
+
gasPriceMax: number | undefined;
|
|
15472
|
+
}, unknown>, t.UndefinedC]>;
|
|
15473
|
+
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15474
|
+
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
15475
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15476
|
+
intentType: t.KeyofC<{
|
|
15477
|
+
payment: t.LiteralC<"payment">;
|
|
15478
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
15479
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
15480
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
15481
|
+
fanout: t.LiteralC<"fanout">;
|
|
15482
|
+
stake: t.LiteralC<"stake">;
|
|
15483
|
+
unstake: t.LiteralC<"unstake">;
|
|
15484
|
+
delegate: t.LiteralC<"delegate">;
|
|
15485
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
15486
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
15487
|
+
claim: t.LiteralC<"claim">;
|
|
15488
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
15489
|
+
pledge: t.LiteralC<"pledge">;
|
|
15490
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
15491
|
+
vote: t.LiteralC<"vote">;
|
|
15492
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
15493
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
15494
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
15495
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
15496
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
15497
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
15498
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
15499
|
+
authorize: t.LiteralC<"authorize">;
|
|
15500
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
15501
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
15502
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
15503
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
15504
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
15505
|
+
customTx: t.LiteralC<"customTx">;
|
|
15506
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
15507
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
15508
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
15509
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
15510
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
15511
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
15512
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
15513
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
15514
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
15515
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
15516
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
15517
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
15518
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
15519
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
15520
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
15521
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
15522
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
15523
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
15524
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
15525
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
15526
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
15527
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
15528
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
15529
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
15530
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
15531
|
+
}>;
|
|
15532
|
+
}>, t.PartialC<{
|
|
15533
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15534
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
15535
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15536
|
+
}>]>, t.TypeC<{
|
|
15537
|
+
stakingRequestId: t.StringC;
|
|
15538
|
+
}>, t.PartialC<{
|
|
15539
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
15540
|
+
}>]>, t.TypeC<{
|
|
15541
|
+
amount: t.TypeC<{
|
|
15542
|
+
value: t.StringC;
|
|
15543
|
+
symbol: t.StringC;
|
|
15544
|
+
}>;
|
|
15545
|
+
}>, t.TypeC<{
|
|
15546
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
14721
15547
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14722
15548
|
intentType: t.KeyofC<{
|
|
14723
15549
|
payment: t.LiteralC<"payment">;
|
|
@@ -14780,72 +15606,12 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
14780
15606
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14781
15607
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
14782
15608
|
}>]>, t.TypeC<{
|
|
14783
|
-
|
|
14784
|
-
address: t.PartialC<{
|
|
14785
|
-
address: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14786
|
-
option: t.UnionC<[t.Type<{
|
|
14787
|
-
[x: string]: unknown;
|
|
14788
|
-
}, {
|
|
14789
|
-
[x: string]: unknown;
|
|
14790
|
-
}, unknown>, t.UndefinedC]>;
|
|
14791
|
-
}>;
|
|
14792
|
-
amount: t.TypeC<{
|
|
14793
|
-
value: t.StringC;
|
|
14794
|
-
symbol: t.StringC;
|
|
14795
|
-
}>;
|
|
14796
|
-
}>, t.PartialC<{
|
|
14797
|
-
data: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14798
|
-
}>]>, t.PartialC<{
|
|
14799
|
-
tokenData: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14800
|
-
tokenQuantity: t.StringC;
|
|
14801
|
-
tokenType: t.StringC;
|
|
14802
|
-
}>, t.PartialC<{
|
|
14803
|
-
tokenId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14804
|
-
}>]>, t.TypeC<{
|
|
14805
|
-
tokenName: t.StringC;
|
|
14806
|
-
}>, t.PartialC<{
|
|
14807
|
-
tokenContractAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14808
|
-
decimals: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
14809
|
-
}>]>;
|
|
14810
|
-
}>]>>;
|
|
14811
|
-
}>, t.TypeC<{
|
|
14812
|
-
intentType: t.LiteralC<"transferToken">;
|
|
14813
|
-
}>]>, t.IntersectionC<[t.PartialC<{
|
|
14814
|
-
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
15609
|
+
stakingRequestId: t.StringC;
|
|
14815
15610
|
}>, t.PartialC<{
|
|
14816
|
-
|
|
14817
|
-
|
|
14818
|
-
|
|
14819
|
-
|
|
14820
|
-
gasLimit?: number | undefined;
|
|
14821
|
-
gasPrice?: number | undefined;
|
|
14822
|
-
} | {
|
|
14823
|
-
gasLimit?: number | undefined;
|
|
14824
|
-
maxFeePerGas?: number | undefined;
|
|
14825
|
-
maxPriorityFeePerGas?: number | undefined;
|
|
14826
|
-
}, {
|
|
14827
|
-
unit?: "baseUnit" | "cpu" | "ram" | undefined;
|
|
14828
|
-
formula?: "fixed" | "feeRate" | "perKB" | "custom" | "perVKB" | undefined;
|
|
14829
|
-
feeType?: "max" | "base" | "tip" | undefined;
|
|
14830
|
-
gasLimit?: number | undefined;
|
|
14831
|
-
gasPrice?: number | undefined;
|
|
14832
|
-
} | {
|
|
14833
|
-
gasLimit?: number | undefined;
|
|
14834
|
-
maxFeePerGas?: number | undefined;
|
|
14835
|
-
maxPriorityFeePerGas?: number | undefined;
|
|
14836
|
-
}, unknown>, t.UndefinedC]>;
|
|
14837
|
-
hopParams: t.UnionC<[t.Type<{
|
|
14838
|
-
paymentId: string | undefined;
|
|
14839
|
-
userReqSig: string | undefined;
|
|
14840
|
-
gasPriceMax: number | undefined;
|
|
14841
|
-
}, {
|
|
14842
|
-
paymentId: string | undefined;
|
|
14843
|
-
userReqSig: string | undefined;
|
|
14844
|
-
gasPriceMax: number | undefined;
|
|
14845
|
-
}, unknown>, t.UndefinedC]>;
|
|
14846
|
-
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
14847
|
-
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
14848
|
-
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
15611
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
15612
|
+
}>]>, t.TypeC<{
|
|
15613
|
+
intentType: t.LiteralC<"undelegate">;
|
|
15614
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
14849
15615
|
intentType: t.KeyofC<{
|
|
14850
15616
|
payment: t.LiteralC<"payment">;
|
|
14851
15617
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -21186,6 +21952,144 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
21186
21952
|
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
21187
21953
|
}>]>, t.TypeC<{
|
|
21188
21954
|
calldata: t.StringC;
|
|
21955
|
+
}>]>, t.TypeC<{
|
|
21956
|
+
intentType: t.LiteralC<"stakeWithCallData">;
|
|
21957
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
21958
|
+
intentType: t.KeyofC<{
|
|
21959
|
+
payment: t.LiteralC<"payment">;
|
|
21960
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
21961
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
21962
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
21963
|
+
fanout: t.LiteralC<"fanout">;
|
|
21964
|
+
stake: t.LiteralC<"stake">;
|
|
21965
|
+
unstake: t.LiteralC<"unstake">;
|
|
21966
|
+
delegate: t.LiteralC<"delegate">;
|
|
21967
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
21968
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
21969
|
+
claim: t.LiteralC<"claim">;
|
|
21970
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
21971
|
+
pledge: t.LiteralC<"pledge">;
|
|
21972
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
21973
|
+
vote: t.LiteralC<"vote">;
|
|
21974
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
21975
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
21976
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
21977
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
21978
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
21979
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
21980
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
21981
|
+
authorize: t.LiteralC<"authorize">;
|
|
21982
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
21983
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
21984
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
21985
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
21986
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
21987
|
+
customTx: t.LiteralC<"customTx">;
|
|
21988
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
21989
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
21990
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
21991
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
21992
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
21993
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
21994
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
21995
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
21996
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
21997
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
21998
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
21999
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
22000
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
22001
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
22002
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
22003
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
22004
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
22005
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
22006
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
22007
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
22008
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
22009
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
22010
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
22011
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
22012
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
22013
|
+
}>;
|
|
22014
|
+
}>, t.PartialC<{
|
|
22015
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
22016
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
22017
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
22018
|
+
}>]>, t.TypeC<{
|
|
22019
|
+
stakingRequestId: t.StringC;
|
|
22020
|
+
}>, t.PartialC<{
|
|
22021
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
22022
|
+
}>]>, t.TypeC<{
|
|
22023
|
+
calldata: t.StringC;
|
|
22024
|
+
}>]>, t.TypeC<{
|
|
22025
|
+
intentType: t.LiteralC<"switchValidatorWithCallData">;
|
|
22026
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
22027
|
+
intentType: t.KeyofC<{
|
|
22028
|
+
payment: t.LiteralC<"payment">;
|
|
22029
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
22030
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
22031
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
22032
|
+
fanout: t.LiteralC<"fanout">;
|
|
22033
|
+
stake: t.LiteralC<"stake">;
|
|
22034
|
+
unstake: t.LiteralC<"unstake">;
|
|
22035
|
+
delegate: t.LiteralC<"delegate">;
|
|
22036
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
22037
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
22038
|
+
claim: t.LiteralC<"claim">;
|
|
22039
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
22040
|
+
pledge: t.LiteralC<"pledge">;
|
|
22041
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
22042
|
+
vote: t.LiteralC<"vote">;
|
|
22043
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
22044
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
22045
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
22046
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
22047
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
22048
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
22049
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
22050
|
+
authorize: t.LiteralC<"authorize">;
|
|
22051
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
22052
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
22053
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
22054
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
22055
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
22056
|
+
customTx: t.LiteralC<"customTx">;
|
|
22057
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
22058
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
22059
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
22060
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
22061
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
22062
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
22063
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
22064
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
22065
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
22066
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
22067
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
22068
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
22069
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
22070
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
22071
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
22072
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
22073
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
22074
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
22075
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
22076
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
22077
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
22078
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
22079
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
22080
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
22081
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
22082
|
+
}>;
|
|
22083
|
+
}>, t.PartialC<{
|
|
22084
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
22085
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
22086
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
22087
|
+
}>]>, t.TypeC<{
|
|
22088
|
+
stakingRequestId: t.StringC;
|
|
22089
|
+
}>, t.PartialC<{
|
|
22090
|
+
source: t.KeyofC<typeof import(".").StakingRequestSourceEnum>;
|
|
22091
|
+
}>]>, t.TypeC<{
|
|
22092
|
+
calldata: t.StringC;
|
|
21189
22093
|
}>]>, t.TypeC<{
|
|
21190
22094
|
amount: t.TypeC<{
|
|
21191
22095
|
value: t.StringC;
|