@cobo/cobo-waas2 1.18.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.
- package/README.md +78 -4
- package/dist/ApiClient.js +1 -1
- package/dist/api/OAuthApi.js +2 -2
- package/dist/api/TransactionsApi.js +0 -92
- package/dist/api/WalletsApi.js +50 -0
- package/dist/index.js +518 -7
- package/dist/model/AddressesEventData.js +13 -8
- package/dist/model/ApprovalDetail.js +160 -0
- package/dist/model/ApprovalResult.js +66 -0
- package/dist/model/ApprovalShowInfo.js +140 -0
- package/dist/model/ApprovalTemplate.js +114 -0
- package/dist/model/ApprovalTransactionResult.js +66 -0
- package/dist/model/ApprovalUserDetail.js +196 -0
- package/dist/model/AutoFuelType.js +5 -0
- package/dist/model/BalanceUpdateInfoEventData.js +13 -8
- package/dist/model/ChainsEventData.js +13 -8
- package/dist/model/CreatePaymentOrderRequest.js +7 -6
- package/dist/model/CreateSettlement.js +1 -2
- package/dist/model/CustodialWeb3TransferSource.js +2 -2
- package/dist/model/EstimatedEvmEip1559Fee.js +2 -2
- package/dist/model/EstimatedEvmLegacyFee.js +2 -2
- package/dist/model/EstimatedFILFee.js +2 -2
- package/dist/model/EstimatedFILFeeSlow.js +12 -12
- package/dist/model/EstimatedFee.js +1 -1
- package/dist/model/EstimatedFixedFee.js +2 -2
- package/dist/model/EstimatedSOLFee.js +2 -2
- package/dist/model/EstimatedSOLFeeSlow.js +11 -11
- package/dist/model/EstimatedUtxoFee.js +2 -2
- package/dist/model/EvmEip1559FeeBasePrice.js +0 -1
- package/dist/model/EvmEip1559FeeRate.js +2 -2
- package/dist/model/EvmLegacyFeeBasePrice.js +0 -1
- package/dist/model/EvmLegacyFeeRate.js +2 -2
- package/dist/model/FILBase.js +1 -1
- package/dist/model/FILPrice.js +3 -4
- package/dist/model/FeeRate.js +1 -1
- package/dist/model/FixedFeeRate.js +2 -2
- package/dist/model/GetMaxTransferableValueWithFeeModelRequest.js +156 -0
- package/dist/model/MPCVaultEventData.js +13 -8
- package/dist/model/MaxFeeAmount.js +0 -1
- package/dist/model/MaxTransferableValue.js +2 -2
- package/dist/model/MpcTransferSource.js +2 -2
- package/dist/model/PaymentOrderEventData.js +13 -8
- package/dist/model/PaymentRefundEventData.js +13 -8
- package/dist/model/PaymentSettlementEvent.js +13 -8
- package/dist/model/{ListTransactionApprovalDetails200Response.js → RoleDetail.js} +46 -27
- package/dist/model/SOLBase.js +2 -2
- package/dist/model/SOLComputeUnit.js +2 -3
- package/dist/model/SuspendedTokenEventData.js +225 -0
- package/dist/model/SuspendedTokenOperationType.js +61 -0
- package/dist/model/SwapActivity.js +29 -0
- package/dist/model/SwapActivityDetail.js +38 -0
- package/dist/model/TSSRequestWebhookEventData.js +13 -8
- package/dist/model/TokenListingEventData.js +13 -8
- package/dist/model/TokenizationActivityInfo.js +224 -0
- package/dist/model/TokenizationActivityStatus.js +66 -0
- package/dist/model/TokenizationAddressPermission.js +135 -0
- package/dist/model/TokenizationAllowlistActivationParams.js +124 -0
- package/dist/model/TokenizationAllowlistActivationRequest.js +180 -0
- package/dist/model/TokenizationAllowlistAddressNote.js +132 -0
- package/dist/model/TokenizationAppInitiator.js +87 -0
- package/dist/model/TokenizationBlocklistAddressNote.js +132 -0
- package/dist/model/TokenizationBurnEstimateFeeParams.js +187 -0
- package/dist/model/TokenizationBurnTokenParams.js +146 -0
- package/dist/model/TokenizationBurnTokenParamsBurnsInner.js +125 -0
- package/dist/model/TokenizationBurnTokenRequest.js +202 -0
- package/dist/model/TokenizationContractCallEstimateFeeParams.js +167 -0
- package/dist/model/TokenizationContractCallParams.js +107 -0
- package/dist/model/TokenizationContractCallParamsData.js +164 -0
- package/dist/model/TokenizationContractCallRequest.js +182 -0
- package/dist/model/TokenizationContractCallType.js +56 -0
- package/dist/model/TokenizationERC20TokenParams.js +173 -0
- package/dist/model/TokenizationEstimateFeeRequest.js +113 -0
- package/dist/model/TokenizationEstimateFeeRequestOperationParams.js +439 -0
- package/dist/model/TokenizationEvmContractCallParams.js +133 -0
- package/dist/model/TokenizationHoldingInfo.js +166 -0
- package/dist/model/TokenizationIssueEstimateFeeParams.js +176 -0
- package/dist/model/TokenizationIssueTokenParams.js +146 -0
- package/dist/model/TokenizationIssueTokenParamsTokenParams.js +183 -0
- package/dist/model/TokenizationIssuedTokenRequest.js +206 -0
- package/dist/model/TokenizationListActivitiesResponse.js +146 -0
- package/dist/model/TokenizationListEnabledChainsResponse.js +128 -0
- package/dist/model/TokenizationListHoldingsResponse.js +146 -0
- package/dist/model/TokenizationListTokenInfoResponse.js +146 -0
- package/dist/model/TokenizationMintEstimateFeeParams.js +187 -0
- package/dist/model/TokenizationMintTokenParams.js +146 -0
- package/dist/model/TokenizationMintTokenParamsMintsInner.js +125 -0
- package/dist/model/TokenizationMintTokenRequest.js +202 -0
- package/dist/model/TokenizationMpcOperationSource.js +136 -0
- package/dist/model/TokenizationOperationResponse.js +110 -0
- package/dist/model/TokenizationOperationSourceType.js +61 -0
- package/dist/model/TokenizationOperationType.js +96 -0
- package/dist/model/TokenizationPauseEstimateFeeParams.js +149 -0
- package/dist/model/TokenizationPauseTokenParams.js +113 -0
- package/dist/model/TokenizationPauseTokenRequest.js +164 -0
- package/dist/model/TokenizationStatus.js +71 -0
- package/dist/model/TokenizationToggleAllowlistEstimateFeeParams.js +165 -0
- package/dist/model/TokenizationTokenDetailInfo.js +309 -0
- package/dist/model/TokenizationTokenInfo.js +223 -0
- package/dist/model/TokenizationTokenOperationSource.js +192 -0
- package/dist/model/TokenizationTokenPermission.js +147 -0
- package/dist/model/TokenizationTokenPermissionParams.js +166 -0
- package/dist/model/TokenizationTokenPermissionType.js +86 -0
- package/dist/model/TokenizationTokenPermissionsResponse.js +139 -0
- package/dist/model/TokenizationTokenStandard.js +56 -0
- package/dist/model/TokenizationUnpauseEstimateFeeParams.js +149 -0
- package/dist/model/TokenizationUnpauseTokenParams.js +113 -0
- package/dist/model/TokenizationUnpauseTokenRequest.js +164 -0
- package/dist/model/TokenizationUpdateAddressAction.js +61 -0
- package/dist/model/TokenizationUpdateAllowlistAddressesEstimateFeeParams.js +202 -0
- package/dist/model/TokenizationUpdateAllowlistAddressesParams.js +157 -0
- package/dist/model/TokenizationUpdateAllowlistAddressesParamsAddressesInner.js +123 -0
- package/dist/model/TokenizationUpdateAllowlistAddressesRequest.js +217 -0
- package/dist/model/TokenizationUpdateBlocklistAddressesEstimateFeeParams.js +202 -0
- package/dist/model/TokenizationUpdateBlocklistAddressesParams.js +157 -0
- package/dist/model/TokenizationUpdateBlocklistAddressesParamsAddressesInner.js +123 -0
- package/dist/model/TokenizationUpdateBlocklistAddressesRequest.js +217 -0
- package/dist/model/TokenizationWeb3OperationSource.js +136 -0
- package/dist/model/TokensEventData.js +13 -8
- package/dist/model/TopUpAddress.js +2 -2
- package/dist/model/TransactionEvmEip1559Fee.js +2 -2
- package/dist/model/TransactionEvmLegacyFee.js +2 -2
- package/dist/model/TransactionFILFee.js +11 -11
- package/dist/model/TransactionFee.js +10 -10
- package/dist/model/TransactionFixedFee.js +2 -2
- package/dist/model/TransactionRbfSource.js +1 -1
- package/dist/model/TransactionRequestEvmEip1559Fee.js +2 -2
- package/dist/model/TransactionRequestEvmLegacyFee.js +2 -2
- package/dist/model/TransactionRequestFILFee.js +11 -11
- package/dist/model/TransactionRequestFee.js +6 -6
- package/dist/model/TransactionRequestFixedFee.js +2 -2
- package/dist/model/TransactionRequestSOLFee.js +9 -9
- package/dist/model/TransactionRequestUtxoFee.js +2 -2
- package/dist/model/TransactionSOLFee.js +11 -11
- package/dist/model/TransactionSubStatus.js +5 -0
- package/dist/model/TransactionUtxoFee.js +2 -2
- package/dist/model/TransactionWebhookEventData.js +13 -8
- package/dist/model/UtxoFeeBasePrice.js +0 -1
- package/dist/model/UtxoFeeRate.js +2 -2
- package/dist/model/WalletInfoEventData.js +13 -8
- package/dist/model/WebhookEvent.js +2 -2
- package/dist/model/WebhookEventData.js +49 -9
- package/dist/model/WebhookEventDataType.js +12 -7
- package/dist/model/WebhookEventLog.js +2 -2
- package/dist/model/WebhookEventType.js +20 -0
- package/docs/AddressesEventData.md +5 -3
- package/docs/ApprovalDetail.md +14 -0
- package/docs/ApprovalResult.md +14 -0
- package/docs/ApprovalShowInfo.md +13 -0
- package/docs/ApprovalTemplate.md +11 -0
- package/docs/ApprovalTransactionResult.md +14 -0
- package/docs/ApprovalUserDetail.md +18 -0
- package/docs/AutoFuelType.md +2 -0
- package/docs/BalanceUpdateInfoEventData.md +5 -3
- package/docs/ChainsEventData.md +5 -3
- package/docs/CreatePaymentOrderRequest.md +4 -4
- package/docs/CreateSettlement.md +2 -2
- package/docs/CustodialWeb3TransferSource.md +1 -1
- package/docs/EstimatedEvmEip1559Fee.md +1 -1
- package/docs/EstimatedEvmLegacyFee.md +1 -1
- package/docs/EstimatedFILFee.md +1 -1
- package/docs/EstimatedFILFeeSlow.md +4 -4
- package/docs/EstimatedFee.md +1 -1
- package/docs/EstimatedFixedFee.md +1 -1
- package/docs/EstimatedSOLFee.md +1 -1
- package/docs/EstimatedSOLFeeSlow.md +4 -4
- package/docs/EstimatedUtxoFee.md +1 -1
- package/docs/EvmEip1559FeeRate.md +1 -1
- package/docs/EvmLegacyFeeRate.md +1 -1
- package/docs/FILBase.md +1 -1
- package/docs/FILPrice.md +3 -3
- package/docs/FeeRate.md +1 -1
- package/docs/FixedFeeRate.md +1 -1
- package/docs/GetMaxTransferableValueWithFeeModelRequest.md +12 -0
- package/docs/MPCVaultEventData.md +5 -3
- package/docs/MaxTransferableValue.md +1 -1
- package/docs/MpcTransferSource.md +1 -1
- package/docs/OAuthApi.md +1 -1
- package/docs/PaymentOrderEventData.md +5 -3
- package/docs/PaymentRefundEventData.md +5 -3
- package/docs/PaymentSettlementEvent.md +5 -3
- package/docs/RoleDetail.md +11 -0
- package/docs/SOLBase.md +2 -2
- package/docs/SOLComputeUnit.md +2 -2
- package/docs/SuspendedTokenEventData.md +46 -0
- package/docs/SuspendedTokenOperationType.md +12 -0
- package/docs/SwapActivity.md +2 -0
- package/docs/SwapActivityDetail.md +2 -0
- package/docs/TSSRequestWebhookEventData.md +5 -3
- package/docs/TokenListingEventData.md +5 -3
- package/docs/TokenizationActivityInfo.md +18 -0
- package/docs/TokenizationActivityStatus.md +14 -0
- package/docs/TokenizationAddressPermission.md +11 -0
- package/docs/TokenizationAllowlistActivationParams.md +10 -0
- package/docs/TokenizationAllowlistActivationRequest.md +12 -0
- package/docs/TokenizationAllowlistAddressNote.md +11 -0
- package/docs/TokenizationAppInitiator.md +9 -0
- package/docs/TokenizationBlocklistAddressNote.md +11 -0
- package/docs/TokenizationBurnEstimateFeeParams.md +12 -0
- package/docs/TokenizationBurnTokenParams.md +10 -0
- package/docs/TokenizationBurnTokenParamsBurnsInner.md +10 -0
- package/docs/TokenizationBurnTokenRequest.md +12 -0
- package/docs/TokenizationContractCallEstimateFeeParams.md +12 -0
- package/docs/TokenizationContractCallParams.md +10 -0
- package/docs/TokenizationContractCallParamsData.md +11 -0
- package/docs/TokenizationContractCallRequest.md +12 -0
- package/docs/TokenizationContractCallType.md +10 -0
- package/docs/TokenizationERC20TokenParams.md +14 -0
- package/docs/TokenizationEstimateFeeRequest.md +9 -0
- package/docs/TokenizationEstimateFeeRequestOperationParams.md +19 -0
- package/docs/TokenizationEvmContractCallParams.md +11 -0
- package/docs/TokenizationHoldingInfo.md +13 -0
- package/docs/TokenizationIssueEstimateFeeParams.md +12 -0
- package/docs/TokenizationIssueTokenParams.md +11 -0
- package/docs/TokenizationIssueTokenParamsTokenParams.md +14 -0
- package/docs/TokenizationIssuedTokenRequest.md +13 -0
- package/docs/TokenizationListActivitiesResponse.md +10 -0
- package/docs/TokenizationListEnabledChainsResponse.md +10 -0
- package/docs/TokenizationListHoldingsResponse.md +10 -0
- package/docs/TokenizationListTokenInfoResponse.md +10 -0
- package/docs/TokenizationMintEstimateFeeParams.md +12 -0
- package/docs/TokenizationMintTokenParams.md +10 -0
- package/docs/TokenizationMintTokenParamsMintsInner.md +10 -0
- package/docs/TokenizationMintTokenRequest.md +12 -0
- package/docs/TokenizationMpcOperationSource.md +11 -0
- package/docs/TokenizationOperationResponse.md +9 -0
- package/docs/TokenizationOperationSourceType.md +12 -0
- package/docs/TokenizationOperationType.md +26 -0
- package/docs/TokenizationPauseEstimateFeeParams.md +11 -0
- package/docs/TokenizationPauseTokenParams.md +9 -0
- package/docs/TokenizationPauseTokenRequest.md +11 -0
- package/docs/TokenizationStatus.md +16 -0
- package/docs/TokenizationToggleAllowlistEstimateFeeParams.md +12 -0
- package/docs/TokenizationTokenDetailInfo.md +19 -0
- package/docs/TokenizationTokenInfo.md +18 -0
- package/docs/TokenizationTokenOperationSource.md +11 -0
- package/docs/TokenizationTokenPermission.md +12 -0
- package/docs/TokenizationTokenPermissionParams.md +15 -0
- package/docs/TokenizationTokenPermissionType.md +22 -0
- package/docs/TokenizationTokenPermissionsResponse.md +10 -0
- package/docs/TokenizationTokenStandard.md +10 -0
- package/docs/TokenizationUnpauseEstimateFeeParams.md +11 -0
- package/docs/TokenizationUnpauseTokenParams.md +9 -0
- package/docs/TokenizationUnpauseTokenRequest.md +11 -0
- package/docs/TokenizationUpdateAddressAction.md +12 -0
- package/docs/TokenizationUpdateAllowlistAddressesEstimateFeeParams.md +13 -0
- package/docs/TokenizationUpdateAllowlistAddressesParams.md +11 -0
- package/docs/TokenizationUpdateAllowlistAddressesParamsAddressesInner.md +10 -0
- package/docs/TokenizationUpdateAllowlistAddressesRequest.md +13 -0
- package/docs/TokenizationUpdateBlocklistAddressesEstimateFeeParams.md +13 -0
- package/docs/TokenizationUpdateBlocklistAddressesParams.md +11 -0
- package/docs/TokenizationUpdateBlocklistAddressesParamsAddressesInner.md +10 -0
- package/docs/TokenizationUpdateBlocklistAddressesRequest.md +13 -0
- package/docs/TokenizationWeb3OperationSource.md +11 -0
- package/docs/TokensEventData.md +5 -3
- package/docs/TopUpAddress.md +1 -1
- package/docs/TransactionEvmEip1559Fee.md +2 -2
- package/docs/TransactionEvmLegacyFee.md +2 -2
- package/docs/TransactionFILFee.md +6 -6
- package/docs/TransactionFee.md +10 -10
- package/docs/TransactionFixedFee.md +2 -2
- package/docs/TransactionRbfSource.md +1 -1
- package/docs/TransactionRequestEvmEip1559Fee.md +1 -1
- package/docs/TransactionRequestEvmLegacyFee.md +1 -1
- package/docs/TransactionRequestFILFee.md +4 -4
- package/docs/TransactionRequestFee.md +6 -6
- package/docs/TransactionRequestFixedFee.md +1 -1
- package/docs/TransactionRequestSOLFee.md +3 -3
- package/docs/TransactionRequestUtxoFee.md +1 -1
- package/docs/TransactionSOLFee.md +6 -6
- package/docs/TransactionSubStatus.md +2 -0
- package/docs/TransactionUtxoFee.md +2 -2
- package/docs/TransactionWebhookEventData.md +5 -3
- package/docs/TransactionsApi.md +0 -106
- package/docs/UtxoFeeRate.md +1 -1
- package/docs/WalletInfoEventData.md +5 -3
- package/docs/WalletsApi.md +55 -0
- package/docs/WebhookEvent.md +1 -1
- package/docs/WebhookEventData.md +7 -3
- package/docs/WebhookEventDataType.md +5 -3
- package/docs/WebhookEventLog.md +1 -1
- package/docs/WebhookEventType.md +8 -0
- package/package.json +1 -1
- package/docs/ListTransactionApprovalDetails200Response.md +0 -9
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _TokenizationAppInitiator = _interopRequireDefault(require("./TokenizationAppInitiator"));
|
|
9
|
+
var _TokenizationTokenOperationSource = _interopRequireDefault(require("./TokenizationTokenOperationSource"));
|
|
10
|
+
var _TokenizationUpdateAddressAction = _interopRequireDefault(require("./TokenizationUpdateAddressAction"));
|
|
11
|
+
var _TokenizationUpdateBlocklistAddressesParams = _interopRequireDefault(require("./TokenizationUpdateBlocklistAddressesParams"));
|
|
12
|
+
var _TokenizationUpdateBlocklistAddressesParamsAddressesInner = _interopRequireDefault(require("./TokenizationUpdateBlocklistAddressesParamsAddressesInner"));
|
|
13
|
+
var _TransactionRequestFee = _interopRequireDefault(require("./TransactionRequestFee"));
|
|
14
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
15
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
16
|
+
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
17
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
18
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
19
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
20
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
21
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
22
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
23
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
24
|
+
* Cobo Wallet as a Service 2.0
|
|
25
|
+
*
|
|
26
|
+
* Contact: help@cobo.com
|
|
27
|
+
*
|
|
28
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
29
|
+
* https://openapi-generator.tech
|
|
30
|
+
* Do not edit the class manually.
|
|
31
|
+
*
|
|
32
|
+
*/
|
|
33
|
+
/**
|
|
34
|
+
* The TokenizationUpdateBlocklistAddressesRequest model module.
|
|
35
|
+
* @module model/TokenizationUpdateBlocklistAddressesRequest
|
|
36
|
+
*/
|
|
37
|
+
var TokenizationUpdateBlocklistAddressesRequest = /*#__PURE__*/function () {
|
|
38
|
+
/**
|
|
39
|
+
* Constructs a new <code>TokenizationUpdateBlocklistAddressesRequest</code>.
|
|
40
|
+
* @alias module:model/TokenizationUpdateBlocklistAddressesRequest
|
|
41
|
+
* @implements module:model/TokenizationUpdateBlocklistAddressesParams
|
|
42
|
+
* @implements module:model/TokenizationAppInitiator
|
|
43
|
+
* @param action {module:model/TokenizationUpdateAddressAction}
|
|
44
|
+
* @param source {module:model/TokenizationTokenOperationSource}
|
|
45
|
+
* @param addresses {Array.<module:model/TokenizationUpdateBlocklistAddressesParamsAddressesInner>} A list of addresses to manage. For 'add' operations, notes can be provided. For 'remove' operations, notes are ignored.
|
|
46
|
+
* @param fee {module:model/TransactionRequestFee}
|
|
47
|
+
*/
|
|
48
|
+
function TokenizationUpdateBlocklistAddressesRequest(action, source, addresses, fee) {
|
|
49
|
+
_classCallCheck(this, TokenizationUpdateBlocklistAddressesRequest);
|
|
50
|
+
_TokenizationUpdateBlocklistAddressesParams["default"].initialize(this, action, source, addresses);
|
|
51
|
+
_TokenizationAppInitiator["default"].initialize(this);
|
|
52
|
+
TokenizationUpdateBlocklistAddressesRequest.initialize(this, action, source, addresses, fee);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Initializes the fields of this object.
|
|
57
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
58
|
+
* Only for internal use.
|
|
59
|
+
*/
|
|
60
|
+
return _createClass(TokenizationUpdateBlocklistAddressesRequest, null, [{
|
|
61
|
+
key: "initialize",
|
|
62
|
+
value: function initialize(obj, action, source, addresses, fee) {
|
|
63
|
+
obj['action'] = action;
|
|
64
|
+
obj['source'] = source;
|
|
65
|
+
obj['addresses'] = addresses;
|
|
66
|
+
obj['fee'] = fee;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Constructs a <code>TokenizationUpdateBlocklistAddressesRequest</code> from a plain JavaScript object, optionally creating a new instance.
|
|
71
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
72
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
73
|
+
* @param {module:model/TokenizationUpdateBlocklistAddressesRequest} obj Optional instance to populate.
|
|
74
|
+
* @return {module:model/TokenizationUpdateBlocklistAddressesRequest} The populated <code>TokenizationUpdateBlocklistAddressesRequest</code> instance.
|
|
75
|
+
*/
|
|
76
|
+
}, {
|
|
77
|
+
key: "constructFromObject",
|
|
78
|
+
value: function constructFromObject(data, obj) {
|
|
79
|
+
if (data) {
|
|
80
|
+
obj = obj || new TokenizationUpdateBlocklistAddressesRequest();
|
|
81
|
+
_TokenizationUpdateBlocklistAddressesParams["default"].constructFromObject(data, obj);
|
|
82
|
+
_TokenizationAppInitiator["default"].constructFromObject(data, obj);
|
|
83
|
+
if (data.hasOwnProperty('action')) {
|
|
84
|
+
obj['action'] = _TokenizationUpdateAddressAction["default"].constructFromObject(data['action']);
|
|
85
|
+
}
|
|
86
|
+
if (data.hasOwnProperty('source')) {
|
|
87
|
+
obj['source'] = _TokenizationTokenOperationSource["default"].constructFromObject(data['source']);
|
|
88
|
+
}
|
|
89
|
+
if (data.hasOwnProperty('addresses')) {
|
|
90
|
+
obj['addresses'] = _ApiClient["default"].convertToType(data['addresses'], [_TokenizationUpdateBlocklistAddressesParamsAddressesInner["default"]]);
|
|
91
|
+
}
|
|
92
|
+
if (data.hasOwnProperty('app_initiator')) {
|
|
93
|
+
obj['app_initiator'] = _ApiClient["default"].convertToType(data['app_initiator'], 'String');
|
|
94
|
+
}
|
|
95
|
+
if (data.hasOwnProperty('fee')) {
|
|
96
|
+
obj['fee'] = _TransactionRequestFee["default"].constructFromObject(data['fee']);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
return obj;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Validates the JSON data with respect to <code>TokenizationUpdateBlocklistAddressesRequest</code>.
|
|
104
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
105
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>TokenizationUpdateBlocklistAddressesRequest</code>.
|
|
106
|
+
*/
|
|
107
|
+
}, {
|
|
108
|
+
key: "validateJSON",
|
|
109
|
+
value: function validateJSON(data) {
|
|
110
|
+
// check to make sure all required properties are present in the JSON string
|
|
111
|
+
var _iterator = _createForOfIteratorHelper(TokenizationUpdateBlocklistAddressesRequest.RequiredProperties),
|
|
112
|
+
_step;
|
|
113
|
+
try {
|
|
114
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
115
|
+
var property = _step.value;
|
|
116
|
+
if (!data.hasOwnProperty(property)) {
|
|
117
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
// validate the optional field `source`
|
|
121
|
+
} catch (err) {
|
|
122
|
+
_iterator.e(err);
|
|
123
|
+
} finally {
|
|
124
|
+
_iterator.f();
|
|
125
|
+
}
|
|
126
|
+
if (data['source']) {
|
|
127
|
+
// data not null
|
|
128
|
+
if (!!_TokenizationTokenOperationSource["default"].validateJSON) {
|
|
129
|
+
_TokenizationTokenOperationSource["default"].validateJSON(data['source']);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
if (data['addresses']) {
|
|
133
|
+
// data not null
|
|
134
|
+
// ensure the json data is an array
|
|
135
|
+
if (!Array.isArray(data['addresses'])) {
|
|
136
|
+
throw new Error("Expected the field `addresses` to be an array in the JSON data but got " + data['addresses']);
|
|
137
|
+
}
|
|
138
|
+
// validate the optional field `addresses` (array)
|
|
139
|
+
var _iterator2 = _createForOfIteratorHelper(data['addresses']),
|
|
140
|
+
_step2;
|
|
141
|
+
try {
|
|
142
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
143
|
+
var item = _step2.value;
|
|
144
|
+
_TokenizationUpdateBlocklistAddressesParamsAddressesInner["default"].validateJSON(item);
|
|
145
|
+
}
|
|
146
|
+
} catch (err) {
|
|
147
|
+
_iterator2.e(err);
|
|
148
|
+
} finally {
|
|
149
|
+
_iterator2.f();
|
|
150
|
+
}
|
|
151
|
+
;
|
|
152
|
+
}
|
|
153
|
+
// ensure the json data is a string
|
|
154
|
+
if (data['app_initiator'] && !(typeof data['app_initiator'] === 'string' || data['app_initiator'] instanceof String)) {
|
|
155
|
+
throw new Error("Expected the field `app_initiator` to be a primitive type in the JSON string but got " + data['app_initiator']);
|
|
156
|
+
}
|
|
157
|
+
// validate the optional field `fee`
|
|
158
|
+
if (data['fee']) {
|
|
159
|
+
// data not null
|
|
160
|
+
if (!!_TransactionRequestFee["default"].validateJSON) {
|
|
161
|
+
_TransactionRequestFee["default"].validateJSON(data['fee']);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
return true;
|
|
165
|
+
}
|
|
166
|
+
}]);
|
|
167
|
+
}();
|
|
168
|
+
TokenizationUpdateBlocklistAddressesRequest.RequiredProperties = ["action", "source", "addresses", "fee"];
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* @member {module:model/TokenizationUpdateAddressAction} action
|
|
172
|
+
*/
|
|
173
|
+
TokenizationUpdateBlocklistAddressesRequest.prototype['action'] = undefined;
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* @member {module:model/TokenizationTokenOperationSource} source
|
|
177
|
+
*/
|
|
178
|
+
TokenizationUpdateBlocklistAddressesRequest.prototype['source'] = undefined;
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* A list of addresses to manage. For 'add' operations, notes can be provided. For 'remove' operations, notes are ignored.
|
|
182
|
+
* @member {Array.<module:model/TokenizationUpdateBlocklistAddressesParamsAddressesInner>} addresses
|
|
183
|
+
*/
|
|
184
|
+
TokenizationUpdateBlocklistAddressesRequest.prototype['addresses'] = undefined;
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* 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.
|
|
188
|
+
* @member {String} app_initiator
|
|
189
|
+
*/
|
|
190
|
+
TokenizationUpdateBlocklistAddressesRequest.prototype['app_initiator'] = undefined;
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* @member {module:model/TransactionRequestFee} fee
|
|
194
|
+
*/
|
|
195
|
+
TokenizationUpdateBlocklistAddressesRequest.prototype['fee'] = undefined;
|
|
196
|
+
|
|
197
|
+
// Implement TokenizationUpdateBlocklistAddressesParams interface:
|
|
198
|
+
/**
|
|
199
|
+
* @member {module:model/TokenizationUpdateAddressAction} action
|
|
200
|
+
*/
|
|
201
|
+
_TokenizationUpdateBlocklistAddressesParams["default"].prototype['action'] = undefined;
|
|
202
|
+
/**
|
|
203
|
+
* @member {module:model/TokenizationTokenOperationSource} source
|
|
204
|
+
*/
|
|
205
|
+
_TokenizationUpdateBlocklistAddressesParams["default"].prototype['source'] = undefined;
|
|
206
|
+
/**
|
|
207
|
+
* A list of addresses to manage. For 'add' operations, notes can be provided. For 'remove' operations, notes are ignored.
|
|
208
|
+
* @member {Array.<module:model/TokenizationUpdateBlocklistAddressesParamsAddressesInner>} addresses
|
|
209
|
+
*/
|
|
210
|
+
_TokenizationUpdateBlocklistAddressesParams["default"].prototype['addresses'] = undefined;
|
|
211
|
+
// Implement TokenizationAppInitiator interface:
|
|
212
|
+
/**
|
|
213
|
+
* 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.
|
|
214
|
+
* @member {String} app_initiator
|
|
215
|
+
*/
|
|
216
|
+
_TokenizationAppInitiator["default"].prototype['app_initiator'] = undefined;
|
|
217
|
+
var _default = exports["default"] = TokenizationUpdateBlocklistAddressesRequest;
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _TokenizationOperationSourceType = _interopRequireDefault(require("./TokenizationOperationSourceType"));
|
|
9
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
10
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
|
+
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
12
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
13
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
14
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
15
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
16
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
17
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
18
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
19
|
+
* Cobo Wallet as a Service 2.0
|
|
20
|
+
*
|
|
21
|
+
* Contact: help@cobo.com
|
|
22
|
+
*
|
|
23
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
24
|
+
* https://openapi-generator.tech
|
|
25
|
+
* Do not edit the class manually.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
/**
|
|
29
|
+
* The TokenizationWeb3OperationSource model module.
|
|
30
|
+
* @module model/TokenizationWeb3OperationSource
|
|
31
|
+
*/
|
|
32
|
+
var TokenizationWeb3OperationSource = /*#__PURE__*/function () {
|
|
33
|
+
/**
|
|
34
|
+
* Constructs a new <code>TokenizationWeb3OperationSource</code>.
|
|
35
|
+
* @alias module:model/TokenizationWeb3OperationSource
|
|
36
|
+
* @param source_type {module:model/TokenizationOperationSourceType}
|
|
37
|
+
* @param wallet_id {String} The wallet ID.
|
|
38
|
+
* @param address {String} The wallet address to interact with the token contract from.
|
|
39
|
+
*/
|
|
40
|
+
function TokenizationWeb3OperationSource(source_type, wallet_id, address) {
|
|
41
|
+
_classCallCheck(this, TokenizationWeb3OperationSource);
|
|
42
|
+
TokenizationWeb3OperationSource.initialize(this, source_type, wallet_id, address);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Initializes the fields of this object.
|
|
47
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
48
|
+
* Only for internal use.
|
|
49
|
+
*/
|
|
50
|
+
return _createClass(TokenizationWeb3OperationSource, null, [{
|
|
51
|
+
key: "initialize",
|
|
52
|
+
value: function initialize(obj, source_type, wallet_id, address) {
|
|
53
|
+
obj['source_type'] = source_type;
|
|
54
|
+
obj['wallet_id'] = wallet_id;
|
|
55
|
+
obj['address'] = address;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Constructs a <code>TokenizationWeb3OperationSource</code> from a plain JavaScript object, optionally creating a new instance.
|
|
60
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
61
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
62
|
+
* @param {module:model/TokenizationWeb3OperationSource} obj Optional instance to populate.
|
|
63
|
+
* @return {module:model/TokenizationWeb3OperationSource} The populated <code>TokenizationWeb3OperationSource</code> instance.
|
|
64
|
+
*/
|
|
65
|
+
}, {
|
|
66
|
+
key: "constructFromObject",
|
|
67
|
+
value: function constructFromObject(data, obj) {
|
|
68
|
+
if (data) {
|
|
69
|
+
obj = obj || new TokenizationWeb3OperationSource();
|
|
70
|
+
if (data.hasOwnProperty('source_type')) {
|
|
71
|
+
obj['source_type'] = _TokenizationOperationSourceType["default"].constructFromObject(data['source_type']);
|
|
72
|
+
}
|
|
73
|
+
if (data.hasOwnProperty('wallet_id')) {
|
|
74
|
+
obj['wallet_id'] = _ApiClient["default"].convertToType(data['wallet_id'], 'String');
|
|
75
|
+
}
|
|
76
|
+
if (data.hasOwnProperty('address')) {
|
|
77
|
+
obj['address'] = _ApiClient["default"].convertToType(data['address'], 'String');
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
return obj;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Validates the JSON data with respect to <code>TokenizationWeb3OperationSource</code>.
|
|
85
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
86
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>TokenizationWeb3OperationSource</code>.
|
|
87
|
+
*/
|
|
88
|
+
}, {
|
|
89
|
+
key: "validateJSON",
|
|
90
|
+
value: function validateJSON(data) {
|
|
91
|
+
// check to make sure all required properties are present in the JSON string
|
|
92
|
+
var _iterator = _createForOfIteratorHelper(TokenizationWeb3OperationSource.RequiredProperties),
|
|
93
|
+
_step;
|
|
94
|
+
try {
|
|
95
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
96
|
+
var property = _step.value;
|
|
97
|
+
if (!data.hasOwnProperty(property)) {
|
|
98
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
// ensure the json data is a string
|
|
102
|
+
} catch (err) {
|
|
103
|
+
_iterator.e(err);
|
|
104
|
+
} finally {
|
|
105
|
+
_iterator.f();
|
|
106
|
+
}
|
|
107
|
+
if (data['wallet_id'] && !(typeof data['wallet_id'] === 'string' || data['wallet_id'] instanceof String)) {
|
|
108
|
+
throw new Error("Expected the field `wallet_id` to be a primitive type in the JSON string but got " + data['wallet_id']);
|
|
109
|
+
}
|
|
110
|
+
// ensure the json data is a string
|
|
111
|
+
if (data['address'] && !(typeof data['address'] === 'string' || data['address'] instanceof String)) {
|
|
112
|
+
throw new Error("Expected the field `address` to be a primitive type in the JSON string but got " + data['address']);
|
|
113
|
+
}
|
|
114
|
+
return true;
|
|
115
|
+
}
|
|
116
|
+
}]);
|
|
117
|
+
}();
|
|
118
|
+
TokenizationWeb3OperationSource.RequiredProperties = ["source_type", "wallet_id", "address"];
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* @member {module:model/TokenizationOperationSourceType} source_type
|
|
122
|
+
*/
|
|
123
|
+
TokenizationWeb3OperationSource.prototype['source_type'] = undefined;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* The wallet ID.
|
|
127
|
+
* @member {String} wallet_id
|
|
128
|
+
*/
|
|
129
|
+
TokenizationWeb3OperationSource.prototype['wallet_id'] = undefined;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* The wallet address to interact with the token contract from.
|
|
133
|
+
* @member {String} address
|
|
134
|
+
*/
|
|
135
|
+
TokenizationWeb3OperationSource.prototype['address'] = undefined;
|
|
136
|
+
var _default = exports["default"] = TokenizationWeb3OperationSource;
|
|
@@ -37,7 +37,7 @@ var TokensEventData = /*#__PURE__*/function () {
|
|
|
37
37
|
* Constructs a new <code>TokensEventData</code>.
|
|
38
38
|
* @alias module:model/TokensEventData
|
|
39
39
|
* @implements module:model/WebhookEventDataType
|
|
40
|
-
* @param data_type {module:model/TokensEventData.DataTypeEnum} 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. - `
|
|
40
|
+
* @param data_type {module:model/TokensEventData.DataTypeEnum} 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.
|
|
41
41
|
* @param tokens {Array.<module:model/TokenInfo>} The enabled tokens.
|
|
42
42
|
*/
|
|
43
43
|
function TokensEventData(data_type, tokens) {
|
|
@@ -146,7 +146,7 @@ var TokensEventData = /*#__PURE__*/function () {
|
|
|
146
146
|
TokensEventData.RequiredProperties = ["data_type", "tokens"];
|
|
147
147
|
|
|
148
148
|
/**
|
|
149
|
-
* 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. - `
|
|
149
|
+
* 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.
|
|
150
150
|
* @member {module:model/TokensEventData.DataTypeEnum} data_type
|
|
151
151
|
*/
|
|
152
152
|
TokensEventData.prototype['data_type'] = undefined;
|
|
@@ -169,7 +169,7 @@ TokensEventData.prototype['wallet_subtypes'] = undefined;
|
|
|
169
169
|
|
|
170
170
|
// Implement WebhookEventDataType interface:
|
|
171
171
|
/**
|
|
172
|
-
* 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. - `
|
|
172
|
+
* 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.
|
|
173
173
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
174
174
|
*/
|
|
175
175
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -220,11 +220,6 @@ TokensEventData['DataTypeEnum'] = {
|
|
|
220
220
|
* @const
|
|
221
221
|
*/
|
|
222
222
|
"TokenListing": "TokenListing",
|
|
223
|
-
/**
|
|
224
|
-
* value: "BalanceUpdateInfo"
|
|
225
|
-
* @const
|
|
226
|
-
*/
|
|
227
|
-
"BalanceUpdateInfo": "BalanceUpdateInfo",
|
|
228
223
|
/**
|
|
229
224
|
* value: "PaymentOrder"
|
|
230
225
|
* @const
|
|
@@ -240,6 +235,16 @@ TokensEventData['DataTypeEnum'] = {
|
|
|
240
235
|
* @const
|
|
241
236
|
*/
|
|
242
237
|
"PaymentSettlement": "PaymentSettlement",
|
|
238
|
+
/**
|
|
239
|
+
* value: "BalanceUpdateInfo"
|
|
240
|
+
* @const
|
|
241
|
+
*/
|
|
242
|
+
"BalanceUpdateInfo": "BalanceUpdateInfo",
|
|
243
|
+
/**
|
|
244
|
+
* value: "SuspendedToken"
|
|
245
|
+
* @const
|
|
246
|
+
*/
|
|
247
|
+
"SuspendedToken": "SuspendedToken",
|
|
243
248
|
/**
|
|
244
249
|
* value: "unknown_default_open_api"
|
|
245
250
|
* @const
|
|
@@ -38,7 +38,7 @@ var TopUpAddress = /*#__PURE__*/function () {
|
|
|
38
38
|
* @param custom_payer_id {String} A unique identifier assigned by the developer to track and identify individual payers in their system.
|
|
39
39
|
* @param merchant_id {String} The merchant ID.
|
|
40
40
|
* @param token_id {String} The token ID, which is a unique identifier that specifies both the blockchain network and cryptocurrency token in the format `{CHAIN}_{TOKEN}`.
|
|
41
|
-
* @param min_amount {String} The minimum top-up amount allowed for this address. Top-ups below this threshold will not be credited to merchant
|
|
41
|
+
* @param min_amount {String} The minimum top-up amount allowed for this address. Top-ups below this threshold will not be credited to merchant or developer funds.
|
|
42
42
|
*/
|
|
43
43
|
function TopUpAddress(address, payer_id, custom_payer_id, merchant_id, token_id, min_amount) {
|
|
44
44
|
_classCallCheck(this, TopUpAddress);
|
|
@@ -211,7 +211,7 @@ TopUpAddress.prototype['chain'] = undefined;
|
|
|
211
211
|
TopUpAddress.prototype['developer_fee_rate'] = undefined;
|
|
212
212
|
|
|
213
213
|
/**
|
|
214
|
-
* The minimum top-up amount allowed for this address. Top-ups below this threshold will not be credited to merchant
|
|
214
|
+
* The minimum top-up amount allowed for this address. Top-ups below this threshold will not be credited to merchant or developer funds.
|
|
215
215
|
* @member {String} min_amount
|
|
216
216
|
*/
|
|
217
217
|
TopUpAddress.prototype['min_amount'] = undefined;
|
|
@@ -188,7 +188,7 @@ TransactionEvmEip1559Fee.prototype['gas_limit'] = undefined;
|
|
|
188
188
|
TransactionEvmEip1559Fee.prototype['fee_type'] = undefined;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
|
-
* The token
|
|
191
|
+
* The token used to pay the transaction fee.
|
|
192
192
|
* @member {String} token_id
|
|
193
193
|
*/
|
|
194
194
|
TransactionEvmEip1559Fee.prototype['token_id'] = undefined;
|
|
@@ -200,7 +200,7 @@ TransactionEvmEip1559Fee.prototype['token_id'] = undefined;
|
|
|
200
200
|
TransactionEvmEip1559Fee.prototype['effective_gas_price'] = undefined;
|
|
201
201
|
|
|
202
202
|
/**
|
|
203
|
-
* The transaction fee.
|
|
203
|
+
* The actually charged transaction fee.
|
|
204
204
|
* @member {String} fee_used
|
|
205
205
|
*/
|
|
206
206
|
TransactionEvmEip1559Fee.prototype['fee_used'] = undefined;
|
|
@@ -168,13 +168,13 @@ TransactionEvmLegacyFee.prototype['gas_limit'] = undefined;
|
|
|
168
168
|
TransactionEvmLegacyFee.prototype['fee_type'] = undefined;
|
|
169
169
|
|
|
170
170
|
/**
|
|
171
|
-
* The token
|
|
171
|
+
* The token used to pay the transaction fee.
|
|
172
172
|
* @member {String} token_id
|
|
173
173
|
*/
|
|
174
174
|
TransactionEvmLegacyFee.prototype['token_id'] = undefined;
|
|
175
175
|
|
|
176
176
|
/**
|
|
177
|
-
* The transaction fee.
|
|
177
|
+
* The actually charged transaction fee.
|
|
178
178
|
* @member {String} fee_used
|
|
179
179
|
*/
|
|
180
180
|
TransactionEvmLegacyFee.prototype['fee_used'] = undefined;
|
|
@@ -34,7 +34,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
34
34
|
var TransactionFILFee = /*#__PURE__*/function () {
|
|
35
35
|
/**
|
|
36
36
|
* Constructs a new <code>TransactionFILFee</code>.
|
|
37
|
-
* The transaction fee actually charged by the chain that uses the
|
|
37
|
+
* The transaction fee actually charged by the chain that uses the Filecoin fee model. In this model, the fee is calculated as: fee = base fee * gas used + gas premium * gas limit. For more details, refer to [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). Switch between the tabs to display the properties for different transaction fee models.
|
|
38
38
|
* @alias module:model/TransactionFILFee
|
|
39
39
|
* @implements module:model/FILBase
|
|
40
40
|
* @implements module:model/FILPrice
|
|
@@ -158,25 +158,25 @@ var TransactionFILFee = /*#__PURE__*/function () {
|
|
|
158
158
|
TransactionFILFee.RequiredProperties = ["fee_type"];
|
|
159
159
|
|
|
160
160
|
/**
|
|
161
|
-
*
|
|
161
|
+
* The minimum fee required for a transaction to be included in a block. The base fee is dynamically adjusted based on network congestion to maintain target block utilization. It is burned rather than paid to miners, reducing the total Filecoin supply over time.
|
|
162
162
|
* @member {String} gas_base
|
|
163
163
|
*/
|
|
164
164
|
TransactionFILFee.prototype['gas_base'] = undefined;
|
|
165
165
|
|
|
166
166
|
/**
|
|
167
|
-
* An optional
|
|
167
|
+
* An optional tip you can include to prioritize your transaction. The gas premium incentivizes miners to include your transaction sooner than those offering only the base fee.
|
|
168
168
|
* @member {String} gas_premium
|
|
169
169
|
*/
|
|
170
170
|
TransactionFILFee.prototype['gas_premium'] = undefined;
|
|
171
171
|
|
|
172
172
|
/**
|
|
173
|
-
* The
|
|
173
|
+
* The maximum gas price you are willing to pay per unit of gas.
|
|
174
174
|
* @member {String} gas_fee_cap
|
|
175
175
|
*/
|
|
176
176
|
TransactionFILFee.prototype['gas_fee_cap'] = undefined;
|
|
177
177
|
|
|
178
178
|
/**
|
|
179
|
-
*
|
|
179
|
+
* The maximum amount of gas your transaction is allowed to consume.
|
|
180
180
|
* @member {String} gas_limit
|
|
181
181
|
*/
|
|
182
182
|
TransactionFILFee.prototype['gas_limit'] = undefined;
|
|
@@ -187,13 +187,13 @@ TransactionFILFee.prototype['gas_limit'] = undefined;
|
|
|
187
187
|
TransactionFILFee.prototype['fee_type'] = undefined;
|
|
188
188
|
|
|
189
189
|
/**
|
|
190
|
-
* The token
|
|
190
|
+
* The token used to pay the transaction fee.
|
|
191
191
|
* @member {String} token_id
|
|
192
192
|
*/
|
|
193
193
|
TransactionFILFee.prototype['token_id'] = undefined;
|
|
194
194
|
|
|
195
195
|
/**
|
|
196
|
-
* The transaction fee.
|
|
196
|
+
* The actually charged transaction fee.
|
|
197
197
|
* @member {String} fee_used
|
|
198
198
|
*/
|
|
199
199
|
TransactionFILFee.prototype['fee_used'] = undefined;
|
|
@@ -206,23 +206,23 @@ TransactionFILFee.prototype['estimated_fee_used'] = undefined;
|
|
|
206
206
|
|
|
207
207
|
// Implement FILBase interface:
|
|
208
208
|
/**
|
|
209
|
-
*
|
|
209
|
+
* The minimum fee required for a transaction to be included in a block. The base fee is dynamically adjusted based on network congestion to maintain target block utilization. It is burned rather than paid to miners, reducing the total Filecoin supply over time.
|
|
210
210
|
* @member {String} gas_base
|
|
211
211
|
*/
|
|
212
212
|
_FILBase["default"].prototype['gas_base'] = undefined;
|
|
213
213
|
// Implement FILPrice interface:
|
|
214
214
|
/**
|
|
215
|
-
* An optional
|
|
215
|
+
* An optional tip you can include to prioritize your transaction. The gas premium incentivizes miners to include your transaction sooner than those offering only the base fee.
|
|
216
216
|
* @member {String} gas_premium
|
|
217
217
|
*/
|
|
218
218
|
_FILPrice["default"].prototype['gas_premium'] = undefined;
|
|
219
219
|
/**
|
|
220
|
-
* The
|
|
220
|
+
* The maximum gas price you are willing to pay per unit of gas.
|
|
221
221
|
* @member {String} gas_fee_cap
|
|
222
222
|
*/
|
|
223
223
|
_FILPrice["default"].prototype['gas_fee_cap'] = undefined;
|
|
224
224
|
/**
|
|
225
|
-
*
|
|
225
|
+
* The maximum amount of gas your transaction is allowed to consume.
|
|
226
226
|
* @member {String} gas_limit
|
|
227
227
|
*/
|
|
228
228
|
_FILPrice["default"].prototype['gas_limit'] = undefined;
|
|
@@ -290,7 +290,7 @@ _defineProperty(TransactionFee, "fromJSON", function (json_string) {
|
|
|
290
290
|
TransactionFee.prototype['fee_type'] = undefined;
|
|
291
291
|
|
|
292
292
|
/**
|
|
293
|
-
* The token
|
|
293
|
+
* The token used to pay the transaction fee.
|
|
294
294
|
* @member {String} token_id
|
|
295
295
|
*/
|
|
296
296
|
TransactionFee.prototype['token_id'] = undefined;
|
|
@@ -302,7 +302,7 @@ TransactionFee.prototype['token_id'] = undefined;
|
|
|
302
302
|
TransactionFee.prototype['effective_gas_price'] = undefined;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
|
-
* The transaction fee.
|
|
305
|
+
* The actually charged transaction fee.
|
|
306
306
|
* @member {String} fee_used
|
|
307
307
|
*/
|
|
308
308
|
TransactionFee.prototype['fee_used'] = undefined;
|
|
@@ -332,7 +332,7 @@ TransactionFee.prototype['max_fee_per_gas'] = undefined;
|
|
|
332
332
|
TransactionFee.prototype['max_priority_fee_per_gas'] = undefined;
|
|
333
333
|
|
|
334
334
|
/**
|
|
335
|
-
*
|
|
335
|
+
* The maximum amount of gas your transaction is allowed to consume.
|
|
336
336
|
* @member {String} gas_limit
|
|
337
337
|
*/
|
|
338
338
|
TransactionFee.prototype['gas_limit'] = undefined;
|
|
@@ -356,43 +356,43 @@ TransactionFee.prototype['max_fee_amount'] = undefined;
|
|
|
356
356
|
TransactionFee.prototype['fee_rate'] = undefined;
|
|
357
357
|
|
|
358
358
|
/**
|
|
359
|
-
*
|
|
359
|
+
* A fixed fee charged per signature. The default is 5,000 lamports per signature.
|
|
360
360
|
* @member {String} base_fee
|
|
361
361
|
*/
|
|
362
362
|
TransactionFee.prototype['base_fee'] = undefined;
|
|
363
363
|
|
|
364
364
|
/**
|
|
365
|
-
* The fee charged
|
|
365
|
+
* 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.
|
|
366
366
|
* @member {String} rent_amount
|
|
367
367
|
*/
|
|
368
368
|
TransactionFee.prototype['rent_amount'] = undefined;
|
|
369
369
|
|
|
370
370
|
/**
|
|
371
|
-
* The
|
|
371
|
+
* The price paid per compute unit. This value determines the priority fee for the transaction, allowing you to increase inclusion probability in congested conditions.
|
|
372
372
|
* @member {String} compute_unit_price
|
|
373
373
|
*/
|
|
374
374
|
TransactionFee.prototype['compute_unit_price'] = undefined;
|
|
375
375
|
|
|
376
376
|
/**
|
|
377
|
-
* The maximum number of compute units
|
|
377
|
+
* The maximum number of compute units your transaction is allowed to consume. It sets an upper bound on computational resource usage to prevent overload.
|
|
378
378
|
* @member {String} compute_unit_limit
|
|
379
379
|
*/
|
|
380
380
|
TransactionFee.prototype['compute_unit_limit'] = undefined;
|
|
381
381
|
|
|
382
382
|
/**
|
|
383
|
-
*
|
|
383
|
+
* The minimum fee required for a transaction to be included in a block. The base fee is dynamically adjusted based on network congestion to maintain target block utilization. It is burned rather than paid to miners, reducing the total Filecoin supply over time.
|
|
384
384
|
* @member {String} gas_base
|
|
385
385
|
*/
|
|
386
386
|
TransactionFee.prototype['gas_base'] = undefined;
|
|
387
387
|
|
|
388
388
|
/**
|
|
389
|
-
* An optional
|
|
389
|
+
* An optional tip you can include to prioritize your transaction. The gas premium incentivizes miners to include your transaction sooner than those offering only the base fee.
|
|
390
390
|
* @member {String} gas_premium
|
|
391
391
|
*/
|
|
392
392
|
TransactionFee.prototype['gas_premium'] = undefined;
|
|
393
393
|
|
|
394
394
|
/**
|
|
395
|
-
* The
|
|
395
|
+
* The maximum gas price you are willing to pay per unit of gas.
|
|
396
396
|
* @member {String} gas_fee_cap
|
|
397
397
|
*/
|
|
398
398
|
TransactionFee.prototype['gas_fee_cap'] = undefined;
|