@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.
Files changed (100) hide show
  1. package/dist/src/schema/transactionRequest/intents/accelerationIntent.js.map +1 -1
  2. package/dist/src/schema/transactionRequest/intents/accountBaseBuildOptions.js.map +1 -1
  3. package/dist/src/schema/transactionRequest/intents/accountBaseConsolidateIntent.js.map +1 -1
  4. package/dist/src/schema/transactionRequest/intents/atomPaymentIntent.js.map +1 -1
  5. package/dist/src/schema/transactionRequest/intents/atomStakeIntent.js.map +1 -1
  6. package/dist/src/schema/transactionRequest/intents/atomUnstakeIntent.js.map +1 -1
  7. package/dist/src/schema/transactionRequest/intents/atomWithdrawIntent.js.map +1 -1
  8. package/dist/src/schema/transactionRequest/intents/baseBridgeFundsIntent.js.map +1 -1
  9. package/dist/src/schema/transactionRequest/intents/baseIntent.js.map +1 -1
  10. package/dist/src/schema/transactionRequest/intents/baseStakeIntent.js.map +1 -1
  11. package/dist/src/schema/transactionRequest/intents/baseStakeIntentWithCalldata.js.map +1 -1
  12. package/dist/src/schema/transactionRequest/intents/claimIntent.d.ts +70 -0
  13. package/dist/src/schema/transactionRequest/intents/claimIntent.js +36 -0
  14. package/dist/src/schema/transactionRequest/intents/claimIntent.js.map +1 -0
  15. package/dist/src/schema/transactionRequest/intents/cosmosContractCallIntent.d.ts +70 -0
  16. package/dist/src/schema/transactionRequest/intents/cosmosContractCallIntent.js +41 -0
  17. package/dist/src/schema/transactionRequest/intents/cosmosContractCallIntent.js.map +1 -0
  18. package/dist/src/schema/transactionRequest/intents/cosmosPaymentIntent.js.map +1 -1
  19. package/dist/src/schema/transactionRequest/intents/cosmosStakeClaimRewardsIntent.d.ts +71 -0
  20. package/dist/src/schema/transactionRequest/intents/cosmosStakeClaimRewardsIntent.js +37 -0
  21. package/dist/src/schema/transactionRequest/intents/cosmosStakeClaimRewardsIntent.js.map +1 -0
  22. package/dist/src/schema/transactionRequest/intents/cosmosStakeIntent.js.map +1 -1
  23. package/dist/src/schema/transactionRequest/intents/cosmosSwitchValidatorIntent.js.map +1 -1
  24. package/dist/src/schema/transactionRequest/intents/cosmosUnstakeIntent.js.map +1 -1
  25. package/dist/src/schema/transactionRequest/intents/cosmosWithdrawIntent.js.map +1 -1
  26. package/dist/src/schema/transactionRequest/intents/delegateIntent.js.map +1 -1
  27. package/dist/src/schema/transactionRequest/intents/ethAccelerationIntent.js.map +1 -1
  28. package/dist/src/schema/transactionRequest/intents/ethBuildOptions.js.map +1 -1
  29. package/dist/src/schema/transactionRequest/intents/ethConsolidateIntent.js.map +1 -1
  30. package/dist/src/schema/transactionRequest/intents/ethConsolidateTokenIntent.js.map +1 -1
  31. package/dist/src/schema/transactionRequest/intents/ethFillNonceIntent.js.map +1 -1
  32. package/dist/src/schema/transactionRequest/intents/ethPaymentIntent.js.map +1 -1
  33. package/dist/src/schema/transactionRequest/intents/ethStakingIntent.js.map +1 -1
  34. package/dist/src/schema/transactionRequest/intents/ethTransferTokenIntent.js.map +1 -1
  35. package/dist/src/schema/transactionRequest/intents/fillNonceIntent.js.map +1 -1
  36. package/dist/src/schema/transactionRequest/intents/hypeevmBridgeFundsIntent.js.map +1 -1
  37. package/dist/src/schema/transactionRequest/intents/hypeevmSpotTransferIntent.js.map +1 -1
  38. package/dist/src/schema/transactionRequest/intents/index.d.ts +5 -0
  39. package/dist/src/schema/transactionRequest/intents/index.js +5 -0
  40. package/dist/src/schema/transactionRequest/intents/index.js.map +1 -1
  41. package/dist/src/schema/transactionRequest/intents/intent.d.ts +717 -265
  42. package/dist/src/schema/transactionRequest/intents/intent.js +18 -4
  43. package/dist/src/schema/transactionRequest/intents/intent.js.map +1 -1
  44. package/dist/src/schema/transactionRequest/intents/paymentIntent.js.map +1 -1
  45. package/dist/src/schema/transactionRequest/intents/stakeClaimRewardsIntent.js.map +1 -1
  46. package/dist/src/schema/transactionRequest/intents/stakeIntent.js.map +1 -1
  47. package/dist/src/schema/transactionRequest/intents/stakeSwitchValidatorIntent.js.map +1 -1
  48. package/dist/src/schema/transactionRequest/intents/stakeWithCallDataIntent.d.ts +72 -0
  49. package/dist/src/schema/transactionRequest/intents/stakeWithCallDataIntent.js +36 -0
  50. package/dist/src/schema/transactionRequest/intents/stakeWithCallDataIntent.js.map +1 -0
  51. package/dist/src/schema/transactionRequest/intents/switchValidatorWithCallDataIntent.d.ts +72 -0
  52. package/dist/src/schema/transactionRequest/intents/switchValidatorWithCallDataIntent.js +36 -0
  53. package/dist/src/schema/transactionRequest/intents/switchValidatorWithCallDataIntent.js.map +1 -0
  54. package/dist/src/schema/transactionRequest/intents/tokenApprovalIntent.js.map +1 -1
  55. package/dist/src/schema/transactionRequest/intents/transferTokenIntent.js.map +1 -1
  56. package/dist/src/schema/transactionRequest/intents/undelegateIntent.js.map +1 -1
  57. package/dist/src/schema/transactionRequest/transactionRequest.d.ts +1434 -530
  58. package/package.json +1 -1
  59. package/src/schema/transactionRequest/intents/accelerationIntent.ts +7 -0
  60. package/src/schema/transactionRequest/intents/accountBaseBuildOptions.ts +1 -0
  61. package/src/schema/transactionRequest/intents/accountBaseConsolidateIntent.ts +6 -0
  62. package/src/schema/transactionRequest/intents/atomPaymentIntent.ts +5 -0
  63. package/src/schema/transactionRequest/intents/atomStakeIntent.ts +6 -0
  64. package/src/schema/transactionRequest/intents/atomUnstakeIntent.ts +6 -0
  65. package/src/schema/transactionRequest/intents/atomWithdrawIntent.ts +6 -0
  66. package/src/schema/transactionRequest/intents/baseBridgeFundsIntent.ts +4 -5
  67. package/src/schema/transactionRequest/intents/baseIntent.ts +9 -0
  68. package/src/schema/transactionRequest/intents/baseStakeIntent.ts +2 -0
  69. package/src/schema/transactionRequest/intents/baseStakeIntentWithCalldata.ts +1 -0
  70. package/src/schema/transactionRequest/intents/claimIntent.ts +20 -0
  71. package/src/schema/transactionRequest/intents/cosmosContractCallIntent.ts +30 -0
  72. package/src/schema/transactionRequest/intents/cosmosPaymentIntent.ts +5 -0
  73. package/src/schema/transactionRequest/intents/cosmosStakeClaimRewardsIntent.ts +23 -0
  74. package/src/schema/transactionRequest/intents/cosmosStakeIntent.ts +6 -0
  75. package/src/schema/transactionRequest/intents/cosmosSwitchValidatorIntent.ts +4 -0
  76. package/src/schema/transactionRequest/intents/cosmosUnstakeIntent.ts +7 -0
  77. package/src/schema/transactionRequest/intents/cosmosWithdrawIntent.ts +6 -0
  78. package/src/schema/transactionRequest/intents/delegateIntent.ts +6 -0
  79. package/src/schema/transactionRequest/intents/ethAccelerationIntent.ts +5 -0
  80. package/src/schema/transactionRequest/intents/ethBuildOptions.ts +10 -0
  81. package/src/schema/transactionRequest/intents/ethConsolidateIntent.ts +4 -0
  82. package/src/schema/transactionRequest/intents/ethConsolidateTokenIntent.ts +8 -0
  83. package/src/schema/transactionRequest/intents/ethFillNonceIntent.ts +4 -0
  84. package/src/schema/transactionRequest/intents/ethPaymentIntent.ts +5 -0
  85. package/src/schema/transactionRequest/intents/ethStakingIntent.ts +9 -0
  86. package/src/schema/transactionRequest/intents/ethTransferTokenIntent.ts +4 -0
  87. package/src/schema/transactionRequest/intents/fillNonceIntent.ts +8 -0
  88. package/src/schema/transactionRequest/intents/hypeevmBridgeFundsIntent.ts +4 -4
  89. package/src/schema/transactionRequest/intents/hypeevmSpotTransferIntent.ts +4 -0
  90. package/src/schema/transactionRequest/intents/index.ts +5 -0
  91. package/src/schema/transactionRequest/intents/intent.ts +18 -4
  92. package/src/schema/transactionRequest/intents/paymentIntent.ts +3 -0
  93. package/src/schema/transactionRequest/intents/stakeClaimRewardsIntent.ts +6 -0
  94. package/src/schema/transactionRequest/intents/stakeIntent.ts +1 -0
  95. package/src/schema/transactionRequest/intents/stakeSwitchValidatorIntent.ts +2 -0
  96. package/src/schema/transactionRequest/intents/stakeWithCallDataIntent.ts +20 -0
  97. package/src/schema/transactionRequest/intents/switchValidatorWithCallDataIntent.ts +22 -0
  98. package/src/schema/transactionRequest/intents/tokenApprovalIntent.ts +5 -1
  99. package/src/schema/transactionRequest/intents/transferTokenIntent.ts +1 -0
  100. package/src/schema/transactionRequest/intents/undelegateIntent.ts +6 -0
