@cobo/cobo-waas2 1.17.0 → 1.19.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 (375) hide show
  1. package/README.md +113 -7
  2. package/dist/ApiClient.js +1 -1
  3. package/dist/api/FeeStationApi.js +2 -2
  4. package/dist/api/OAuthApi.js +12 -12
  5. package/dist/api/OrganizationsApi.js +79 -0
  6. package/dist/api/PaymentApi.js +233 -16
  7. package/dist/api/TransactionsApi.js +2 -94
  8. package/dist/api/WalletsApi.js +55 -2
  9. package/dist/index.js +717 -10
  10. package/dist/model/Account.js +174 -0
  11. package/dist/model/AcquiringType.js +61 -0
  12. package/dist/model/AddressTransferDestination.js +2 -2
  13. package/dist/model/AddressesEventData.js +13 -3
  14. package/dist/model/ApprovalDetail.js +160 -0
  15. package/dist/model/ApprovalResult.js +66 -0
  16. package/dist/model/ApprovalShowInfo.js +140 -0
  17. package/dist/model/ApprovalTemplate.js +114 -0
  18. package/dist/model/ApprovalTransactionResult.js +66 -0
  19. package/dist/model/ApprovalUserDetail.js +196 -0
  20. package/dist/model/AutoFuelType.js +5 -0
  21. package/dist/model/BalanceUpdateInfo.js +170 -0
  22. package/dist/model/BalanceUpdateInfoEventData.js +302 -0
  23. package/dist/model/BankAccount.js +2 -2
  24. package/dist/model/ChainsEventData.js +13 -3
  25. package/dist/model/CreateMerchantRequest.js +13 -0
  26. package/dist/model/CreatePaymentOrderRequest.js +16 -6
  27. package/dist/model/CreateRefundRequest.js +9 -11
  28. package/dist/model/CreateSettlement.js +7 -27
  29. package/dist/model/CreateSettlementRequestRequest.js +27 -0
  30. package/dist/model/CryptoAddress.js +7 -7
  31. package/dist/model/CustodialTransferDestination.js +1 -1
  32. package/dist/model/CustodialWeb3TransferSource.js +2 -2
  33. package/dist/model/EstimateContractCallFeeParams.js +2 -2
  34. package/dist/model/EstimateFeeParams.js +1 -1
  35. package/dist/model/EstimatedEvmEip1559Fee.js +2 -2
  36. package/dist/model/EstimatedEvmLegacyFee.js +2 -2
  37. package/dist/model/EstimatedFILFee.js +170 -0
  38. package/dist/model/EstimatedFILFeeSlow.js +186 -0
  39. package/dist/model/EstimatedFee.js +69 -13
  40. package/dist/model/EstimatedFixedFee.js +2 -2
  41. package/dist/model/EstimatedSOLFee.js +170 -0
  42. package/dist/model/EstimatedSOLFeeSlow.js +184 -0
  43. package/dist/model/EstimatedUtxoFee.js +2 -2
  44. package/dist/model/EvmEip1559FeeBasePrice.js +0 -1
  45. package/dist/model/EvmEip1559FeeRate.js +2 -2
  46. package/dist/model/EvmLegacyFeeBasePrice.js +0 -1
  47. package/dist/model/EvmLegacyFeeRate.js +2 -2
  48. package/dist/model/ExchangePermissionToken201Response.js +4 -4
  49. package/dist/model/ExchangePermissionTokenRequest.js +2 -2
  50. package/dist/model/FILBase.js +88 -0
  51. package/dist/model/FILPrice.js +113 -0
  52. package/dist/model/FeeRate.js +1 -1
  53. package/dist/model/FeeType.js +10 -0
  54. package/dist/model/FixedFeeRate.js +2 -2
  55. package/dist/model/GetExchangeRate200Response.js +2 -2
  56. package/dist/model/GetMaxTransferableValueWithFeeModelRequest.js +156 -0
  57. package/dist/model/GraphQLError.js +135 -0
  58. package/dist/model/GraphQLErrorLocationsInner.js +92 -0
  59. package/dist/model/GraphQLRequest.js +135 -0
  60. package/dist/model/GraphQLResponse.js +119 -0
  61. package/dist/model/{ListTransactionApprovalDetails200Response.js → ListTopUpPayers200Response.js} +37 -21
  62. package/dist/model/ListTopUpPayers200ResponseDataInner.js +189 -0
  63. package/dist/model/MPCVaultEventData.js +13 -3
  64. package/dist/model/MaxFeeAmount.js +0 -1
  65. package/dist/model/MaxTransferableValue.js +2 -2
  66. package/dist/model/Merchant.js +15 -2
  67. package/dist/model/MpcTransferSource.js +2 -2
  68. package/dist/model/Order.js +12 -3
  69. package/dist/model/PayerAccount.js +189 -0
  70. package/dist/model/PaymentOrderEventData.js +32 -9
  71. package/dist/model/PaymentRefundEventData.js +71 -11
  72. package/dist/model/PaymentSettlementEvent.js +19 -9
  73. package/dist/model/RefreshPermissionTokenRequest.js +2 -2
  74. package/dist/model/Refund.js +39 -4
  75. package/dist/model/RefundStatus.js +5 -0
  76. package/dist/model/RoleDetail.js +126 -0
  77. package/dist/model/SOLBase.js +101 -0
  78. package/dist/model/SOLComputeUnit.js +100 -0
  79. package/dist/model/Settlement.js +3 -3
  80. package/dist/model/SettlementDetail.js +15 -6
  81. package/dist/model/SettlementInfo.js +11 -2
  82. package/dist/model/SuspendedTokenEventData.js +225 -0
  83. package/dist/model/SuspendedTokenOperationType.js +61 -0
  84. package/dist/model/SwapActivity.js +29 -0
  85. package/dist/model/SwapActivityDetail.js +68 -0
  86. package/dist/model/SwapActivitySigners.js +110 -0
  87. package/dist/model/SwapQuote.js +17 -4
  88. package/dist/model/SwapSingingStatus.js +71 -0
  89. package/dist/model/TSSRequestWebhookEventData.js +13 -3
  90. package/dist/model/TokenListingEventData.js +13 -3
  91. package/dist/model/TokenizationActivityInfo.js +224 -0
  92. package/dist/model/TokenizationActivityStatus.js +66 -0
  93. package/dist/model/TokenizationAddressPermission.js +135 -0
  94. package/dist/model/TokenizationAllowlistActivationParams.js +124 -0
  95. package/dist/model/TokenizationAllowlistActivationRequest.js +180 -0
  96. package/dist/model/{TransactionMessageSignBTCEIP191Destination.js → TokenizationAllowlistAddressNote.js} +46 -36
  97. package/dist/model/TokenizationAppInitiator.js +87 -0
  98. package/dist/model/TokenizationBlocklistAddressNote.js +132 -0
  99. package/dist/model/TokenizationBurnEstimateFeeParams.js +187 -0
  100. package/dist/model/TokenizationBurnTokenParams.js +146 -0
  101. package/dist/model/TokenizationBurnTokenParamsBurnsInner.js +125 -0
  102. package/dist/model/TokenizationBurnTokenRequest.js +202 -0
  103. package/dist/model/TokenizationContractCallEstimateFeeParams.js +167 -0
  104. package/dist/model/TokenizationContractCallParams.js +107 -0
  105. package/dist/model/TokenizationContractCallParamsData.js +164 -0
  106. package/dist/model/TokenizationContractCallRequest.js +182 -0
  107. package/dist/model/TokenizationContractCallType.js +56 -0
  108. package/dist/model/TokenizationERC20TokenParams.js +173 -0
  109. package/dist/model/TokenizationEstimateFeeRequest.js +113 -0
  110. package/dist/model/TokenizationEstimateFeeRequestOperationParams.js +439 -0
  111. package/dist/model/TokenizationEvmContractCallParams.js +133 -0
  112. package/dist/model/TokenizationHoldingInfo.js +166 -0
  113. package/dist/model/TokenizationIssueEstimateFeeParams.js +176 -0
  114. package/dist/model/TokenizationIssueTokenParams.js +146 -0
  115. package/dist/model/TokenizationIssueTokenParamsTokenParams.js +183 -0
  116. package/dist/model/TokenizationIssuedTokenRequest.js +206 -0
  117. package/dist/model/TokenizationListActivitiesResponse.js +146 -0
  118. package/dist/model/TokenizationListEnabledChainsResponse.js +128 -0
  119. package/dist/model/TokenizationListHoldingsResponse.js +146 -0
  120. package/dist/model/TokenizationListTokenInfoResponse.js +146 -0
  121. package/dist/model/TokenizationMintEstimateFeeParams.js +187 -0
  122. package/dist/model/TokenizationMintTokenParams.js +146 -0
  123. package/dist/model/TokenizationMintTokenParamsMintsInner.js +125 -0
  124. package/dist/model/TokenizationMintTokenRequest.js +202 -0
  125. package/dist/model/TokenizationMpcOperationSource.js +136 -0
  126. package/dist/model/TokenizationOperationResponse.js +110 -0
  127. package/dist/model/TokenizationOperationSourceType.js +61 -0
  128. package/dist/model/TokenizationOperationType.js +96 -0
  129. package/dist/model/TokenizationPauseEstimateFeeParams.js +149 -0
  130. package/dist/model/TokenizationPauseTokenParams.js +113 -0
  131. package/dist/model/TokenizationPauseTokenRequest.js +164 -0
  132. package/dist/model/TokenizationStatus.js +71 -0
  133. package/dist/model/TokenizationToggleAllowlistEstimateFeeParams.js +165 -0
  134. package/dist/model/TokenizationTokenDetailInfo.js +309 -0
  135. package/dist/model/TokenizationTokenInfo.js +223 -0
  136. package/dist/model/TokenizationTokenOperationSource.js +192 -0
  137. package/dist/model/TokenizationTokenPermission.js +147 -0
  138. package/dist/model/TokenizationTokenPermissionParams.js +166 -0
  139. package/dist/model/TokenizationTokenPermissionType.js +86 -0
  140. package/dist/model/TokenizationTokenPermissionsResponse.js +139 -0
  141. package/dist/model/TokenizationTokenStandard.js +56 -0
  142. package/dist/model/TokenizationUnpauseEstimateFeeParams.js +149 -0
  143. package/dist/model/TokenizationUnpauseTokenParams.js +113 -0
  144. package/dist/model/TokenizationUnpauseTokenRequest.js +164 -0
  145. package/dist/model/TokenizationUpdateAddressAction.js +61 -0
  146. package/dist/model/TokenizationUpdateAllowlistAddressesEstimateFeeParams.js +202 -0
  147. package/dist/model/TokenizationUpdateAllowlistAddressesParams.js +157 -0
  148. package/dist/model/TokenizationUpdateAllowlistAddressesParamsAddressesInner.js +123 -0
  149. package/dist/model/TokenizationUpdateAllowlistAddressesRequest.js +217 -0
  150. package/dist/model/TokenizationUpdateBlocklistAddressesEstimateFeeParams.js +202 -0
  151. package/dist/model/TokenizationUpdateBlocklistAddressesParams.js +157 -0
  152. package/dist/model/TokenizationUpdateBlocklistAddressesParamsAddressesInner.js +123 -0
  153. package/dist/model/TokenizationUpdateBlocklistAddressesRequest.js +217 -0
  154. package/dist/model/TokenizationWeb3OperationSource.js +136 -0
  155. package/dist/model/TokensEventData.js +13 -3
  156. package/dist/model/TopUpAddress.js +230 -0
  157. package/dist/model/TransactionCoboCategory.js +20 -0
  158. package/dist/model/TransactionDestination.js +10 -38
  159. package/dist/model/TransactionEvmCalldataInfo.js +1 -1
  160. package/dist/model/TransactionEvmEip1559Fee.js +2 -2
  161. package/dist/model/TransactionEvmLegacyFee.js +2 -2
  162. package/dist/model/TransactionFILFee.js +229 -0
  163. package/dist/model/TransactionFee.js +109 -11
  164. package/dist/model/TransactionFixedFee.js +2 -2
  165. package/dist/model/TransactionRbfSource.js +1 -1
  166. package/dist/model/TransactionRequestEvmEip1559Fee.js +2 -2
  167. package/dist/model/TransactionRequestEvmLegacyFee.js +2 -2
  168. package/dist/model/TransactionRequestFILFee.js +186 -0
  169. package/dist/model/TransactionRequestFee.js +90 -10
  170. package/dist/model/TransactionRequestFixedFee.js +2 -2
  171. package/dist/model/TransactionRequestSOLFee.js +168 -0
  172. package/dist/model/TransactionRequestUtxoFee.js +2 -2
  173. package/dist/model/TransactionSOLFee.js +229 -0
  174. package/dist/model/TransactionSubStatus.js +5 -0
  175. package/dist/model/TransactionTransferToAddressDestination.js +2 -2
  176. package/dist/model/TransactionTransferToWalletDestination.js +1 -1
  177. package/dist/model/TransactionUtxoFee.js +2 -2
  178. package/dist/model/TransactionWebhookEventData.js +13 -3
  179. package/dist/model/TransferDestination.js +2 -2
  180. package/dist/model/UpdateMerchantByIdRequest.js +13 -0
  181. package/dist/model/UpdateRefundByIdRequest.js +110 -0
  182. package/dist/model/UpdateTopUpAddress.js +141 -0
  183. package/dist/model/UtxoFeeBasePrice.js +0 -1
  184. package/dist/model/UtxoFeeRate.js +2 -2
  185. package/dist/model/WalletInfoEventData.js +13 -3
  186. package/dist/model/WebhookEvent.js +2 -2
  187. package/dist/model/WebhookEventData.js +123 -13
  188. package/dist/model/WebhookEventDataType.js +12 -2
  189. package/dist/model/WebhookEventLog.js +2 -2
  190. package/dist/model/WebhookEventType.js +35 -0
  191. package/docs/Account.md +14 -0
  192. package/docs/AcquiringType.md +12 -0
  193. package/docs/AddressTransferDestination.md +2 -2
  194. package/docs/AddressesEventData.md +5 -1
  195. package/docs/ApprovalDetail.md +14 -0
  196. package/docs/ApprovalResult.md +14 -0
  197. package/docs/ApprovalShowInfo.md +13 -0
  198. package/docs/ApprovalTemplate.md +11 -0
  199. package/docs/ApprovalTransactionResult.md +14 -0
  200. package/docs/ApprovalUserDetail.md +18 -0
  201. package/docs/AutoFuelType.md +2 -0
  202. package/docs/BalanceUpdateInfo.md +13 -0
  203. package/docs/BalanceUpdateInfoEventData.md +49 -0
  204. package/docs/BankAccount.md +2 -2
  205. package/docs/ChainsEventData.md +5 -1
  206. package/docs/CreateMerchantRequest.md +1 -0
  207. package/docs/CreatePaymentOrderRequest.md +5 -4
  208. package/docs/CreateRefundRequest.md +5 -5
  209. package/docs/CreateSettlement.md +7 -9
  210. package/docs/CreateSettlementRequestRequest.md +3 -0
  211. package/docs/CryptoAddress.md +5 -5
  212. package/docs/CustodialWeb3TransferSource.md +1 -1
  213. package/docs/EstimateContractCallFeeParams.md +1 -1
  214. package/docs/EstimateFeeParams.md +1 -1
  215. package/docs/EstimatedEvmEip1559Fee.md +1 -1
  216. package/docs/EstimatedEvmLegacyFee.md +1 -1
  217. package/docs/EstimatedFILFee.md +13 -0
  218. package/docs/EstimatedFILFeeSlow.md +12 -0
  219. package/docs/EstimatedFee.md +4 -4
  220. package/docs/EstimatedFixedFee.md +1 -1
  221. package/docs/EstimatedSOLFee.md +13 -0
  222. package/docs/EstimatedSOLFeeSlow.md +12 -0
  223. package/docs/EstimatedUtxoFee.md +1 -1
  224. package/docs/EvmEip1559FeeRate.md +1 -1
  225. package/docs/EvmLegacyFeeRate.md +1 -1
  226. package/docs/ExchangePermissionToken201Response.md +4 -4
  227. package/docs/ExchangePermissionTokenRequest.md +1 -1
  228. package/docs/FILBase.md +9 -0
  229. package/docs/FILPrice.md +11 -0
  230. package/docs/FeeRate.md +1 -1
  231. package/docs/FeeStationApi.md +1 -1
  232. package/docs/FeeType.md +4 -0
  233. package/docs/FixedFeeRate.md +1 -1
  234. package/docs/GetExchangeRate200Response.md +1 -1
  235. package/docs/GetMaxTransferableValueWithFeeModelRequest.md +12 -0
  236. package/docs/GraphQLError.md +11 -0
  237. package/docs/GraphQLErrorLocationsInner.md +10 -0
  238. package/docs/GraphQLRequest.md +11 -0
  239. package/docs/GraphQLResponse.md +10 -0
  240. package/docs/ListTopUpPayers200Response.md +10 -0
  241. package/docs/ListTopUpPayers200ResponseDataInner.md +14 -0
  242. package/docs/MPCVaultEventData.md +5 -1
  243. package/docs/MaxTransferableValue.md +1 -1
  244. package/docs/Merchant.md +3 -2
  245. package/docs/MpcTransferSource.md +1 -1
  246. package/docs/OAuthApi.md +8 -8
  247. package/docs/Order.md +4 -3
  248. package/docs/OrganizationsApi.md +55 -0
  249. package/docs/PayerAccount.md +14 -0
  250. package/docs/PaymentApi.md +230 -6
  251. package/docs/PaymentOrderEventData.md +9 -4
  252. package/docs/PaymentRefundEventData.md +12 -5
  253. package/docs/PaymentSettlementEvent.md +8 -4
  254. package/docs/RefreshPermissionTokenRequest.md +1 -1
  255. package/docs/Refund.md +7 -4
  256. package/docs/RefundStatus.md +2 -0
  257. package/docs/RoleDetail.md +11 -0
  258. package/docs/SOLBase.md +10 -0
  259. package/docs/SOLComputeUnit.md +10 -0
  260. package/docs/Settlement.md +3 -3
  261. package/docs/SettlementDetail.md +7 -6
  262. package/docs/SettlementInfo.md +3 -2
  263. package/docs/SuspendedTokenEventData.md +46 -0
  264. package/docs/SuspendedTokenOperationType.md +12 -0
  265. package/docs/SwapActivity.md +2 -0
  266. package/docs/SwapActivityDetail.md +3 -0
  267. package/docs/SwapActivitySigners.md +11 -0
  268. package/docs/SwapQuote.md +3 -2
  269. package/docs/SwapSingingStatus.md +16 -0
  270. package/docs/TSSRequestWebhookEventData.md +5 -1
  271. package/docs/TokenListingEventData.md +5 -1
  272. package/docs/TokenizationActivityInfo.md +18 -0
  273. package/docs/TokenizationActivityStatus.md +14 -0
  274. package/docs/TokenizationAddressPermission.md +11 -0
  275. package/docs/TokenizationAllowlistActivationParams.md +10 -0
  276. package/docs/TokenizationAllowlistActivationRequest.md +12 -0
  277. package/docs/TokenizationAllowlistAddressNote.md +11 -0
  278. package/docs/TokenizationAppInitiator.md +9 -0
  279. package/docs/TokenizationBlocklistAddressNote.md +11 -0
  280. package/docs/TokenizationBurnEstimateFeeParams.md +12 -0
  281. package/docs/TokenizationBurnTokenParams.md +10 -0
  282. package/docs/TokenizationBurnTokenParamsBurnsInner.md +10 -0
  283. package/docs/TokenizationBurnTokenRequest.md +12 -0
  284. package/docs/TokenizationContractCallEstimateFeeParams.md +12 -0
  285. package/docs/TokenizationContractCallParams.md +10 -0
  286. package/docs/TokenizationContractCallParamsData.md +11 -0
  287. package/docs/TokenizationContractCallRequest.md +12 -0
  288. package/docs/TokenizationContractCallType.md +10 -0
  289. package/docs/TokenizationERC20TokenParams.md +14 -0
  290. package/docs/TokenizationEstimateFeeRequest.md +9 -0
  291. package/docs/TokenizationEstimateFeeRequestOperationParams.md +19 -0
  292. package/docs/TokenizationEvmContractCallParams.md +11 -0
  293. package/docs/TokenizationHoldingInfo.md +13 -0
  294. package/docs/TokenizationIssueEstimateFeeParams.md +12 -0
  295. package/docs/TokenizationIssueTokenParams.md +11 -0
  296. package/docs/TokenizationIssueTokenParamsTokenParams.md +14 -0
  297. package/docs/TokenizationIssuedTokenRequest.md +13 -0
  298. package/docs/TokenizationListActivitiesResponse.md +10 -0
  299. package/docs/TokenizationListEnabledChainsResponse.md +10 -0
  300. package/docs/TokenizationListHoldingsResponse.md +10 -0
  301. package/docs/TokenizationListTokenInfoResponse.md +10 -0
  302. package/docs/TokenizationMintEstimateFeeParams.md +12 -0
  303. package/docs/TokenizationMintTokenParams.md +10 -0
  304. package/docs/TokenizationMintTokenParamsMintsInner.md +10 -0
  305. package/docs/TokenizationMintTokenRequest.md +12 -0
  306. package/docs/TokenizationMpcOperationSource.md +11 -0
  307. package/docs/TokenizationOperationResponse.md +9 -0
  308. package/docs/TokenizationOperationSourceType.md +12 -0
  309. package/docs/TokenizationOperationType.md +26 -0
  310. package/docs/TokenizationPauseEstimateFeeParams.md +11 -0
  311. package/docs/TokenizationPauseTokenParams.md +9 -0
  312. package/docs/TokenizationPauseTokenRequest.md +11 -0
  313. package/docs/TokenizationStatus.md +16 -0
  314. package/docs/TokenizationToggleAllowlistEstimateFeeParams.md +12 -0
  315. package/docs/TokenizationTokenDetailInfo.md +19 -0
  316. package/docs/TokenizationTokenInfo.md +18 -0
  317. package/docs/TokenizationTokenOperationSource.md +11 -0
  318. package/docs/TokenizationTokenPermission.md +12 -0
  319. package/docs/TokenizationTokenPermissionParams.md +15 -0
  320. package/docs/TokenizationTokenPermissionType.md +22 -0
  321. package/docs/TokenizationTokenPermissionsResponse.md +10 -0
  322. package/docs/TokenizationTokenStandard.md +10 -0
  323. package/docs/TokenizationUnpauseEstimateFeeParams.md +11 -0
  324. package/docs/TokenizationUnpauseTokenParams.md +9 -0
  325. package/docs/TokenizationUnpauseTokenRequest.md +11 -0
  326. package/docs/TokenizationUpdateAddressAction.md +12 -0
  327. package/docs/TokenizationUpdateAllowlistAddressesEstimateFeeParams.md +13 -0
  328. package/docs/TokenizationUpdateAllowlistAddressesParams.md +11 -0
  329. package/docs/TokenizationUpdateAllowlistAddressesParamsAddressesInner.md +10 -0
  330. package/docs/TokenizationUpdateAllowlistAddressesRequest.md +13 -0
  331. package/docs/TokenizationUpdateBlocklistAddressesEstimateFeeParams.md +13 -0
  332. package/docs/TokenizationUpdateBlocklistAddressesParams.md +11 -0
  333. package/docs/TokenizationUpdateBlocklistAddressesParamsAddressesInner.md +10 -0
  334. package/docs/TokenizationUpdateBlocklistAddressesRequest.md +13 -0
  335. package/docs/TokenizationWeb3OperationSource.md +11 -0
  336. package/docs/TokensEventData.md +5 -1
  337. package/docs/TopUpAddress.md +18 -0
  338. package/docs/TransactionCoboCategory.md +8 -0
  339. package/docs/TransactionDestination.md +2 -2
  340. package/docs/TransactionEvmCalldataInfo.md +1 -1
  341. package/docs/TransactionEvmEip1559Fee.md +2 -2
  342. package/docs/TransactionEvmLegacyFee.md +2 -2
  343. package/docs/TransactionFILFee.md +16 -0
  344. package/docs/TransactionFee.md +10 -3
  345. package/docs/TransactionFixedFee.md +2 -2
  346. package/docs/TransactionRbfSource.md +1 -1
  347. package/docs/TransactionRequestEvmEip1559Fee.md +1 -1
  348. package/docs/TransactionRequestEvmLegacyFee.md +1 -1
  349. package/docs/TransactionRequestFILFee.md +13 -0
  350. package/docs/TransactionRequestFee.md +6 -2
  351. package/docs/TransactionRequestFixedFee.md +1 -1
  352. package/docs/TransactionRequestSOLFee.md +12 -0
  353. package/docs/TransactionRequestUtxoFee.md +1 -1
  354. package/docs/TransactionSOLFee.md +16 -0
  355. package/docs/TransactionSubStatus.md +2 -0
  356. package/docs/TransactionTransferToAddressDestination.md +2 -2
  357. package/docs/TransactionTransferToWalletDestination.md +1 -1
  358. package/docs/TransactionUtxoFee.md +2 -2
  359. package/docs/TransactionWebhookEventData.md +5 -1
  360. package/docs/TransactionsApi.md +1 -107
  361. package/docs/TransferDestination.md +2 -2
  362. package/docs/UpdateMerchantByIdRequest.md +1 -0
  363. package/docs/UpdateRefundByIdRequest.md +9 -0
  364. package/docs/UpdateTopUpAddress.md +11 -0
  365. package/docs/UtxoFeeRate.md +1 -1
  366. package/docs/WalletInfoEventData.md +5 -1
  367. package/docs/WalletsApi.md +58 -1
  368. package/docs/WebhookEvent.md +1 -1
  369. package/docs/WebhookEventData.md +18 -5
  370. package/docs/WebhookEventDataType.md +5 -1
  371. package/docs/WebhookEventLog.md +1 -1
  372. package/docs/WebhookEventType.md +14 -0
  373. package/package.json +1 -1
  374. package/docs/ListTransactionApprovalDetails200Response.md +0 -9
  375. package/docs/TransactionMessageSignBTCEIP191Destination.md +0 -10
