Binance Connector JS
    Preparing search index...

    RwusdApi - interface RwusdApi

    interface RwusdApiInterface {
        getRwusdAccount(
            requestParameters?: GetRwusdAccountRequest,
        ): Promise<RestApiResponse<GetRwusdAccountResponse>>;
        getRwusdQuotaDetails(
            requestParameters?: GetRwusdQuotaDetailsRequest,
        ): Promise<RestApiResponse<GetRwusdQuotaDetailsResponse>>;
        getRwusdRateHistory(
            requestParameters?: GetRwusdRateHistoryRequest,
        ): Promise<RestApiResponse<GetRwusdRateHistoryResponse>>;
        getRwusdRedemptionHistory(
            requestParameters?: GetRwusdRedemptionHistoryRequest,
        ): Promise<RestApiResponse<GetRwusdRedemptionHistoryResponse>>;
        getRwusdRewardsHistory(
            requestParameters?: GetRwusdRewardsHistoryRequest,
        ): Promise<RestApiResponse<GetRwusdRewardsHistoryResponse>>;
        getRwusdSubscriptionHistory(
            requestParameters?: GetRwusdSubscriptionHistoryRequest,
        ): Promise<RestApiResponse<GetRwusdSubscriptionHistoryResponse>>;
        redeemRwusd(
            requestParameters: RedeemRwusdRequest,
        ): Promise<RestApiResponse<RedeemRwusdResponse>>;
        subscribeRwusd(
            requestParameters: SubscribeRwusdRequest,
        ): Promise<RestApiResponse<SubscribeRwusdResponse>>;
    }

    Implemented by

    Index

    Methods

    • Get RWUSD rate history sorted by descending order.

      Weight(IP): 150

      Security Type: USER_DATA

      Notes:

      • The time between startTime and endTime cannot be longer than 6 months.
      • If startTime and endTime are both not sent, then the last 30 days' data will be returned.
      • If startTime is sent but endTime is not sent, endTime will default to current time, and results from startTime onward will be returned.
      • If endTime is sent but startTime is not sent, startTime defaults to the current time minus one month, and data between startTime and endTime will be returned.

      Parameters

      Returns Promise<RestApiResponse<GetRwusdRateHistoryResponse>>

      RwusdApiInterface

    • Get RWUSD redemption history.

      Weight(IP): 150

      Security Type: USER_DATA

      Notes:

      • The time between startTime and endTime cannot be longer than 6 months.
      • If startTime and endTime are both not sent, then the last 30 days' data will be returned.
      • If startTime is sent but endTime is not sent, endTime will default to current time, and results from startTime onward will be returned.
      • If endTime is sent but startTime is not sent, startTime defaults to the current time minus one month, and data between startTime and endTime will be returned.

      Parameters

      Returns Promise<RestApiResponse<GetRwusdRedemptionHistoryResponse>>

      RwusdApiInterface

    • Get RWUSD rewards history.

      Weight(IP): 150

      Security Type: USER_DATA

      Notes:

      • The time between startTime and endTime cannot be longer than 6 months.
      • If startTime and endTime are both not sent, then the last 30 days' data will be returned.
      • If startTime is sent but endTime is not sent, endTime will default to current time, and results from startTime onward will be returned.
      • If endTime is sent but startTime is not sent, startTime defaults to the current time minus one month, and data between startTime and endTime will be returned.

      Parameters

      Returns Promise<RestApiResponse<GetRwusdRewardsHistoryResponse>>

      RwusdApiInterface