@@ -33,20 +33,21 @@ const aptCustomTxIntent_1 = require("./aptCustomTxIntent");
33
33
  const atomPaymentIntent_1 = require("./atomPaymentIntent");
34
34
  const atomStakeIntent_1 = require("./atomStakeIntent");
35
35
  const atomUnstakeIntent_1 = require("./atomUnstakeIntent");
36
- const atomWithdrawIntent_1 = require("./atomWithdrawIntent");
37
36
  const babyCreateBtcDelegationIntent_1 = require("./babyCreateBtcDelegationIntent");
38
37
  const babyWithdrawRewardIntent_1 = require("./babyWithdrawRewardIntent");
39
38
  const bscDelegateIntent_1 = require("./bscDelegateIntent");
40
39
  const bscUndelegateIntent_1 = require("./bscUndelegateIntent");
41
40
  const bscWithdrawUndelegateIntent_1 = require("./bscWithdrawUndelegateIntent");
41
+ const claimIntent_1 = require("./claimIntent");
42
42
  const vetUnstakingIntent_1 = require("./vetUnstakingIntent");
43
43
  const defiDepositIntent_1 = require("./defiDepositIntent");
44
44
  const defiRedeemIntent_1 = require("./defiRedeemIntent");
45
+ const cosmosContractCallIntent_1 = require("./cosmosContractCallIntent");
45
46
  const cosmosPaymentIntent_1 = require("./cosmosPaymentIntent");