package/docs/Refund.md CHANGED
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **request_id** | **String** | The request ID provided by you when creating the refund request. | [optional]
8
8
  **refund_id** | **String** | The refund order ID. |
9
- **order_id** | **String** | The order ID corresponding to this refund. | [optional]
9
+ **order_id** | **String** | The ID of the pay-in order corresponding to this refund. | [optional]
10
10
  **merchant_id** | **String** | The merchant ID. | [optional]
11
11
  **token_id** | **String** | The ID of the cryptocurrency used for refund. |
12
12
  **chain_id** | **String** | The ID of the blockchain network on which the refund transaction occurs. |
@@ -14,9 +14,12 @@ Name | Type | Description | Notes
14
14
  **to_address** | **String** | The recipient's wallet address where the refund will be sent. |
15
15
  **status** | [**RefundStatus**](RefundStatus.md) | |
16
16
  **refund_type** | [**RefundType**](RefundType.md) | | [optional]
17
- **created_timestamp** | **Number** | The created time of the refund order, represented as a UNIX timestamp in seconds. | [optional]
18
- **updated_timestamp** | **Number** | The updated time of the refund order, represented as a UNIX timestamp in seconds. | [optional]
19
- **initiator** | **String** | The initiator of this refund order, usually the user's API key. | [optional]
17
+ **created_timestamp** | **Number** | The creation time of the refund order, represented as a UNIX timestamp in seconds. | [optional]
18
+ **updated_timestamp** | **Number** | The last update time of the refund order, represented as a UNIX timestamp in seconds. | [optional]
19
+ **initiator** | **String** | The initiator of this settlement request. Can return either an API key or the Payment Management App's ID. - Format `api_key_<API_KEY>`: Indicates the settlement request was initiated via the Payment API using the API key. - Format `app_<APP_ID>`: Indicates the settlement request was initiated through the Payment Management App using the App ID. | [optional]
20
20
  **transactions** | [**[PaymentTransaction]**](PaymentTransaction.md) | An array of transactions associated with this refund order. Each transaction represents a separate blockchain operation related to the refund process. | [optional]
