@bitgo/public-types 6.5.1 → 6.6.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/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/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 +3 -0
- package/dist/src/schema/transactionRequest/intents/index.js +3 -0
- package/dist/src/schema/transactionRequest/intents/index.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/intent.d.ts +412 -1
- package/dist/src/schema/transactionRequest/intents/intent.js +12 -0
- 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/solCloseAssociatedTokenAccountIntent.js +1 -1
- package/dist/src/schema/transactionRequest/intents/solCloseAssociatedTokenAccountIntent.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/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 +1082 -260
- 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/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/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 +3 -0
- package/src/schema/transactionRequest/intents/intent.ts +12 -0
- package/src/schema/transactionRequest/intents/paymentIntent.ts +3 -0
- package/src/schema/transactionRequest/intents/solCloseAssociatedTokenAccountIntent.ts +12 -5
- package/src/schema/transactionRequest/intents/stakeClaimRewardsIntent.ts +6 -0
- package/src/schema/transactionRequest/intents/stakeIntent.ts +1 -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
|
@@ -1678,6 +1678,73 @@ export declare const TransactionIntent: t.UnionC<[t.IntersectionC<[t.Intersectio
|
|
|
1678
1678
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1679
1679
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1680
1680
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
1681
|
+
}>]>, t.TypeC<{
|
|
1682
|
+
stakingRequestId: t.StringC;
|
|
1683
|
+
}>, t.PartialC<{
|
|
1684
|
+
source: t.KeyofC<typeof import("./stakingRequestSource").StakingRequestSourceEnum>;
|
|
1685
|
+
}>]>, t.TypeC<{
|
|
1686
|
+
intentType: t.LiteralC<"claim">;
|
|
1687
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
1688
|
+
intentType: t.KeyofC<{
|
|
1689
|
+
payment: t.LiteralC<"payment">;
|
|
1690
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
1691
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
1692
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
1693
|
+
fanout: t.LiteralC<"fanout">;
|
|
1694
|
+
stake: t.LiteralC<"stake">;
|
|
1695
|
+
unstake: t.LiteralC<"unstake">;
|
|
1696
|
+
delegate: t.LiteralC<"delegate">;
|
|
1697
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
1698
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
1699
|
+
claim: t.LiteralC<"claim">;
|
|
1700
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
1701
|
+
pledge: t.LiteralC<"pledge">;
|
|
1702
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
1703
|
+
vote: t.LiteralC<"vote">;
|
|
1704
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
1705
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
1706
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
1707
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
1708
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
1709
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
1710
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
1711
|
+
authorize: t.LiteralC<"authorize">;
|
|
1712
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
1713
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
1714
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
1715
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
1716
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
1717
|
+
customTx: t.LiteralC<"customTx">;
|
|
1718
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
1719
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
1720
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
1721
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
1722
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
1723
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
1724
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
1725
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
1726
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
1727
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
1728
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
1729
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
1730
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
1731
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
1732
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
1733
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
1734
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
1735
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
1736
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
1737
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
1738
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
1739
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
1740
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
1741
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
1742
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
1743
|
+
}>;
|
|
1744
|
+
}>, t.PartialC<{
|
|
1745
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1746
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
1747
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
1681
1748
|
}>]>, t.TypeC<{
|
|
1682
1749
|
recipients: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
1683
1750
|
address: t.PartialC<{
|
|
@@ -2804,6 +2871,73 @@ export declare const TransactionIntent: t.UnionC<[t.IntersectionC<[t.Intersectio
|
|
|
2804
2871
|
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
2805
2872
|
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
2806
2873
|
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
2874
|
+
}>]>, t.TypeC<{
|
|
2875
|
+
stakingRequestId: t.StringC;
|
|
2876
|
+
}>, t.PartialC<{
|
|
2877
|
+
source: t.KeyofC<typeof import("./stakingRequestSource").StakingRequestSourceEnum>;
|
|
2878
|
+
}>]>, t.TypeC<{
|
|
2879
|
+
intentType: t.LiteralC<"delegate">;
|
|
2880
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
2881
|
+
intentType: t.KeyofC<{
|
|
2882
|
+
payment: t.LiteralC<"payment">;
|
|
2883
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
2884
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
2885
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
2886
|
+
fanout: t.LiteralC<"fanout">;
|
|
2887
|
+
stake: t.LiteralC<"stake">;
|
|
2888
|
+
unstake: t.LiteralC<"unstake">;
|
|
2889
|
+
delegate: t.LiteralC<"delegate">;
|
|
2890
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
2891
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
2892
|
+
claim: t.LiteralC<"claim">;
|
|
2893
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
2894
|
+
pledge: t.LiteralC<"pledge">;
|
|
2895
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
2896
|
+
vote: t.LiteralC<"vote">;
|
|
2897
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
2898
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
2899
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
2900
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
2901
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
2902
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
2903
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
2904
|
+
authorize: t.LiteralC<"authorize">;
|
|
2905
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
2906
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
2907
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
2908
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
2909
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
2910
|
+
customTx: t.LiteralC<"customTx">;
|
|
2911
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
2912
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
2913
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
2914
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
2915
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
2916
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
2917
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
2918
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
2919
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
2920
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
2921
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
2922
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
2923
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
2924
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
2925
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
2926
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
2927
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
2928
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
2929
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
2930
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
2931
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
2932
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
2933
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
2934
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
2935
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
2936
|
+
}>;
|
|
2937
|
+
}>, t.PartialC<{
|
|
2938
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
2939
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
2940
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
2807
2941
|
}>]>, t.TypeC<{
|
|
2808
2942
|
intentType: t.LiteralC<"acceleration">;
|
|
2809
2943
|
txid: t.StringC;
|
|
@@ -3501,7 +3635,146 @@ export declare const TransactionIntent: t.UnionC<[t.IntersectionC<[t.Intersectio
|
|
|
3501
3635
|
}, unknown>, t.UndefinedC]>;
|
|
3502
3636
|
receiveAddress: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3503
3637
|
senderAddressIndex: t.UnionC<[t.Type<number, number, unknown>, t.UndefinedC]>;
|
|
3504
|
-
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3638
|
+
}>]>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3639
|
+
intentType: t.KeyofC<{
|
|
3640
|
+
payment: t.LiteralC<"payment">;
|
|
3641
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
3642
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
3643
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
3644
|
+
fanout: t.LiteralC<"fanout">;
|
|
3645
|
+
stake: t.LiteralC<"stake">;
|
|
3646
|
+
unstake: t.LiteralC<"unstake">;
|
|
3647
|
+
delegate: t.LiteralC<"delegate">;
|
|
3648
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
3649
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
3650
|
+
claim: t.LiteralC<"claim">;
|
|
3651
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
3652
|
+
pledge: t.LiteralC<"pledge">;
|
|
3653
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
3654
|
+
vote: t.LiteralC<"vote">;
|
|
3655
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
3656
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
3657
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
3658
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
3659
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
3660
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
3661
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
3662
|
+
authorize: t.LiteralC<"authorize">;
|
|
3663
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
3664
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
3665
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
3666
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
3667
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
3668
|
+
customTx: t.LiteralC<"customTx">;
|
|
3669
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
3670
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
3671
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
3672
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
3673
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
3674
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
3675
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
3676
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
3677
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
3678
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
3679
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
3680
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
3681
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
3682
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
3683
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
3684
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
3685
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
3686
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
3687
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
3688
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
3689
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
3690
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
3691
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
3692
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
3693
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
3694
|
+
}>;
|
|
3695
|
+
}>, t.PartialC<{
|
|
3696
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3697
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3698
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
3699
|
+
}>]>, t.TypeC<{
|
|
3700
|
+
stakingRequestId: t.StringC;
|
|
3701
|
+
}>, t.PartialC<{
|
|
3702
|
+
source: t.KeyofC<typeof import("./stakingRequestSource").StakingRequestSourceEnum>;
|
|
3703
|
+
}>]>, t.TypeC<{
|
|
3704
|
+
amount: t.TypeC<{
|
|
3705
|
+
value: t.StringC;
|
|
3706
|
+
symbol: t.StringC;
|
|
3707
|
+
}>;
|
|
3708
|
+
}>, t.TypeC<{
|
|
3709
|
+
intentType: t.LiteralC<"stakeClaimRewards">;
|
|
3710
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3711
|
+
intentType: t.KeyofC<{
|
|
3712
|
+
payment: t.LiteralC<"payment">;
|
|
3713
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
3714
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
3715
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
3716
|
+
fanout: t.LiteralC<"fanout">;
|
|
3717
|
+
stake: t.LiteralC<"stake">;
|
|
3718
|
+
unstake: t.LiteralC<"unstake">;
|
|
3719
|
+
delegate: t.LiteralC<"delegate">;
|
|
3720
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
3721
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
3722
|
+
claim: t.LiteralC<"claim">;
|
|
3723
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
3724
|
+
pledge: t.LiteralC<"pledge">;
|
|
3725
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
3726
|
+
vote: t.LiteralC<"vote">;
|
|
3727
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
3728
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
3729
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
3730
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
3731
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
3732
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
3733
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
3734
|
+
authorize: t.LiteralC<"authorize">;
|
|
3735
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
3736
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
3737
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
3738
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
3739
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
3740
|
+
customTx: t.LiteralC<"customTx">;
|
|
3741
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
3742
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
3743
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
3744
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
3745
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
3746
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
3747
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
3748
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
3749
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
3750
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
3751
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
3752
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
3753
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
3754
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
3755
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
3756
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
3757
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
3758
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
3759
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
3760
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
3761
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
3762
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
3763
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
3764
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
3765
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
3766
|
+
}>;
|
|
3767
|
+
}>, t.PartialC<{
|
|
3768
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3769
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
3770
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
3771
|
+
}>]>, t.TypeC<{
|
|
3772
|
+
stakingRequestId: t.StringC;
|
|
3773
|
+
}>, t.PartialC<{
|
|
3774
|
+
source: t.KeyofC<typeof import("./stakingRequestSource").StakingRequestSourceEnum>;
|
|
3775
|
+
}>]>, t.TypeC<{
|
|
3776
|
+
intentType: t.LiteralC<"undelegate">;
|
|
3777
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3505
3778
|
intentType: t.KeyofC<{
|
|
3506
3779
|
payment: t.LiteralC<"payment">;
|
|
3507
3780
|
transferToken: t.LiteralC<"transferToken">;
|
|
@@ -9842,6 +10115,144 @@ export declare const TransactionIntent: t.UnionC<[t.IntersectionC<[t.Intersectio
|
|
|
9842
10115
|
source: t.KeyofC<typeof import("./stakingRequestSource").StakingRequestSourceEnum>;
|
|
9843
10116
|
}>]>, t.TypeC<{
|
|
9844
10117
|
calldata: t.StringC;
|
|
10118
|
+
}>]>, t.TypeC<{
|
|
10119
|
+
intentType: t.LiteralC<"stakeWithCallData">;
|
|
10120
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10121
|
+
intentType: t.KeyofC<{
|
|
10122
|
+
payment: t.LiteralC<"payment">;
|
|
10123
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
10124
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
10125
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
10126
|
+
fanout: t.LiteralC<"fanout">;
|
|
10127
|
+
stake: t.LiteralC<"stake">;
|
|
10128
|
+
unstake: t.LiteralC<"unstake">;
|
|
10129
|
+
delegate: t.LiteralC<"delegate">;
|
|
10130
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
10131
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
10132
|
+
claim: t.LiteralC<"claim">;
|
|
10133
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
10134
|
+
pledge: t.LiteralC<"pledge">;
|
|
10135
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
10136
|
+
vote: t.LiteralC<"vote">;
|
|
10137
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
10138
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
10139
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
10140
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
10141
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
10142
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
10143
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
10144
|
+
authorize: t.LiteralC<"authorize">;
|
|
10145
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
10146
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
10147
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
10148
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
10149
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
10150
|
+
customTx: t.LiteralC<"customTx">;
|
|
10151
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
10152
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
10153
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
10154
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
10155
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
10156
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
10157
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
10158
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
10159
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
10160
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
10161
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
10162
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
10163
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
10164
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
10165
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
10166
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
10167
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
10168
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
10169
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
10170
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
10171
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
10172
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
10173
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
10174
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
10175
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
10176
|
+
}>;
|
|
10177
|
+
}>, t.PartialC<{
|
|
10178
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10179
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10180
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10181
|
+
}>]>, t.TypeC<{
|
|
10182
|
+
stakingRequestId: t.StringC;
|
|
10183
|
+
}>, t.PartialC<{
|
|
10184
|
+
source: t.KeyofC<typeof import("./stakingRequestSource").StakingRequestSourceEnum>;
|
|
10185
|
+
}>]>, t.TypeC<{
|
|
10186
|
+
calldata: t.StringC;
|
|
10187
|
+
}>]>, t.TypeC<{
|
|
10188
|
+
intentType: t.LiteralC<"switchValidatorWithCallData">;
|
|
10189
|
+
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
10190
|
+
intentType: t.KeyofC<{
|
|
10191
|
+
payment: t.LiteralC<"payment">;
|
|
10192
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
10193
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
10194
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
10195
|
+
fanout: t.LiteralC<"fanout">;
|
|
10196
|
+
stake: t.LiteralC<"stake">;
|
|
10197
|
+
unstake: t.LiteralC<"unstake">;
|
|
10198
|
+
delegate: t.LiteralC<"delegate">;
|
|
10199
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
10200
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
10201
|
+
claim: t.LiteralC<"claim">;
|
|
10202
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
10203
|
+
pledge: t.LiteralC<"pledge">;
|
|
10204
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
10205
|
+
vote: t.LiteralC<"vote">;
|
|
10206
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
10207
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
10208
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
10209
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
10210
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
10211
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
10212
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
10213
|
+
authorize: t.LiteralC<"authorize">;
|
|
10214
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
10215
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
10216
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
10217
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
10218
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
10219
|
+
customTx: t.LiteralC<"customTx">;
|
|
10220
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
10221
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
10222
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
10223
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
10224
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
10225
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
10226
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
10227
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
10228
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
10229
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
10230
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
10231
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
10232
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
10233
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
10234
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
10235
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
10236
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
10237
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
10238
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
10239
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
10240
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
10241
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
10242
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
10243
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
10244
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
10245
|
+
}>;
|
|
10246
|
+
}>, t.PartialC<{
|
|
10247
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10248
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
10249
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
10250
|
+
}>]>, t.TypeC<{
|
|
10251
|
+
stakingRequestId: t.StringC;
|
|
10252
|
+
}>, t.PartialC<{
|
|
10253
|
+
source: t.KeyofC<typeof import("./stakingRequestSource").StakingRequestSourceEnum>;
|
|
10254
|
+
}>]>, t.TypeC<{
|
|
10255
|
+
calldata: t.StringC;
|
|
9845
10256
|
}>]>, t.TypeC<{
|
|
9846
10257
|
amount: t.TypeC<{
|
|
9847
10258
|
value: t.StringC;
|
|
@@ -39,6 +39,7 @@ const babyWithdrawRewardIntent_1 = require("./babyWithdrawRewardIntent");
|
|
|
39
39
|
const bscDelegateIntent_1 = require("./bscDelegateIntent");
|
|
40
40
|
const bscUndelegateIntent_1 = require("./bscUndelegateIntent");
|
|
41
41
|
const bscWithdrawUndelegateIntent_1 = require("./bscWithdrawUndelegateIntent");
|
|
42
|
+
const claimIntent_1 = require("./claimIntent");
|
|
42
43
|
const vetUnstakingIntent_1 = require("./vetUnstakingIntent");
|
|
43
44
|
const defiDepositIntent_1 = require("./defiDepositIntent");
|
|
44
45
|
const defiRedeemIntent_1 = require("./defiRedeemIntent");
|
|
@@ -114,6 +115,8 @@ const baseIntent_1 = require("./baseIntent");
|
|
|
114
115
|
const dotConsolidateIntent_1 = require("./dotConsolidateIntent");
|
|
115
116
|
const solCloseAssociatedTokenAccountIntent_1 = require("./solCloseAssociatedTokenAccountIntent");
|
|
116
117
|
const baseStakeIntentWithCalldata_1 = require("./baseStakeIntentWithCalldata");
|
|
118
|
+
const stakeWithCallDataIntent_1 = require("./stakeWithCallDataIntent");
|
|
119
|
+
const switchValidatorWithCallDataIntent_1 = require("./switchValidatorWithCallDataIntent");
|
|
117
120
|
const coredaoDelegateIntent_1 = require("./coredaoDelegateIntent");
|
|
118
121
|
const coredaoUndelegateIntent_1 = require("./coredaoUndelegateIntent");
|
|
119
122
|
const coredaoClaimIntent_1 = require("./coredaoClaimIntent");
|
|
@@ -152,6 +155,9 @@ const xdcUnstakingIntent_1 = require("./xdcUnstakingIntent");
|
|
|
152
155
|
const xdcUnstakingIntent_2 = require("./xdcUnstakingIntent");
|
|
153
156
|
const hypeevmBridgeFundsIntent_1 = require("./hypeevmBridgeFundsIntent");
|
|
154
157
|
const hypeevmEnableBridgingIntent_1 = require("./hypeevmEnableBridgingIntent");
|
|
158
|
+
const delegateIntent_1 = require("./delegateIntent");
|
|
159
|
+
const undelegateIntent_1 = require("./undelegateIntent");
|
|
160
|
+
const stakeClaimRewardsIntent_1 = require("./stakeClaimRewardsIntent");
|
|
155
161
|
exports.TransactionIntent = t.union([
|
|
156
162
|
adaConsolidateIntent_1.AdaConsolidateIntent,
|
|
157
163
|
adaPaymentIntent_1.AdaPaymentIntent,
|
|
@@ -174,6 +180,7 @@ exports.TransactionIntent = t.union([
|
|
|
174
180
|
cantonTransferAcknowledgeIntent_1.CantonTransferAcknowledgeIntent,
|
|
175
181
|
cantonTransferOfferWithdrawnIntent_1.CantonTransferOfferWithdrawnIntent,
|
|
176
182
|
cantonTransferRejectIntent_1.CantonTransferRejectIntent,
|
|
183
|
+
claimIntent_1.ClaimIntent,
|
|
177
184
|
cosmosPaymentIntent_1.CosmosPaymentIntent,
|
|
178
185
|
cosmosStakeIntent_1.CosmosStakeIntent,
|
|
179
186
|
cosmosSwitchValidatorIntent_1.CosmosSwitchValidatorIntent,
|
|
@@ -187,6 +194,7 @@ exports.TransactionIntent = t.union([
|
|
|
187
194
|
dotStakingIntent_1.DotStakingIntent,
|
|
188
195
|
dotUnstakingIntent_1.DotUnstakingIntent,
|
|
189
196
|
dotWithdrawStakeIntent_1.DotWithdrawStakeIntent,
|
|
197
|
+
delegateIntent_1.DelegateIntent,
|
|
190
198
|
ethAccelerationIntent_1.EthAccelerationIntent,
|
|
191
199
|
ethConsolidateIntent_1.EthConsolidateIntent,
|
|
192
200
|
ethConsolidateTokenIntent_1.EthConsolidateTokenIntent,
|
|
@@ -194,6 +202,8 @@ exports.TransactionIntent = t.union([
|
|
|
194
202
|
ethPaymentIntent_1.EthPaymentIntent,
|
|
195
203
|
ethStakingIntent_1.EthStakingIntent,
|
|
196
204
|
ethTransferTokenIntent_1.EthTransferTokenIntent,
|
|
205
|
+
stakeClaimRewardsIntent_1.StakeClaimRewardsIntent,
|
|
206
|
+
undelegateIntent_1.UndelegateIntent,
|
|
197
207
|
feeAddressTransferIntent_1.FeeAddressTransferIntent,
|
|
198
208
|
hbarUpdateAccountIntent_1.HbarUpdateAccountIntent,
|
|
199
209
|
hypeevmBridgeFundsIntent_1.HypeevmBridgeFundsIntent,
|
|
@@ -268,6 +278,8 @@ exports.TransactionIntent = t.union([
|
|
|
268
278
|
vetWithdrawStakeIntent_1.VetWithdrawStakeIntent,
|
|
269
279
|
walletRecoveryIntent_1.WalletRecoveryIntent,
|
|
270
280
|
baseStakeIntentWithCalldata_1.BaseStakeIntentWithCalldata,
|
|
281
|
+
stakeWithCallDataIntent_1.StakeWithCallDataIntent,
|
|
282
|
+
switchValidatorWithCallDataIntent_1.SwitchValidatorWithCallDataIntent,
|
|
271
283
|
coredaoDelegateIntent_1.CoreDaoDelegateIntent,
|
|
272
284
|
coredaoUndelegateIntent_1.CoreDaoUndelegateIntent,
|
|
273
285
|
coredaoClaimIntent_1.CoreDaoClaimIntent,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"intent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/intent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,iEAA8D;AAC9D,yDAAsD;AACtD,qDAAkD;AAClD,uEAAoE;AACpE,2DAAwD;AACxD,2DAAwD;AACxD,uDAAoD;AACpD,2DAAwD;AACxD,6DAA0D;AAC1D,mFAAgF;AAChF,yEAAsE;AACtE,2DAAwD;AACxD,+DAA4D;AAC5D,+EAA4E;AAC5E,6DAG8B;AAC9B,2DAAwD;AACxD,yDAAsD;AACtD,+DAA4D;AAC5D,2DAAwD;AACxD,+EAA4E;AAC5E,+DAA4D;AAC5D,iEAA8D;AAC9D,qEAAkE;AAClE,yDAAsD;AACtD,yDAAsD;AACtD,6DAA0D;AAC1D,qEAAkE;AAClE,mEAAgE;AAChE,6DAA0D;AAC1D,yDAAsD;AACtD,yDAAsD;AACtD,yEAAsE;AACtE,uEAAoE;AACpE,2EAAwE;AACxE,yDAAsD;AACtD,yDAAsD;AACtD,uDAAoD;AACpD,qEAAkE;AAClE,iEAA8D;AAC9D,uDAAoD;AACpD,2DAAwD;AACxD,6DAA0D;AAC1D,yEAAsE;AACtE,6EAA0E;AAC1E,yDAAsD;AACtD,6DAA0D;AAC1D,+DAA4D;AAC5D,6DAA0D;AAC1D,qDAAkD;AAClD,mGAAgG;AAChG,2DAAwD;AACxD,+DAA4D;AAC5D,2DAAwD;AACxD,yDAAsD;AACtD,qDAAkD;AAClD,yDAAsD;AACtD,6EAA0E;AAC1E,2DAAwD;AACxD,yDAAsD;AACtD,6DAA0D;AAC1D,6EAA0E;AAC1E,qEAAkE;AAClE,qDAAkD;AAClD,yEAAsE;AACtE,qEAAkE;AAClE,yDAAsD;AACtD,+DAA4D;AAC5D,2DAAwD;AACxD,uFAAoF;AACpF,2FAAwF;AACxF,yDAAsD;AACtD,yFAAsF;AACtF,6FAA0F;AAC1F,+DAA4D;AAC5D,iEAA8D;AAC9D,iEAA8D;AAC9D,iEAA8D;AAC9D,6EAA0E;AAC1E,yDAAsD;AACtD,yDAAsD;AACtD,iEAA8D;AAC9D,yEAAsE;AACtE,iEAA8D;AAC9D,2EAAwE;AACxE,qEAAkE;AAClE,6CAA0C;AAC1C,iEAA8D;AAC9D,iGAA8F;AAC9F,+EAA4E;AAC5E,mEAAgE;AAChE,uEAAoE;AACpE,6DAA0D;AAC1D,6DAA0D;AAC1D,6DAA0D;AAC1D,+DAA4D;AAC5D,qEAAkE;AAClE,iEAA8D;AAC9D,6DAA0D;AAC1D,6DAA0D;AAC1D,yDAAsD;AACtD,2DAAwD;AACxD,6EAA0E;AAC1E,qFAAkF;AAClF,qEAAkE;AAClE,qEAAkE;AAClE,+DAA4D;AAC5D,qEAAkE;AAClE,+DAA4D;AAC5D,6EAA0E;AAC1E,uFAAoF;AACpF,6FAA0F;AAC1F,6EAA0E;AAC1E,uEAAoE;AACpE,2EAAwE;AACxE,mEAAgE;AAChE,2EAAwE;AACxE,uDAAoD;AACpD,+EAA4E;AAC5E,2DAAwD;AACxD,mDAAgD;AAChD,uFAAoF;AACpF,yDAAwD;AACxD,yDAAsD;AACtD,6DAAuD;AACvD,6DAAyD;AACzD,yEAAsE;AACtE,+EAA4E;
|
|
1
|
+
{"version":3,"file":"intent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/intent.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paymentIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/paymentIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAAoE;AACpE,6CAA2C;AAE9B,QAAA,aAAa,GAAG,CAAC,CAAC,YAAY,CAAC;IAC1C,uBAAU;IACV,qCAAwB;IACxB,CAAC,CAAC,KAAK,CAAC;QACN,CAAC,CAAC,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"paymentIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/paymentIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAAoE;AACpE,6CAA2C;AAE9B,QAAA,aAAa,GAAG,CAAC,CAAC,YAAY,CAAC;IAC1C,uBAAU;IACV,qCAAwB;IACxB,CAAC,CAAC,KAAK,CAAC;QACN,CAAC,CAAC,IAAI,CAAC;YAEL,UAAU,EAAE,wBAAW,CAAC,OAAO;SAChC,CAAC;QACF,CAAC,CAAC,IAAI,CAAC;YAEL,UAAU,EAAE,wBAAW,CAAC,OAAO;YAE/B,iBAAiB,EAAE,CAAC,CAAC,OAAO;SAC7B,CAAC;KACH,CAAC;CACH,CAAC,CAAC"}
|
|
@@ -43,7 +43,7 @@ function isSolCloseAssociatedTokenAccountRecipient(recipient) {
|
|
|
43
43
|
}
|
|
44
44
|
return true;
|
|
45
45
|
}
|
|
46
|
-
const solCloseAssociatedTokenAccountRecipientEntry = t.brand(recipientEntry_1.RecipientEntry, isSolCloseAssociatedTokenAccountRecipient, "SolCloseAssociatedTokenAccountRecipientEntry");
|
|
46
|
+
const solCloseAssociatedTokenAccountRecipientEntry = t.brand(recipientEntry_1.RecipientEntry, ((recipient) => isSolCloseAssociatedTokenAccountRecipient(recipient)), "SolCloseAssociatedTokenAccountRecipientEntry");
|
|
47
47
|
const solCloseAssociatedTokenAccountRecipients = t.brand(t.array(solCloseAssociatedTokenAccountRecipientEntry), ((recipients) => recipients.length > 0), "SolCloseAssociatedTokenAccountRecipients");
|
|
48
48
|
exports.SolCloseAssociatedTokenAccountIntent = t.intersection([
|
|
49
49
|
baseIntent_1.BaseIntent,
|
package/dist/src/schema/transactionRequest/intents/solCloseAssociatedTokenAccountIntent.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"solCloseAssociatedTokenAccountIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/solCloseAssociatedTokenAccountIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAE3B,6CAA0C;AAC1C,6CAA2C;AAC3C,qDAAkD;AAClD,uDAAoD;AAoCpD,SAAS,yCAAyC,CAChD,SAAyB;IAEzB,IAAI,SAAS,CAAC,MAAM,CAAC,KAAK,KAAK,GAAG,EAAE,CAAC;QACnC,OAAO,KAAK,CAAC;IACf,CAAC;IACD,MAAM,eAAe,GAAG,SAAoC,CAAC;IAG7D,IAAI,WAAW,IAAI,eAAe,IAAI,WAAW,IAAI,eAAe,EAAE,CAAC;QACrE,OAAO,KAAK,CAAC;IACf,CAAC;IACD,MAAM,aAAa,GAAG,SAAS,CAAC,OAAgC,CAAC;IACjE,IAAI,OAAO,aAAa,EAAE,OAAO,KAAK,QAAQ,EAAE,CAAC;QAC/C,OAAO,KAAK,CAAC;IACf,CAAC;IACD,OAAO,IAAI,CAAC;AACd,CAAC;
|
|
1
|
+
{"version":3,"file":"solCloseAssociatedTokenAccountIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/solCloseAssociatedTokenAccountIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAE3B,6CAA0C;AAC1C,6CAA2C;AAC3C,qDAAkD;AAClD,uDAAoD;AAoCpD,SAAS,yCAAyC,CAChD,SAAyB;IAEzB,IAAI,SAAS,CAAC,MAAM,CAAC,KAAK,KAAK,GAAG,EAAE,CAAC;QACnC,OAAO,KAAK,CAAC;IACf,CAAC;IACD,MAAM,eAAe,GAAG,SAAoC,CAAC;IAG7D,IAAI,WAAW,IAAI,eAAe,IAAI,WAAW,IAAI,eAAe,EAAE,CAAC;QACrE,OAAO,KAAK,CAAC;IACf,CAAC;IACD,MAAM,aAAa,GAAG,SAAS,CAAC,OAAgC,CAAC;IACjE,IAAI,OAAO,aAAa,EAAE,OAAO,KAAK,QAAQ,EAAE,CAAC;QAC/C,OAAO,KAAK,CAAC;IACf,CAAC;IACD,OAAO,IAAI,CAAC;AACd,CAAC;AA4BD,MAAM,4CAA4C,GAAG,CAAC,CAAC,KAAK,CAC1D,+BAAc,EACd,CAAC,CACC,SAAgC,EAIhC,EAAE,CAAC,yCAAyC,CAAC,SAAS,CAAC,CAKxD,EACD,8CAA8C,CAC/C,CAAC;AAMF,MAAM,wCAAwC,GAAG,CAAC,CAAC,KAAK,CACtD,CAAC,CAAC,KAAK,CAAC,4CAA4C,CAAC,EACrD,CAAC,CAAC,UAAwD,EAAE,EAAE,CAC5D,UAAU,CAAC,MAAM,GAAG,CAAC,CAKtB,EACD,0CAA0C,CAC3C,CAAC;AAWW,QAAA,oCAAoC,GAAG,CAAC,CAAC,YAAY,CAAC;IACjE,uBAAU;IACV,iCAAe;IACf,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,2BAA2B;QACnD,UAAU,EAAE,wCAAwC;KACrD,CAAC;CACH,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stakeClaimRewardsIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/stakeClaimRewardsIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAA2C;AAC3C,uDAAoD;AACpD,6CAAoD;
|
|
1
|
+
{"version":3,"file":"stakeClaimRewardsIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/stakeClaimRewardsIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAA2C;AAC3C,uDAAoD;AACpD,6CAAoD;AAOvC,QAAA,uBAAuB,GAAG,CAAC,CAAC,YAAY,CAAC;IACpD,iCAAe;IACf,iCAAoB;IACpB,CAAC,CAAC,IAAI,CAAC;QAEL,UAAU,EAAE,wBAAW,CAAC,iBAAiB;KAC1C,CAAC;CACH,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stakeIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/stakeIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,uDAAoD;AACpD,6CAA2C;AAE9B,QAAA,WAAW,GAAG,CAAC,CAAC,YAAY,CAAC;IACxC,iCAAe;IACf,CAAC,CAAC,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"stakeIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/stakeIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,uDAAoD;AACpD,6CAA2C;AAE9B,QAAA,WAAW,GAAG,CAAC,CAAC,YAAY,CAAC;IACxC,iCAAe;IACf,CAAC,CAAC,IAAI,CAAC;QAEL,UAAU,EAAE,wBAAW,CAAC,KAAK;KAC9B,CAAC;CACH,CAAC,CAAC"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import * as t from "io-ts";
|
|
2
|
+
export declare const StakeWithCallDataIntent: t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3
|
+
intentType: t.KeyofC<{
|
|
4
|
+
payment: t.LiteralC<"payment">;
|
|
5
|
+
transferToken: t.LiteralC<"transferToken">;
|
|
6
|
+
consolidate: t.LiteralC<"consolidate">;
|
|
7
|
+
consolidateToken: t.LiteralC<"consolidateToken">;
|
|
8
|
+
fanout: t.LiteralC<"fanout">;
|
|
9
|
+
stake: t.LiteralC<"stake">;
|
|
10
|
+
unstake: t.LiteralC<"unstake">;
|
|
11
|
+
delegate: t.LiteralC<"delegate">;
|
|
12
|
+
undelegate: t.LiteralC<"undelegate">;
|
|
13
|
+
switchValidator: t.LiteralC<"switchValidator">;
|
|
14
|
+
claim: t.LiteralC<"claim">;
|
|
15
|
+
stakeClaimRewards: t.LiteralC<"stakeClaimRewards">;
|
|
16
|
+
pledge: t.LiteralC<"pledge">;
|
|
17
|
+
voteDelegation: t.LiteralC<"voteDelegation">;
|
|
18
|
+
vote: t.LiteralC<"vote">;
|
|
19
|
+
createAccount: t.LiteralC<"createAccount">;
|
|
20
|
+
updateAccount: t.LiteralC<"updateAccount">;
|
|
21
|
+
addTrustLine: t.LiteralC<"addTrustLine">;
|
|
22
|
+
removeTrustLine: t.LiteralC<"removeTrustLine">;
|
|
23
|
+
signMessage: t.LiteralC<"signMessage">;
|
|
24
|
+
signTypedStructuredData: t.LiteralC<"signTypedStructuredData">;
|
|
25
|
+
enableToken: t.LiteralC<"enableToken">;
|
|
26
|
+
authorize: t.LiteralC<"authorize">;
|
|
27
|
+
acceleration: t.LiteralC<"acceleration">;
|
|
28
|
+
fillNonce: t.LiteralC<"fillNonce">;
|
|
29
|
+
walletRecovery: t.LiteralC<"walletRecovery">;
|
|
30
|
+
contractCall: t.LiteralC<"contractCall">;
|
|
31
|
+
deactivate: t.LiteralC<"deactivate">;
|
|
32
|
+
customTx: t.LiteralC<"customTx">;
|
|
33
|
+
closeAssociatedTokenAccount: t.LiteralC<"closeAssociatedTokenAccount">;
|
|
34
|
+
stakeWithCallData: t.LiteralC<"stakeWithCallData">;
|
|
35
|
+
unstakeWithCallData: t.LiteralC<"unstakeWithCallData">;
|
|
36
|
+
switchValidatorWithCallData: t.LiteralC<"switchValidatorWithCallData">;
|
|
37
|
+
feeAddressTransfer: t.LiteralC<"feeAddressTransfer">;
|
|
38
|
+
tokenApproval: t.LiteralC<"tokenApproval">;
|
|
39
|
+
transferStake: t.LiteralC<"transferStake">;
|
|
40
|
+
validatorRegistration: t.LiteralC<"validatorRegistration">;
|
|
41
|
+
increaseStake: t.LiteralC<"increaseStake">;
|
|
42
|
+
decreaseStake: t.LiteralC<"decreaseStake">;
|
|
43
|
+
signalExit: t.LiteralC<"signalExit">;
|
|
44
|
+
withdrawStake: t.LiteralC<"withdrawStake">;
|
|
45
|
+
spotTransfer: t.LiteralC<"spotTransfer">;
|
|
46
|
+
bridgeFunds: t.LiteralC<"bridgeFunds">;
|
|
47
|
+
enableBridging: t.LiteralC<"enableBridging">;
|
|
48
|
+
goUnstake: t.LiteralC<"goUnstake">;
|
|
49
|
+
createBtcDelegation: t.LiteralC<"createBtcDelegation">;
|
|
50
|
+
transferAccept: t.LiteralC<"transferAccept">;
|
|
51
|
+
transferReject: t.LiteralC<"transferReject">;
|
|
52
|
+
transferAcknowledge: t.LiteralC<"transferAcknowledge">;
|
|
53
|
+
transferOfferWithdrawn: t.LiteralC<"transferOfferWithdrawn">;
|
|
54
|
+
"defi-deposit": t.LiteralC<"defi-deposit">;
|
|
55
|
+
"defi-redeem": t.LiteralC<"defi-redeem">;
|
|
56
|
+
delegateResource: t.LiteralC<"delegateResource">;
|
|
57
|
+
undelegateResource: t.LiteralC<"undelegateResource">;
|
|
58
|
+
}>;
|
|
59
|
+
}>, t.PartialC<{
|
|
60
|
+
sequenceId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
61
|
+
comment: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
62
|
+
nonce: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
63
|
+
}>]>, t.TypeC<{
|
|
64
|
+
stakingRequestId: t.StringC;
|
|
65
|
+
}>, t.PartialC<{
|
|
66
|
+
source: t.KeyofC<typeof import("./stakingRequestSource").StakingRequestSourceEnum>;
|
|
67
|
+
}>]>, t.TypeC<{
|
|
68
|
+
calldata: t.StringC;
|
|
69
|
+
}>]>, t.TypeC<{
|
|
70
|
+
intentType: t.LiteralC<"stakeWithCallData">;
|
|
71
|
+
}>]>;
|
|
72
|
+
export type StakeWithCallDataIntent = t.TypeOf<typeof StakeWithCallDataIntent>;
|