47
+ const cosmosStakeClaimRewardsIntent_1 = require("./cosmosStakeClaimRewardsIntent");
46
48
  const cosmosStakeIntent_1 = require("./cosmosStakeIntent");
47
49
  const cosmosSwitchValidatorIntent_1 = require("./cosmosSwitchValidatorIntent");
48
50
  const cosmosUnstakeIntent_1 = require("./cosmosUnstakeIntent");
49
- const cosmosWithdrawIntent_1 = require("./cosmosWithdrawIntent");
50
51
  const dotCreateAccountIntent_1 = require("./dotCreateAccountIntent");
51
52
  const dotPaymentIntent_1 = require("./dotPaymentIntent");
52
53
  const dotStakingIntent_1 = require("./dotStakingIntent");
@@ -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");
@@ -150,8 +153,12 @@ const xdcStakingIntent_1 = require("./xdcStakingIntent");
150
153
  const xdcStakingIntent_2 = require("./xdcStakingIntent");
151
154
  const xdcUnstakingIntent_1 = require("./xdcUnstakingIntent");
152
155
  const xdcUnstakingIntent_2 = require("./xdcUnstakingIntent");
156
+ const fillNonceIntent_1 = require("./fillNonceIntent");
153
157
  const hypeevmBridgeFundsIntent_1 = require("./hypeevmBridgeFundsIntent");