21
+ **charge_merchant_fee** | **Boolean** | Whether to charge developer fee to the merchant for the refund. - `true`: The fee amount (specified in `merchant_fee_amount`) will be deducted from the merchant's balance and added to the developer's balance - `false`: The merchant is not charged any developer fee. | [optional]
22
+ **merchant_fee_amount** | **String** | The developer fee amount to charge the merchant, denominated in the cryptocurrency specified by `merchant_fee_token_id`. This is only applicable if `charge_merchant_fee` is set to `true`. | [optional]
23
+ **merchant_fee_token_id** | **String** | The ID of the cryptocurrency used for the developer fee. This is only applicable if `charge_merchant_fee` is set to true. | [optional]
21
24
 
22
25
 
@@ -13,6 +13,8 @@
13
13
 
14
14
  * `Failed` (value: `"Failed"`)
15
15
 
16
+ * `PendingConfirmation` (value: `"PendingConfirmation"`)
17
+
16
18
  * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
17
19
 
18
20
 
@@ -0,0 +1,11 @@
1
+ # CoboWaas2.RoleDetail
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **result** | [**ApprovalTransactionResult**](ApprovalTransactionResult.md) | | [optional]
8
+ **threshold** | **Number** | The threshold for the transaction approval. | [optional]
9
+ **user_details** | [**[ApprovalUserDetail]**](ApprovalUserDetail.md) | | [optional]
10
+
11
+
@@ -0,0 +1,10 @@
1
+ # CoboWaas2.SOLBase
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **base_fee** | **String** | A fixed fee charged per signature. The default is 5,000 lamports per signature. | [optional]
8
+ **rent_amount** | **String** | The rent fee charged by the network to store non–rent-exempt accounts on-chain. It is deducted periodically until the account maintains the minimum balance required for rent exemption. | [optional]
9
+
10
+
@@ -0,0 +1,10 @@
1
+ # CoboWaas2.SOLComputeUnit
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **compute_unit_price** | **String** | The price paid per compute unit. This value determines the priority fee for the transaction, allowing you to increase inclusion probability in congested conditions. | [optional]
8
+ **compute_unit_limit** | **String** | The maximum number of compute units your transaction is allowed to consume. It sets an upper bound on computational resource usage to prevent overload. | [optional]
9
+
10
+
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
8
8
  **request_id** | **String** | The request ID provided by you when creating the settlement request. |
