Binance Connector JS
    Preparing search index...

    TokenizedApi - interface TokenizedApi

    interface TokenizedApiInterface {
        tokenizedConvertHistory(
            requestParameters?: TokenizedConvertHistoryRequest,
        ): Promise<RestApiResponse<TokenizedConvertHistoryResponse>>;
        tokenizedConvertStatus(
            requestParameters: TokenizedConvertStatusRequest,
        ): Promise<RestApiResponse<TokenizedConvertStatusResponse>>;
        tokenizedMint(
            requestParameters: TokenizedMintRequest,
        ): Promise<RestApiResponse<TokenizedMintResponse>>;
        tokenizedRedeem(
            requestParameters: TokenizedRedeemRequest,
        ): Promise<RestApiResponse<TokenizedRedeemResponse>>;
    }

    Implemented by

    Index

    Methods

    • Mint a tokenized asset from an underlying equity holding. The caller's underlying equity (e.g. AAPL) is burned (or locked), and the corresponding tokenized asset (e.g. AAPLB) is credited. The tokenized asset is resolved server-side from underlyingAsset; callers only provide the underlying ticker and quantity. Mint is asynchronous: the endpoint returns an issuerRequestId immediately with a transient status; poll /tokenized/convert-status to observe the terminal state, or inspect /tokenized/history for the full record. Rate limit: 50 requests / min (UID).

      Weight: 1

      Security Type: TRADE

      Parameters

      Returns Promise<RestApiResponse<TokenizedMintResponse>>

      TokenizedApiInterface

    • Redeem a tokenized asset back into the underlying equity. The caller's tokenized asset (e.g. AAPLB) is burned, and the corresponding underlying equity (e.g. AAPL) is released. The underlying asset is resolved server-side from tokenizedAsset; callers only provide the tokenized asset and quantity. Redeem is asynchronous: the endpoint returns an issuerRequestId immediately with a transient status; poll /tokenized/convert-status to observe the terminal state, or inspect /tokenized/history for the full record. Rate limit: 200 requests / min (UID).

      Weight: 1

      Security Type: TRADE

      Parameters

      Returns Promise<RestApiResponse<TokenizedRedeemResponse>>

      TokenizedApiInterface