@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,165 @@
|
|
|
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 _TokenizationAllowlistActivationParams = _interopRequireDefault(require("./TokenizationAllowlistActivationParams"));
|
|
9
|
+
var _TokenizationOperationType = _interopRequireDefault(require("./TokenizationOperationType"));
|
|
10
|
+
var _TokenizationTokenOperationSource = _interopRequireDefault(require("./TokenizationTokenOperationSource"));
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
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); }
|
|
13
|
+
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; } } }; }
|
|
14
|
+
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; } }
|
|
15
|
+
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; }
|
|
16
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
17
|
+
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); } }
|
|
18
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
19
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
20
|
+
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); } /**
|
|
21
|
+
* Cobo Wallet as a Service 2.0
|
|
22
|
+
*
|
|
23
|
+
* Contact: help@cobo.com
|
|
24
|
+
*
|
|
25
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
26
|
+
* https://openapi-generator.tech
|
|
27
|
+
* Do not edit the class manually.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
/**
|
|
31
|
+
* The TokenizationToggleAllowlistEstimateFeeParams model module.
|
|
32
|
+
* @module model/TokenizationToggleAllowlistEstimateFeeParams
|
|
33
|
+
*/
|
|
34
|
+
var TokenizationToggleAllowlistEstimateFeeParams = /*#__PURE__*/function () {
|
|
35
|
+
/**
|
|
36
|
+
* Constructs a new <code>TokenizationToggleAllowlistEstimateFeeParams</code>.
|
|
37
|
+
* @alias module:model/TokenizationToggleAllowlistEstimateFeeParams
|
|
38
|
+
* @implements module:model/TokenizationAllowlistActivationParams
|
|
39
|
+
* @param source {module:model/TokenizationTokenOperationSource}
|
|
40
|
+
* @param activation {Boolean} Whether to activate the allowlist feature for the token.
|
|
41
|
+
* @param operation_type {module:model/TokenizationOperationType}
|
|
42
|
+
* @param token_id {String} The ID of the token.
|
|
43
|
+
*/
|
|
44
|
+
function TokenizationToggleAllowlistEstimateFeeParams(source, activation, operation_type, token_id) {
|
|
45
|
+
_classCallCheck(this, TokenizationToggleAllowlistEstimateFeeParams);
|
|
46
|
+
_TokenizationAllowlistActivationParams["default"].initialize(this, source, activation);
|
|
47
|
+
TokenizationToggleAllowlistEstimateFeeParams.initialize(this, source, activation, operation_type, token_id);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Initializes the fields of this object.
|
|
52
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
53
|
+
* Only for internal use.
|
|
54
|
+
*/
|
|
55
|
+
return _createClass(TokenizationToggleAllowlistEstimateFeeParams, null, [{
|
|
56
|
+
key: "initialize",
|
|
57
|
+
value: function initialize(obj, source, activation, operation_type, token_id) {
|
|
58
|
+
obj['source'] = source;
|
|
59
|
+
obj['activation'] = activation;
|
|
60
|
+
obj['operation_type'] = operation_type;
|
|
61
|
+
obj['token_id'] = token_id;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Constructs a <code>TokenizationToggleAllowlistEstimateFeeParams</code> from a plain JavaScript object, optionally creating a new instance.
|
|
66
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
67
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
68
|
+
* @param {module:model/TokenizationToggleAllowlistEstimateFeeParams} obj Optional instance to populate.
|
|
69
|
+
* @return {module:model/TokenizationToggleAllowlistEstimateFeeParams} The populated <code>TokenizationToggleAllowlistEstimateFeeParams</code> instance.
|
|
70
|
+
*/
|
|
71
|
+
}, {
|
|
72
|
+
key: "constructFromObject",
|
|
73
|
+
value: function constructFromObject(data, obj) {
|
|
74
|
+
if (data) {
|
|
75
|
+
obj = obj || new TokenizationToggleAllowlistEstimateFeeParams();
|
|
76
|
+
_TokenizationAllowlistActivationParams["default"].constructFromObject(data, obj);
|
|
77
|
+
if (data.hasOwnProperty('source')) {
|
|
78
|
+
obj['source'] = _TokenizationTokenOperationSource["default"].constructFromObject(data['source']);
|
|
79
|
+
}
|
|
80
|
+
if (data.hasOwnProperty('activation')) {
|
|
81
|
+
obj['activation'] = _ApiClient["default"].convertToType(data['activation'], 'Boolean');
|
|
82
|
+
}
|
|
83
|
+
if (data.hasOwnProperty('operation_type')) {
|
|
84
|
+
obj['operation_type'] = _TokenizationOperationType["default"].constructFromObject(data['operation_type']);
|
|
85
|
+
}
|
|
86
|
+
if (data.hasOwnProperty('token_id')) {
|
|
87
|
+
obj['token_id'] = _ApiClient["default"].convertToType(data['token_id'], 'String');
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
return obj;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Validates the JSON data with respect to <code>TokenizationToggleAllowlistEstimateFeeParams</code>.
|
|
95
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
96
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>TokenizationToggleAllowlistEstimateFeeParams</code>.
|
|
97
|
+
*/
|
|
98
|
+
}, {
|
|
99
|
+
key: "validateJSON",
|
|
100
|
+
value: function validateJSON(data) {
|
|
101
|
+
// check to make sure all required properties are present in the JSON string
|
|
102
|
+
var _iterator = _createForOfIteratorHelper(TokenizationToggleAllowlistEstimateFeeParams.RequiredProperties),
|
|
103
|
+
_step;
|
|
104
|
+
try {
|
|
105
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
106
|
+
var property = _step.value;
|
|
107
|
+
if (!data.hasOwnProperty(property)) {
|
|
108
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
// validate the optional field `source`
|
|
112
|
+
} catch (err) {
|
|
113
|
+
_iterator.e(err);
|
|
114
|
+
} finally {
|
|
115
|
+
_iterator.f();
|
|
116
|
+
}
|
|
117
|
+
if (data['source']) {
|
|
118
|
+
// data not null
|
|
119
|
+
if (!!_TokenizationTokenOperationSource["default"].validateJSON) {
|
|
120
|
+
_TokenizationTokenOperationSource["default"].validateJSON(data['source']);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
// ensure the json data is a string
|
|
124
|
+
if (data['token_id'] && !(typeof data['token_id'] === 'string' || data['token_id'] instanceof String)) {
|
|
125
|
+
throw new Error("Expected the field `token_id` to be a primitive type in the JSON string but got " + data['token_id']);
|
|
126
|
+
}
|
|
127
|
+
return true;
|
|
128
|
+
}
|
|
129
|
+
}]);
|
|
130
|
+
}();
|
|
131
|
+
TokenizationToggleAllowlistEstimateFeeParams.RequiredProperties = ["source", "activation", "operation_type", "token_id"];
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* @member {module:model/TokenizationTokenOperationSource} source
|
|
135
|
+
*/
|
|
136
|
+
TokenizationToggleAllowlistEstimateFeeParams.prototype['source'] = undefined;
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Whether to activate the allowlist feature for the token.
|
|
140
|
+
* @member {Boolean} activation
|
|
141
|
+
*/
|
|
142
|
+
TokenizationToggleAllowlistEstimateFeeParams.prototype['activation'] = undefined;
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* @member {module:model/TokenizationOperationType} operation_type
|
|
146
|
+
*/
|
|
147
|
+
TokenizationToggleAllowlistEstimateFeeParams.prototype['operation_type'] = undefined;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* The ID of the token.
|
|
151
|
+
* @member {String} token_id
|
|
152
|
+
*/
|
|
153
|
+
TokenizationToggleAllowlistEstimateFeeParams.prototype['token_id'] = undefined;
|
|
154
|
+
|
|
155
|
+
// Implement TokenizationAllowlistActivationParams interface:
|
|
156
|
+
/**
|
|
157
|
+
* @member {module:model/TokenizationTokenOperationSource} source
|
|
158
|
+
*/
|
|
159
|
+
_TokenizationAllowlistActivationParams["default"].prototype['source'] = undefined;
|
|
160
|
+
/**
|
|
161
|
+
* Whether to activate the allowlist feature for the token.
|
|
162
|
+
* @member {Boolean} activation
|
|
163
|
+
*/
|
|
164
|
+
_TokenizationAllowlistActivationParams["default"].prototype['activation'] = undefined;
|
|
165
|
+
var _default = exports["default"] = TokenizationToggleAllowlistEstimateFeeParams;
|
|
@@ -0,0 +1,309 @@
|
|
|
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 _TokenizationAddressPermission = _interopRequireDefault(require("./TokenizationAddressPermission"));
|
|
9
|
+
var _TokenizationStatus = _interopRequireDefault(require("./TokenizationStatus"));
|
|
10
|
+
var _TokenizationTokenInfo = _interopRequireDefault(require("./TokenizationTokenInfo"));
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
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); }
|
|
13
|
+
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; } } }; }
|
|
14
|
+
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; } }
|
|
15
|
+
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; }
|
|
16
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
17
|
+
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); } }
|
|
18
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
19
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
20
|
+
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); } /**
|
|
21
|
+
* Cobo Wallet as a Service 2.0
|
|
22
|
+
*
|
|
23
|
+
* Contact: help@cobo.com
|
|
24
|
+
*
|
|
25
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
26
|
+
* https://openapi-generator.tech
|
|
27
|
+
* Do not edit the class manually.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
/**
|
|
31
|
+
* The TokenizationTokenDetailInfo model module.
|
|
32
|
+
* @module model/TokenizationTokenDetailInfo
|
|
33
|
+
*/
|
|
34
|
+
var TokenizationTokenDetailInfo = /*#__PURE__*/function () {
|
|
35
|
+
/**
|
|
36
|
+
* Constructs a new <code>TokenizationTokenDetailInfo</code>.
|
|
37
|
+
* @alias module:model/TokenizationTokenDetailInfo
|
|
38
|
+
* @implements module:model/TokenizationTokenInfo
|
|
39
|
+
* @param token_id {String} The unique token identifier.
|
|
40
|
+
* @param chain_id {String} The chain ID of the tokenization contract.
|
|
41
|
+
* @param token_symbol {String} The unique token symbol.
|
|
42
|
+
* @param decimals {Number} The number of decimals of the token.
|
|
43
|
+
* @param status {module:model/TokenizationStatus}
|
|
44
|
+
*/
|
|
45
|
+
function TokenizationTokenDetailInfo(token_id, chain_id, token_symbol, decimals, status) {
|
|
46
|
+
_classCallCheck(this, TokenizationTokenDetailInfo);
|
|
47
|
+
_TokenizationTokenInfo["default"].initialize(this, token_id, chain_id, token_symbol, decimals, status);
|
|
48
|
+
TokenizationTokenDetailInfo.initialize(this, token_id, chain_id, token_symbol, decimals, status);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Initializes the fields of this object.
|
|
53
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
54
|
+
* Only for internal use.
|
|
55
|
+
*/
|
|
56
|
+
return _createClass(TokenizationTokenDetailInfo, null, [{
|
|
57
|
+
key: "initialize",
|
|
58
|
+
value: function initialize(obj, token_id, chain_id, token_symbol, decimals, status) {
|
|
59
|
+
obj['token_id'] = token_id;
|
|
60
|
+
obj['chain_id'] = chain_id;
|
|
61
|
+
obj['token_symbol'] = token_symbol;
|
|
62
|
+
obj['decimals'] = decimals;
|
|
63
|
+
obj['status'] = status;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Constructs a <code>TokenizationTokenDetailInfo</code> from a plain JavaScript object, optionally creating a new instance.
|
|
68
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
69
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
70
|
+
* @param {module:model/TokenizationTokenDetailInfo} obj Optional instance to populate.
|
|
71
|
+
* @return {module:model/TokenizationTokenDetailInfo} The populated <code>TokenizationTokenDetailInfo</code> instance.
|
|
72
|
+
*/
|
|
73
|
+
}, {
|
|
74
|
+
key: "constructFromObject",
|
|
75
|
+
value: function constructFromObject(data, obj) {
|
|
76
|
+
if (data) {
|
|
77
|
+
obj = obj || new TokenizationTokenDetailInfo();
|
|
78
|
+
_TokenizationTokenInfo["default"].constructFromObject(data, obj);
|
|
79
|
+
if (data.hasOwnProperty('token_id')) {
|
|
80
|
+
obj['token_id'] = _ApiClient["default"].convertToType(data['token_id'], 'String');
|
|
81
|
+
}
|
|
82
|
+
if (data.hasOwnProperty('chain_id')) {
|
|
83
|
+
obj['chain_id'] = _ApiClient["default"].convertToType(data['chain_id'], 'String');
|
|
84
|
+
}
|
|
85
|
+
if (data.hasOwnProperty('token_address')) {
|
|
86
|
+
obj['token_address'] = _ApiClient["default"].convertToType(data['token_address'], 'String');
|
|
87
|
+
}
|
|
88
|
+
if (data.hasOwnProperty('token_name')) {
|
|
89
|
+
obj['token_name'] = _ApiClient["default"].convertToType(data['token_name'], 'String');
|
|
90
|
+
}
|
|
91
|
+
if (data.hasOwnProperty('token_symbol')) {
|
|
92
|
+
obj['token_symbol'] = _ApiClient["default"].convertToType(data['token_symbol'], 'String');
|
|
93
|
+
}
|
|
94
|
+
if (data.hasOwnProperty('decimals')) {
|
|
95
|
+
obj['decimals'] = _ApiClient["default"].convertToType(data['decimals'], 'Number');
|
|
96
|
+
}
|
|
97
|
+
if (data.hasOwnProperty('allowlist_activated')) {
|
|
98
|
+
obj['allowlist_activated'] = _ApiClient["default"].convertToType(data['allowlist_activated'], 'Boolean');
|
|
99
|
+
}
|
|
100
|
+
if (data.hasOwnProperty('status')) {
|
|
101
|
+
obj['status'] = _TokenizationStatus["default"].constructFromObject(data['status']);
|
|
102
|
+
}
|
|
103
|
+
if (data.hasOwnProperty('total_supply')) {
|
|
104
|
+
obj['total_supply'] = _ApiClient["default"].convertToType(data['total_supply'], 'String');
|
|
105
|
+
}
|
|
106
|
+
if (data.hasOwnProperty('holdings')) {
|
|
107
|
+
obj['holdings'] = _ApiClient["default"].convertToType(data['holdings'], 'String');
|
|
108
|
+
}
|
|
109
|
+
if (data.hasOwnProperty('permissions')) {
|
|
110
|
+
obj['permissions'] = _ApiClient["default"].convertToType(data['permissions'], [_TokenizationAddressPermission["default"]]);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
return obj;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* Validates the JSON data with respect to <code>TokenizationTokenDetailInfo</code>.
|
|
118
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
119
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>TokenizationTokenDetailInfo</code>.
|
|
120
|
+
*/
|
|
121
|
+
}, {
|
|
122
|
+
key: "validateJSON",
|
|
123
|
+
value: function validateJSON(data) {
|
|
124
|
+
// check to make sure all required properties are present in the JSON string
|
|
125
|
+
var _iterator = _createForOfIteratorHelper(TokenizationTokenDetailInfo.RequiredProperties),
|
|
126
|
+
_step;
|
|
127
|
+
try {
|
|
128
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
129
|
+
var property = _step.value;
|
|
130
|
+
if (!data.hasOwnProperty(property)) {
|
|
131
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
// ensure the json data is a string
|
|
135
|
+
} catch (err) {
|
|
136
|
+
_iterator.e(err);
|
|
137
|
+
} finally {
|
|
138
|
+
_iterator.f();
|
|
139
|
+
}
|
|
140
|
+
if (data['token_id'] && !(typeof data['token_id'] === 'string' || data['token_id'] instanceof String)) {
|
|
141
|
+
throw new Error("Expected the field `token_id` to be a primitive type in the JSON string but got " + data['token_id']);
|
|
142
|
+
}
|
|
143
|
+
// ensure the json data is a string
|
|
144
|
+
if (data['chain_id'] && !(typeof data['chain_id'] === 'string' || data['chain_id'] instanceof String)) {
|
|
145
|
+
throw new Error("Expected the field `chain_id` to be a primitive type in the JSON string but got " + data['chain_id']);
|
|
146
|
+
}
|
|
147
|
+
// ensure the json data is a string
|
|
148
|
+
if (data['token_address'] && !(typeof data['token_address'] === 'string' || data['token_address'] instanceof String)) {
|
|
149
|
+
throw new Error("Expected the field `token_address` to be a primitive type in the JSON string but got " + data['token_address']);
|
|
150
|
+
}
|
|
151
|
+
// ensure the json data is a string
|
|
152
|
+
if (data['token_name'] && !(typeof data['token_name'] === 'string' || data['token_name'] instanceof String)) {
|
|
153
|
+
throw new Error("Expected the field `token_name` to be a primitive type in the JSON string but got " + data['token_name']);
|
|
154
|
+
}
|
|
155
|
+
// ensure the json data is a string
|
|
156
|
+
if (data['token_symbol'] && !(typeof data['token_symbol'] === 'string' || data['token_symbol'] instanceof String)) {
|
|
157
|
+
throw new Error("Expected the field `token_symbol` to be a primitive type in the JSON string but got " + data['token_symbol']);
|
|
158
|
+
}
|
|
159
|
+
// ensure the json data is a string
|
|
160
|
+
if (data['total_supply'] && !(typeof data['total_supply'] === 'string' || data['total_supply'] instanceof String)) {
|
|
161
|
+
throw new Error("Expected the field `total_supply` to be a primitive type in the JSON string but got " + data['total_supply']);
|
|
162
|
+
}
|
|
163
|
+
// ensure the json data is a string
|
|
164
|
+
if (data['holdings'] && !(typeof data['holdings'] === 'string' || data['holdings'] instanceof String)) {
|
|
165
|
+
throw new Error("Expected the field `holdings` to be a primitive type in the JSON string but got " + data['holdings']);
|
|
166
|
+
}
|
|
167
|
+
if (data['permissions']) {
|
|
168
|
+
// data not null
|
|
169
|
+
// ensure the json data is an array
|
|
170
|
+
if (!Array.isArray(data['permissions'])) {
|
|
171
|
+
throw new Error("Expected the field `permissions` to be an array in the JSON data but got " + data['permissions']);
|
|
172
|
+
}
|
|
173
|
+
// validate the optional field `permissions` (array)
|
|
174
|
+
var _iterator2 = _createForOfIteratorHelper(data['permissions']),
|
|
175
|
+
_step2;
|
|
176
|
+
try {
|
|
177
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
178
|
+
var item = _step2.value;
|
|
179
|
+
_TokenizationAddressPermission["default"].validateJSON(item);
|
|
180
|
+
}
|
|
181
|
+
} catch (err) {
|
|
182
|
+
_iterator2.e(err);
|
|
183
|
+
} finally {
|
|
184
|
+
_iterator2.f();
|
|
185
|
+
}
|
|
186
|
+
;
|
|
187
|
+
}
|
|
188
|
+
return true;
|
|
189
|
+
}
|
|
190
|
+
}]);
|
|
191
|
+
}();
|
|
192
|
+
TokenizationTokenDetailInfo.RequiredProperties = ["token_id", "chain_id", "token_symbol", "decimals", "status"];
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* The unique token identifier.
|
|
196
|
+
* @member {String} token_id
|
|
197
|
+
*/
|
|
198
|
+
TokenizationTokenDetailInfo.prototype['token_id'] = undefined;
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* The chain ID of the tokenization contract.
|
|
202
|
+
* @member {String} chain_id
|
|
203
|
+
*/
|
|
204
|
+
TokenizationTokenDetailInfo.prototype['chain_id'] = undefined;
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* The address of the token contract.
|
|
208
|
+
* @member {String} token_address
|
|
209
|
+
*/
|
|
210
|
+
TokenizationTokenDetailInfo.prototype['token_address'] = undefined;
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* The name of the token.
|
|
214
|
+
* @member {String} token_name
|
|
215
|
+
*/
|
|
216
|
+
TokenizationTokenDetailInfo.prototype['token_name'] = undefined;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* The unique token symbol.
|
|
220
|
+
* @member {String} token_symbol
|
|
221
|
+
*/
|
|
222
|
+
TokenizationTokenDetailInfo.prototype['token_symbol'] = undefined;
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* The number of decimals of the token.
|
|
226
|
+
* @member {Number} decimals
|
|
227
|
+
*/
|
|
228
|
+
TokenizationTokenDetailInfo.prototype['decimals'] = undefined;
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Whether the allowlist feature is activated for the token.
|
|
232
|
+
* @member {Boolean} allowlist_activated
|
|
233
|
+
*/
|
|
234
|
+
TokenizationTokenDetailInfo.prototype['allowlist_activated'] = undefined;
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* @member {module:model/TokenizationStatus} status
|
|
238
|
+
*/
|
|
239
|
+
TokenizationTokenDetailInfo.prototype['status'] = undefined;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* The total supply of the token.
|
|
243
|
+
* @member {String} total_supply
|
|
244
|
+
*/
|
|
245
|
+
TokenizationTokenDetailInfo.prototype['total_supply'] = undefined;
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* The amount of tokens held by the organization.
|
|
249
|
+
* @member {String} holdings
|
|
250
|
+
*/
|
|
251
|
+
TokenizationTokenDetailInfo.prototype['holdings'] = undefined;
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* List of execution addresses and their permissions.
|
|
255
|
+
* @member {Array.<module:model/TokenizationAddressPermission>} permissions
|
|
256
|
+
*/
|
|
257
|
+
TokenizationTokenDetailInfo.prototype['permissions'] = undefined;
|
|
258
|
+
|
|
259
|
+
// Implement TokenizationTokenInfo interface:
|
|
260
|
+
/**
|
|
261
|
+
* The unique token identifier.
|
|
262
|
+
* @member {String} token_id
|
|
263
|
+
*/
|
|
264
|
+
_TokenizationTokenInfo["default"].prototype['token_id'] = undefined;
|
|
265
|
+
/**
|
|
266
|
+
* The chain ID of the tokenization contract.
|
|
267
|
+
* @member {String} chain_id
|
|
268
|
+
*/
|
|
269
|
+
_TokenizationTokenInfo["default"].prototype['chain_id'] = undefined;
|
|
270
|
+
/**
|
|
271
|
+
* The address of the token contract.
|
|
272
|
+
* @member {String} token_address
|
|
273
|
+
*/
|
|
274
|
+
_TokenizationTokenInfo["default"].prototype['token_address'] = undefined;
|
|
275
|
+
/**
|
|
276
|
+
* The name of the token.
|
|
277
|
+
* @member {String} token_name
|
|
278
|
+
*/
|
|
279
|
+
_TokenizationTokenInfo["default"].prototype['token_name'] = undefined;
|
|
280
|
+
/**
|
|
281
|
+
* The unique token symbol.
|
|
282
|
+
* @member {String} token_symbol
|
|
283
|
+
*/
|
|
284
|
+
_TokenizationTokenInfo["default"].prototype['token_symbol'] = undefined;
|
|
285
|
+
/**
|
|
286
|
+
* The number of decimals of the token.
|
|
287
|
+
* @member {Number} decimals
|
|
288
|
+
*/
|
|
289
|
+
_TokenizationTokenInfo["default"].prototype['decimals'] = undefined;
|
|
290
|
+
/**
|
|
291
|
+
* Whether the allowlist feature is activated for the token.
|
|
292
|
+
* @member {Boolean} allowlist_activated
|
|
293
|
+
*/
|
|
294
|
+
_TokenizationTokenInfo["default"].prototype['allowlist_activated'] = undefined;
|
|
295
|
+
/**
|
|
296
|
+
* @member {module:model/TokenizationStatus} status
|
|
297
|
+
*/
|
|
298
|
+
_TokenizationTokenInfo["default"].prototype['status'] = undefined;
|
|
299
|
+
/**
|
|
300
|
+
* The total supply of the token.
|
|
301
|
+
* @member {String} total_supply
|
|
302
|
+
*/
|
|
303
|
+
_TokenizationTokenInfo["default"].prototype['total_supply'] = undefined;
|
|
304
|
+
/**
|
|
305
|
+
* The amount of tokens held by the organization.
|
|
306
|
+
* @member {String} holdings
|
|
307
|
+
*/
|
|
308
|
+
_TokenizationTokenInfo["default"].prototype['holdings'] = undefined;
|
|
309
|
+
var _default = exports["default"] = TokenizationTokenDetailInfo;
|