9
9
  **status** | [**SettleRequestStatus**](SettleRequestStatus.md) | |
10
10
  **settlements** | [**[SettlementDetail]**](SettlementDetail.md) | |
11
- **created_timestamp** | **Number** | The created time of the settlement request, represented as a UNIX timestamp in seconds. | [optional]
12
- **updated_timestamp** | **Number** | The updated time of the settlement request, represented as a UNIX timestamp in seconds. | [optional]
13
- **initiator** | **String** | The initiator of this settlement request, usually the user's API key. | [optional]
11
+ **created_timestamp** | **Number** | The creation time of the settlement request, represented as a UNIX timestamp in seconds. | [optional]
12
+ **updated_timestamp** | **Number** | The last update time of the settlement request, represented as a UNIX timestamp in seconds. | [optional]
13
+ **initiator** | **String** | The initiator of this settlement request. Can return either an API key or the Payment Management App's ID. - Format `api_key_<API_KEY>`: Indicates the settlement request was initiated via the Payment API using the API key. - Format `app_<APP_ID>`: Indicates the settlement request was initiated through the Payment Management App using the App ID. | [optional]
14
14
 
15
15
 
@@ -7,15 +7,16 @@ Name | Type | Description | Notes
7
7
  **currency** | **String** | The fiat currency for the settlement. | [optional]