154
158
  const hypeevmEnableBridgingIntent_1 = require("./hypeevmEnableBridgingIntent");
159
+ const delegateIntent_1 = require("./delegateIntent");
160
+ const undelegateIntent_1 = require("./undelegateIntent");
161
+ const stakeClaimRewardsIntent_1 = require("./stakeClaimRewardsIntent");
155
162
  exports.TransactionIntent = t.union([
156
163
  adaConsolidateIntent_1.AdaConsolidateIntent,
157
164
  adaPaymentIntent_1.AdaPaymentIntent,
@@ -163,7 +170,6 @@ exports.TransactionIntent = t.union([
163
170
  atomPaymentIntent_1.AtomPaymentIntent,
164
171
  atomStakeIntent_1.AtomStakeIntent,
165
172
  atomUnstakeIntent_1.AtomUnstakeIntent,
166
- atomWithdrawIntent_1.AtomWithdrawIntent,
167
173
  babyCreateBtcDelegationIntent_1.BabyCreateBtcDelegationIntent,
168
174
  babyWithdrawRewardIntent_1.BabyWithdrawRewardIntent,
169
175
  bscDelegateIntent_1.BscDelegateIntent,
@@ -174,11 +180,13 @@ exports.TransactionIntent = t.union([
174
180
  cantonTransferAcknowledgeIntent_1.CantonTransferAcknowledgeIntent,
175
181
  cantonTransferOfferWithdrawnIntent_1.CantonTransferOfferWithdrawnIntent,
176
182
  cantonTransferRejectIntent_1.CantonTransferRejectIntent,
183
+ claimIntent_1.ClaimIntent,
184
+ cosmosContractCallIntent_1.CosmosContractCallIntent,
177
185
  cosmosPaymentIntent_1.CosmosPaymentIntent,
186
+ cosmosStakeClaimRewardsIntent_1.CosmosStakeClaimRewardsIntent,
178
187
  cosmosStakeIntent_1.CosmosStakeIntent,
179
188
  cosmosSwitchValidatorIntent_1.CosmosSwitchValidatorIntent,
180
189
  cosmosUnstakeIntent_1.CosmosUnstakeIntent,
181
- cosmosWithdrawIntent_1.CosmosWithdrawIntent,
182
190
  defiDepositIntent_1.DefiDepositIntent,
183
191
  defiRedeemIntent_1.DefiRedeemIntent,
184
192
  dotConsolidateIntent_1.DotConsolidateIntent,
@@ -187,13 +195,17 @@ exports.TransactionIntent = t.union([
187
195
  dotStakingIntent_1.DotStakingIntent,
188
196
  dotUnstakingIntent_1.DotUnstakingIntent,
189
197
  dotWithdrawStakeIntent_1.DotWithdrawStakeIntent,
198
+ delegateIntent_1.DelegateIntent,
190
199
  ethAccelerationIntent_1.EthAccelerationIntent,
191
200
  ethConsolidateIntent_1.EthConsolidateIntent,
192
201
  ethConsolidateTokenIntent_1.EthConsolidateTokenIntent,
193
202
  ethFillNonceIntent_1.EthFillNonceIntent,
203
+ fillNonceIntent_1.FillNonceIntent,
194
204
  ethPaymentIntent_1.EthPaymentIntent,
195
205
  ethStakingIntent_1.EthStakingIntent,
196
206
  ethTransferTokenIntent_1.EthTransferTokenIntent,
207
+ stakeClaimRewardsIntent_1.StakeClaimRewardsIntent,
208
+ undelegateIntent_1.UndelegateIntent,
197
209
  feeAddressTransferIntent_1.FeeAddressTransferIntent,
198
210
  hbarUpdateAccountIntent_1.HbarUpdateAccountIntent,
199
211
  hypeevmBridgeFundsIntent_1.HypeevmBridgeFundsIntent,
@@ -268,6 +280,8 @@ exports.TransactionIntent = t.union([
268
280
  vetWithdrawStakeIntent_1.VetWithdrawStakeIntent,
269
281
  walletRecoveryIntent_1.WalletRecoveryIntent,
270
282
  baseStakeIntentWithCalldata_1.BaseStakeIntentWithCalldata,
283
+ stakeWithCallDataIntent_1.StakeWithCallDataIntent,
284
+ switchValidatorWithCallDataIntent_1.SwitchValidatorWithCallDataIntent,
271
285
  coredaoDelegateIntent_1.CoreDaoDelegateIntent,
272
286
  coredaoUndelegateIntent_1.CoreDaoUndelegateIntent,
273
287
  coredaoClaimIntent_1.CoreDaoClaimIntent,
@@ -1 +1 @@
1
- {"version":3,"file":"intent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/intent.ts"],"names":[],"mappings":"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"}
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;YACL,UAAU,EAAE,wBAAW,CAAC,OAAO;SAChC,CAAC;QACF,CAAC,CAAC,IAAI,CAAC;YACL,UAAU,EAAE,wBAAW,CAAC,OAAO;YAC/B,iBAAiB,EAAE,CAAC,CAAC,OAAO;SAC7B,CAAC;KACH,CAAC;CACH,CAAC,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"}
@@ -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;AAEvC,QAAA,uBAAuB,GAAG,CAAC,CAAC,YAAY,CAAC;IACpD,iCAAe;IACf,iCAAoB;IACpB,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,iBAAiB;KAC1C,CAAC;CACH,CAAC,CAAC"}
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;QACL,UAAU,EAAE,wBAAW,CAAC,KAAK;KAC9B,CAAC;CACH,CAAC,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"}
@@ -1 +1 @@
1
- {"version":3,"file":"stakeSwitchValidatorIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/stakeSwitchValidatorIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,uDAAoD;AACpD,6CAAoD;AACpD,6CAA2C;AAE9B,QAAA,0BAA0B,GAAG,CAAC,CAAC,YAAY,CAAC;IACvD,iCAAe;IACf,iCAAoB;IACpB,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,eAAe;QACvC,gBAAgB,EAAE,CAAC,CAAC,MAAM;QAC1B,oBAAoB,EAAE,CAAC,CAAC,MAAM;KAC/B,CAAC;CACH,CAAC,CAAC"}
1
+ {"version":3,"file":"stakeSwitchValidatorIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/stakeSwitchValidatorIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,uDAAoD;AACpD,6CAAoD;AACpD,6CAA2C;AAE9B,QAAA,0BAA0B,GAAG,CAAC,CAAC,YAAY,CAAC;IACvD,iCAAe;IACf,iCAAoB;IACpB,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,eAAe;QAEvC,gBAAgB,EAAE,CAAC,CAAC,MAAM;QAE1B,oBAAoB,EAAE,CAAC,CAAC,MAAM;KAC/B,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>;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.StakeWithCallDataIntent = void 0;
27
+ const t = __importStar(require("io-ts"));
28
+ const baseStakeIntentWithCalldata_1 = require("./baseStakeIntentWithCalldata");
29
+ const intentType_1 = require("./intentType");
30
+ exports.StakeWithCallDataIntent = t.intersection([
31
+ baseStakeIntentWithCalldata_1.BaseStakeIntentWithCalldata,
32
+ t.type({
33
+ intentType: intentType_1.intentTypes.stakeWithCallData,
34
+ }),
35
+ ]);
36
+ //# sourceMappingURL=stakeWithCallDataIntent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stakeWithCallDataIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/stakeWithCallDataIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,+EAA4E;AAC5E,6CAA2C;AAS9B,QAAA,uBAAuB,GAAG,CAAC,CAAC,YAAY,CAAC;IACpD,yDAA2B;IAC3B,CAAC,CAAC,IAAI,CAAC;QAEL,UAAU,EAAE,wBAAW,CAAC,iBAAiB;KAC1C,CAAC;CACH,CAAC,CAAC"}
@@ -0,0 +1,72 @@
1
+ import * as t from "io-ts";
2
+ export declare const SwitchValidatorWithCallDataIntent: 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<"switchValidatorWithCallData">;
71
+ }>]>;
72
+ export type SwitchValidatorWithCallDataIntent = t.TypeOf<typeof SwitchValidatorWithCallDataIntent>;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.SwitchValidatorWithCallDataIntent = void 0;
27
+ const t = __importStar(require("io-ts"));
28
+ const baseStakeIntentWithCalldata_1 = require("./baseStakeIntentWithCalldata");
29
+ const intentType_1 = require("./intentType");
30
+ exports.SwitchValidatorWithCallDataIntent = t.intersection([
31
+ baseStakeIntentWithCalldata_1.BaseStakeIntentWithCalldata,
32
+ t.type({
33
+ intentType: intentType_1.intentTypes.switchValidatorWithCallData,
34
+ }),
35
+ ]);
36
+ //# sourceMappingURL=switchValidatorWithCallDataIntent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"switchValidatorWithCallDataIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/switchValidatorWithCallDataIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,+EAA4E;AAC5E,6CAA2C;AAS9B,QAAA,iCAAiC,GAAG,CAAC,CAAC,YAAY,CAAC;IAC9D,yDAA2B;IAC3B,CAAC,CAAC,IAAI,CAAC;QAEL,UAAU,EAAE,wBAAW,CAAC,2BAA2B;KACpD,CAAC;CACH,CAAC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"tokenApprovalIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/tokenApprovalIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAAmE;AACnE,6CAA2C;AAM9B,QAAA,mBAAmB,GAAG,CAAC,CAAC,YAAY,CAAC;IAChD,uBAAU;IACV,oCAAuB;IACvB,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,aAAa;KACtC,CAAC;CACH,CAAC,CAAC"}
1
+ {"version":3,"file":"tokenApprovalIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/tokenApprovalIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAAmE;AACnE,6CAA2C;AAS9B,QAAA,mBAAmB,GAAG,CAAC,CAAC,YAAY,CAAC;IAChD,uBAAU;IACV,oCAAuB;IACvB,CAAC,CAAC,IAAI,CAAC;QAEL,UAAU,EAAE,wBAAW,CAAC,aAAa;KACtC,CAAC;CACH,CAAC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"transferTokenIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/transferTokenIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAAyE;AACzE,6CAA2C;AAE9B,QAAA,mBAAmB,GAAG,CAAC,CAAC,YAAY,CAAC;IAChD,uBAAU;IACV,0CAA6B;IAC7B,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,aAAa;KACtC,CAAC;CACH,CAAC,CAAC"}
1
+ {"version":3,"file":"transferTokenIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/transferTokenIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAAyE;AACzE,6CAA2C;AAE9B,QAAA,mBAAmB,GAAG,CAAC,CAAC,YAAY,CAAC;IAChD,uBAAU;IACV,0CAA6B;IAC7B,CAAC,CAAC,IAAI,CAAC;QAEL,UAAU,EAAE,wBAAW,CAAC,aAAa;KACtC,CAAC;CACH,CAAC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"undelegateIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/undelegateIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,uDAAoD;AACpD,6CAA2C;AAE9B,QAAA,gBAAgB,GAAG,CAAC,CAAC,YAAY,CAAC;IAC7C,iCAAe;IACf,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,UAAU;KACnC,CAAC;CACH,CAAC,CAAC"}
1
+ {"version":3,"file":"undelegateIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/undelegateIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,uDAAoD;AACpD,6CAA2C;AAO9B,QAAA,gBAAgB,GAAG,CAAC,CAAC,YAAY,CAAC;IAC7C,iCAAe;IACf,CAAC,CAAC,IAAI,CAAC;QAEL,UAAU,EAAE,wBAAW,CAAC,UAAU;KACnC,CAAC;CACH,CAAC,CAAC"}