8
8
  **token_id** | **String** | The ID of the cryptocurrency settled. | [optional]
9
9
  **chain_id** | **String** | The ID of the blockchain network on which the settlement occurred. | [optional]
10
- **merchant_id** | **String** | The Merchant ID associated with this settlement. | [optional]
11
- **amount** | **String** | The settlement amount. - If `token_id` is specified, this represents the settlement amount in the specified cryptocurrency. - If `token_id` is not specified, this represents the settlement amount in the specified fiat currency. | [optional]
12
- **settled_amount** | **String** | The settled amount of this settlement detail. - If `token_id` is specified, this represents the actual settled amount in the specified cryptocurrency. - If `token_id` is not specified, this represents the actual settled amount in the specified fiat currency. | [optional]
10
+ **merchant_id** | **String** | The ID of the merchant associated with this settlement. | [optional]
11
+ **amount** | **String** | The settlement amount. - If `payout_channel` is set to `Crypto`, this represents the settlement amount in the specified cryptocurrency. - If `payout_channel` is set to `OffRamp`, this represents the settlement amount in the specified fiat currency. | [optional]
12
+ **settled_amount** | **String** | The settled amount of this settlement detail. - If `payout_channel` is set to `Crypto`, this represents the actual settled amount in the specified cryptocurrency. - If `payout_channel` is set to `OffRamp`, this represents the actual settled amount in the specified fiat currency. | [optional]
13
13
  **status** | [**SettleStatus**](SettleStatus.md) | | [optional]
14
14
  **bank_account** | [**BankAccount**](BankAccount.md) | | [optional]
15
15
  **transactions** | [**[PaymentTransaction]**](PaymentTransaction.md) | An array of transactions associated with this settlement request. Each transaction represents a separate blockchain operation related to the settlement process. | [optional]
16
- **created_timestamp** | **Number** | The created time of the settlement, represented as a UNIX timestamp in seconds. | [optional]
17
- **updated_timestamp** | **Number** | The updated time of the settlement, represented as a UNIX timestamp in seconds. | [optional]
18
- **crypto_address_id** | **String** | Unique identifier for the pre-approved crypto address, used to reference the address securely in requests. | [optional]
16
+ **created_timestamp** | **Number** | The creation time of the settlement, represented as a UNIX timestamp in seconds. | [optional]
17
+ **updated_timestamp** | **Number** | The last update time of the settlement, represented as a UNIX timestamp in seconds. | [optional]
18
+ **crypto_address_id** | **String** | The ID of the crypto address used for crypto withdrawal. | [optional]
19
19
  **payout_channel** | [**PayoutChannel**](PayoutChannel.md) | | [optional]
20
+ **acquiring_type** | [**AcquiringType**](AcquiringType.md) | | [optional]
20
21
 
21
22
 
@@ -11,7 +11,8 @@ Name | Type | Description | Notes
11
11
  **pending_amount** | **String** | The amount unavailable for settlement or refund, in the specified cryptocurrency. | [optional]
12
12
  **pending_currency_balance** | **String** | The amount unavailable for settlement or refund, in the specified fiat currency. | [optional]
13
13
  **settled_amount** | **String** | The amount already settled, in the specified cryptocurrency. | [optional]
14
- **created_timestamp** | **Number** | The created time of the settlement, represented as a UNIX timestamp in seconds. | [optional]
15
- **updated_timestamp** | **Number** | The updated time of the settlement, represented as a UNIX timestamp in seconds. | [optional]
14
+ **acquiring_type** | [**AcquiringType**](AcquiringType.md) | | [optional]
15
+ **created_timestamp** | **Number** | The creation time of the settlement, represented as a UNIX timestamp in seconds. | [optional]
16
+ **updated_timestamp** | **Number** | The last update time of the settlement, represented as a UNIX timestamp in seconds. | [optional]
16
17
 
17
18
 
@@ -0,0 +1,46 @@
1
+ # CoboWaas2.SuspendedTokenEventData
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **data_type** | **String** | The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. |
8
+ **token_ids** | **String** | A list of token IDs, separated by comma. |
9
+ **operation_type** | [**SuspendedTokenOperationType**](SuspendedTokenOperationType.md) | |
10
+
11
+
12
+
13
+ ## Enum: DataTypeEnum
14
+
15
+
16
+ * `Transaction` (value: `"Transaction"`)
17
+
18
+ * `TSSRequest` (value: `"TSSRequest"`)
19
+
20
+ * `Addresses` (value: `"Addresses"`)
21
+
22
+ * `WalletInfo` (value: `"WalletInfo"`)
23
+
24
+ * `MPCVault` (value: `"MPCVault"`)
25
+
26
+ * `Chains` (value: `"Chains"`)
27
+
28
+ * `Tokens` (value: `"Tokens"`)
29
+
30
+ * `TokenListing` (value: `"TokenListing"`)
31
+
32
+ * `PaymentOrder` (value: `"PaymentOrder"`)
33
+
34
+ * `PaymentRefund` (value: `"PaymentRefund"`)
35
+
36
+ * `PaymentSettlement` (value: `"PaymentSettlement"`)
37
+
38
+ * `BalanceUpdateInfo` (value: `"BalanceUpdateInfo"`)
39
+
40
+ * `SuspendedToken` (value: `"SuspendedToken"`)
41
+
42
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
43
+
44
+
45
+
46
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.SuspendedTokenOperationType
2
+
3
+ ## Enum
4
+
5
+
6
+ * `Added` (value: `"Added"`)
7
+
8
+ * `Removed` (value: `"Removed"`)
9
+
10
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
11
+
12
+
@@ -20,5 +20,7 @@ Name | Type | Description | Notes
20
20
  **description** | **String** | The description of the swap activity. | [optional]
21
21
  **created_timestamp** | **Number** | The time when the swap activity was created, in Unix timestamp format, measured in milliseconds. | [optional]
22
22
  **updated_timestamp** | **Number** | The time when the swap activity was last updated, in Unix timestamp format, measured in milliseconds. | [optional]
23
+ **network_fee** | [**TransactionRequestFee**](TransactionRequestFee.md) | | [optional]
24
+ **destination_address** | **String** | the destination address of web3/mpc wallets. | [optional]
23
25
 
24
26
 
@@ -20,7 +20,10 @@ Name | Type | Description | Notes
20
20
  **description** | **String** | The description of the swap activity. | [optional]
21
21
  **created_timestamp** | **Number** | The time when the swap activity was created, in Unix timestamp format, measured in milliseconds. | [optional]
22
22
  **updated_timestamp** | **Number** | The time when the swap activity was last updated, in Unix timestamp format, measured in milliseconds. | [optional]
23
+ **network_fee** | [**TransactionRequestFee**](TransactionRequestFee.md) | | [optional]
24
+ **destination_address** | **String** | the destination address of web3/mpc wallets. | [optional]
23
25
  **timeline** | [**[SwapActivityTimeline]**](SwapActivityTimeline.md) | | [optional]
24
26
  **approvers** | [**[SwapActivityApprovers]**](SwapActivityApprovers.md) | | [optional]
27
+ **signers** | [**[SwapActivitySigners]**](SwapActivitySigners.md) | | [optional]
25
28
 
26
29
 
@@ -0,0 +1,11 @@
1
+ # CoboWaas2.SwapActivitySigners
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **signer** | **String** | The signer name. | [optional]
8
+ **status** | [**SwapSingingStatus**](SwapSingingStatus.md) | | [optional]
9
+ **failed_reason** | **String** | Failed reason of signing process. | [optional]
10
+
11
+
package/docs/SwapQuote.md CHANGED
@@ -9,8 +9,9 @@ Name | Type | Description | Notes
9
9
  **pay_amount** | **String** | The amount of tokens to pay. |
10
10
  **receive_token_id** | **String** | The token ID to receive. |
11
11
  **receive_amount** | **String** | The amount of tokens to receive. |
12
- **fee_token_id** | **String** | The fee token ID. |
13
- **fee_amount** | **String** | The amount of tokens to pay for fee. |
12
+ **fee_token_id** | **String** | The token ID for the service fee. |
13
+ **fee_amount** | **String** | The amount of tokens for the service fee. |
14
+ **estimated_network_fee_amount** | **String** | The estimated amount of tokens for the network fee. | [optional]
14
15
  **min_receive_amount** | **String** | The minimum amount of tokens to receive if the pay amount is specified. | [optional]
15
16
  **max_pay_amount** | **String** | The maximum amount of tokens to pay if the receive amount is specified. | [optional]
16
17
  **quote_expired_timestamp** | **Number** | The time when the quote will expire, in Unix timestamp format, measured in milliseconds. |
@@ -0,0 +1,16 @@
1
+ # CoboWaas2.SwapSingingStatus
2
+
3
+ ## Enum
4
+
5
+
6
+ * `Pending` (value: `"Pending"`)
7
+
8
+ * `Signed` (value: `"Signed"`)
9
+
10
+ * `Timeout` (value: `"Timeout"`)
11
+
12
+ * `Rejected` (value: `"Rejected"`)
13
+
14
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
15
+
16
+
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **data_type** | **String** | The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. |
7
+ **data_type** | **String** | The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. |
8
8
  **tss_request_id** | **String** | The TSS request ID. | [optional]
9
9
  **source_key_share_holder_group** | [**SourceGroup**](SourceGroup.md) | | [optional]
10
10
  **target_key_share_holder_group_id** | **String** | The target key share holder group ID. | [optional]
@@ -40,6 +40,10 @@ Name | Type | Description | Notes
40
40
 
41
41
  * `PaymentSettlement` (value: `"PaymentSettlement"`)
42
42
 
43
+ * `BalanceUpdateInfo` (value: `"BalanceUpdateInfo"`)
44
+
45
+ * `SuspendedToken` (value: `"SuspendedToken"`)
46
+
43
47
  * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
44
48
 
45
49
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **data_type** | **String** | The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. |
7
+ **data_type** | **String** | The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. |
8
8
  **request_id** | **String** | The unique identifier of the token listing request. |
9
9
  **chain_id** | **String** | The ID of the blockchain where the token is deployed. |
10
10
  **contract_address** | **String** | The token's contract address on the specified blockchain. |
@@ -44,6 +44,10 @@ Name | Type | Description | Notes
44
44
 
45
45
  * `PaymentSettlement` (value: `"PaymentSettlement"`)
46
46
 
47
+ * `BalanceUpdateInfo` (value: `"BalanceUpdateInfo"`)
48
+
49
+ * `SuspendedToken` (value: `"SuspendedToken"`)
50
+
47
51
  * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
48
52
 
49
53
 
@@ -0,0 +1,18 @@
1
+ # CoboWaas2.TokenizationActivityInfo
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **activity_id** | **String** | The ID of the activity. |
8
+ **token_id** | **String** | The token ID. |
9
+ **type** | [**TokenizationOperationType**](TokenizationOperationType.md) | |
10
+ **status** | [**TokenizationActivityStatus**](TokenizationActivityStatus.md) | |
11
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | |
12
+ **initiator** | **String** | The initiator of the activity. |
13
+ **initiator_type** | [**TransactionInitiatorType**](TransactionInitiatorType.md) | |
14
+ **transaction_ids** | **[String]** | The IDs of the corresponding transactions of the activity. | [optional]
15
+ **created_timestamp** | **Number** | The creation timestamp of the activity in milliseconds since the Unix epoch. | [optional]
16
+ **updated_timestamp** | **Number** | The last update timestamp of the activity in milliseconds since the Unix epoch. |
17
+
18
+
@@ -0,0 +1,14 @@
1
+ # CoboWaas2.TokenizationActivityStatus
2
+
3
+ ## Enum
4
+
5
+
6
+ * `Processing` (value: `"Processing"`)
7
+
8
+ * `Success` (value: `"Success"`)
9
+
10
+ * `Failed` (value: `"Failed"`)
11
+
12
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
13
+
14
+
@@ -0,0 +1,11 @@
1
+ # CoboWaas2.TokenizationAddressPermission
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **execution_address** | **String** | The execution address. |
8
+ **permissions** | [**[TokenizationTokenPermissionType]**](TokenizationTokenPermissionType.md) | List of permissions granted to this address. |
9
+ **created_timestamp** | **Number** | The time when the permission was created, in Unix timestamp format, measured in milliseconds. | [optional]
10
+
11
+
@@ -0,0 +1,10 @@
1
+ # CoboWaas2.TokenizationAllowlistActivationParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | |
8
+ **activation** | **Boolean** | Whether to activate the allowlist feature for the token. |
9
+
10
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TokenizationAllowlistActivationRequest
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | |
8
+ **activation** | **Boolean** | Whether to activate the allowlist feature for the token. |
9
+ **app_initiator** | **String** | The initiator of the tokenization activity. If you do not specify this property, the WaaS service will automatically designate the API key as the initiator. | [optional]
10
+ **fee** | [**TransactionRequestFee**](TransactionRequestFee.md) | |
11
+
12
+
@@ -0,0 +1,11 @@
1
+ # CoboWaas2.TokenizationAllowlistAddressNote
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **address** | **String** | The allowed address. |
8
+ **note** | **String** | The note for the allowed address. | [optional]
9
+ **created_timestamp** | **Number** | The time when the allowlist address was created, in Unix timestamp format, measured in milliseconds. | [optional]
10
+
11
+
@@ -0,0 +1,9 @@
1
+ # CoboWaas2.TokenizationAppInitiator
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **app_initiator** | **String** | The initiator of the tokenization activity. If you do not specify this property, the WaaS service will automatically designate the API key as the initiator. | [optional]
8
+
9
+
@@ -0,0 +1,11 @@
1
+ # CoboWaas2.TokenizationBlocklistAddressNote
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **address** | **String** | The allowed address. |
8
+ **note** | **String** | The note for the allowed address. | [optional]
9
+ **created_timestamp** | **Number** | The time when the blocklist address was created, in Unix timestamp format, measured in milliseconds. | [optional]
10
+
11
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TokenizationBurnEstimateFeeParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | |
8
+ **burns** | [**[TokenizationBurnTokenParamsBurnsInner]**](TokenizationBurnTokenParamsBurnsInner.md) | Details for each token burn, including amount and address to burn from. |
9
+ **operation_type** | [**TokenizationOperationType**](TokenizationOperationType.md) | |
10
+ **token_id** | **String** | The ID of the token. |
11
+
12
+
@@ -0,0 +1,10 @@
1
+ # CoboWaas2.TokenizationBurnTokenParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | |
8
+ **burns** | [**[TokenizationBurnTokenParamsBurnsInner]**](TokenizationBurnTokenParamsBurnsInner.md) | Details for each token burn, including amount and address to burn from. |
9
+
10
+
@@ -0,0 +1,10 @@
1
+ # CoboWaas2.TokenizationBurnTokenParamsBurnsInner
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **amount** | **String** | The amount of tokens to burn from this source. |
8
+ **from_address** | **String** | The address to burn tokens from for this source. |
9
+
10
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TokenizationBurnTokenRequest
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | |
8
+ **burns** | [**[TokenizationBurnTokenParamsBurnsInner]**](TokenizationBurnTokenParamsBurnsInner.md) | Details for each token burn, including amount and address to burn from. |
9
+ **app_initiator** | **String** | The initiator of the tokenization activity. If you do not specify this property, the WaaS service will automatically designate the API key as the initiator. | [optional]
10
+ **fee** | [**TransactionRequestFee**](TransactionRequestFee.md) | |
11
+
12
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TokenizationContractCallEstimateFeeParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | | [optional]
8
+ **data** | [**TokenizationContractCallParamsData**](TokenizationContractCallParamsData.md) | | [optional]
9
+ **operation_type** | [**TokenizationOperationType**](TokenizationOperationType.md) | |
10
+ **token_id** | **String** | The ID of the token. |
11
+
12
+
@@ -0,0 +1,10 @@
1
+ # CoboWaas2.TokenizationContractCallParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | | [optional]
8
+ **data** | [**TokenizationContractCallParamsData**](TokenizationContractCallParamsData.md) | | [optional]
9
+
10
+
@@ -0,0 +1,11 @@
1
+ # CoboWaas2.TokenizationContractCallParamsData
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **type** | [**TokenizationContractCallType**](TokenizationContractCallType.md) | | [optional]
8
+ **calldata** | **String** | The data that is used to invoke a specific function or method within the specified contract at the destination address. |
9
+ **value** | **String** | The transfer amount. For example, if you trade 1.5 ETH, then the value is `1.5`. | [optional]
10
+
11
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TokenizationContractCallRequest
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | | [optional]
8
+ **data** | [**TokenizationContractCallParamsData**](TokenizationContractCallParamsData.md) | | [optional]
9
+ **app_initiator** | **String** | The initiator of the tokenization activity. If you do not specify this property, the WaaS service will automatically designate the API key as the initiator. | [optional]
10
+ **fee** | [**TransactionRequestFee**](TransactionRequestFee.md) | |
11
+
12
+
@@ -0,0 +1,10 @@
1
+ # CoboWaas2.TokenizationContractCallType
2
+
3
+ ## Enum
4
+
5
+
6
+ * `EVM_Contract` (value: `"EVM_Contract"`)
7
+
8
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
9
+
10
+
@@ -0,0 +1,14 @@
1
+ # CoboWaas2.TokenizationERC20TokenParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **standard** | [**TokenizationTokenStandard**](TokenizationTokenStandard.md) | |
8
+ **name** | **String** | The name of the token. |
9
+ **symbol** | **String** | The symbol of the token. |
10
+ **decimals** | **Number** | The number of decimals for the token (0-18). |
11
+ **allowlist_activated** | **Boolean** | Whether the allowlist feature is activated for the token. When activated, only addresses in the allowlist can perform token operations. | [optional] [default to false]
12
+ **permissions** | [**TokenizationTokenPermissionParams**](TokenizationTokenPermissionParams.md) | | [optional]
13
+
14
+
@@ -0,0 +1,9 @@
1
+ # CoboWaas2.TokenizationEstimateFeeRequest
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **operation_params** | [**TokenizationEstimateFeeRequestOperationParams**](TokenizationEstimateFeeRequestOperationParams.md) | |
8
+
9
+
@@ -0,0 +1,19 @@
1
+ # CoboWaas2.TokenizationEstimateFeeRequestOperationParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **chain_id** | **String** | The chain ID where the token will be issued. |
8
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | |
9
+ **token_params** | [**TokenizationIssueTokenParamsTokenParams**](TokenizationIssueTokenParamsTokenParams.md) | |
10
+ **operation_type** | [**TokenizationOperationType**](TokenizationOperationType.md) | |
11
+ **mints** | [**[TokenizationMintTokenParamsMintsInner]**](TokenizationMintTokenParamsMintsInner.md) | Details for each token mint, including amount and address to mint to. |
12
+ **token_id** | **String** | The ID of the token. |
13
+ **burns** | [**[TokenizationBurnTokenParamsBurnsInner]**](TokenizationBurnTokenParamsBurnsInner.md) | Details for each token burn, including amount and address to burn from. |
14
+ **action** | [**TokenizationUpdateAddressAction**](TokenizationUpdateAddressAction.md) | |
15
+ **addresses** | [**[TokenizationUpdateBlocklistAddressesParamsAddressesInner]**](TokenizationUpdateBlocklistAddressesParamsAddressesInner.md) | A list of addresses to manage. For 'add' operations, notes can be provided. For 'remove' operations, notes are ignored. |
16
+ **activation** | **Boolean** | Whether to activate the allowlist feature for the token. |
17
+ **data** | [**TokenizationContractCallParamsData**](TokenizationContractCallParamsData.md) | | [optional]
18
+
19
+
@@ -0,0 +1,11 @@
1
+ # CoboWaas2.TokenizationEvmContractCallParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **type** | [**TokenizationContractCallType**](TokenizationContractCallType.md) | | [optional]
8
+ **calldata** | **String** | The data that is used to invoke a specific function or method within the specified contract at the destination address. |
9
+ **value** | **String** | The transfer amount. For example, if you trade 1.5 ETH, then the value is `1.5`. | [optional]
10
+
11
+
@@ -0,0 +1,13 @@
1
+ # CoboWaas2.TokenizationHoldingInfo
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **wallet_id** | **String** | The unique identifier of the wallet holding the token. |
8
+ **wallet_name** | **String** | The name of the wallet. | [optional]
9
+ **address** | **String** | The address holding the token. |
10
+ **balance** | **String** | The token balance held by this address. |
11
+ **address_label** | **String** | The label of the address. | [optional]
12
+
13
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TokenizationIssueEstimateFeeParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **chain_id** | **String** | The chain ID where the token will be issued. |
8
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | |
9
+ **token_params** | [**TokenizationIssueTokenParamsTokenParams**](TokenizationIssueTokenParamsTokenParams.md) | |
10
+ **operation_type** | [**TokenizationOperationType**](TokenizationOperationType.md) | |
11
+
12
+
@@ -0,0 +1,11 @@
1
+ # CoboWaas2.TokenizationIssueTokenParams
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **chain_id** | **String** | The chain ID where the token will be issued. |
8
+ **source** | [**TokenizationTokenOperationSource**](TokenizationTokenOperationSource.md) | |
9
+ **token_params** | [**TokenizationIssueTokenParamsTokenParams**](TokenizationIssueTokenParamsTokenParams.md) | |
10
+
11
+