Binance Connector JS
    Preparing search index...

    EthStakingApi - interface EthStakingApi

    interface EthStakingApiInterface {
        ethStakingAccount(
            requestParameters?: EthStakingAccountRequest,
        ): Promise<RestApiResponse<EthStakingAccountResponse>>;
        getCurrentEthStakingQuota(
            requestParameters?: GetCurrentEthStakingQuotaRequest,
        ): Promise<RestApiResponse<GetCurrentEthStakingQuotaResponse>>;
        getEthRedemptionHistory(
            requestParameters?: GetEthRedemptionHistoryRequest,
        ): Promise<RestApiResponse<GetEthRedemptionHistoryResponse>>;
        getEthStakingHistory(
            requestParameters?: GetEthStakingHistoryRequest,
        ): Promise<RestApiResponse<GetEthStakingHistoryResponse>>;
        getWbethRateHistory(
            requestParameters?: GetWbethRateHistoryRequest,
        ): Promise<RestApiResponse<GetWbethRateHistoryResponse>>;
        getWbethRewardsHistory(
            requestParameters?: GetWbethRewardsHistoryRequest,
        ): Promise<RestApiResponse<GetWbethRewardsHistoryResponse>>;
        getWbethUnwrapHistory(
            requestParameters?: GetWbethUnwrapHistoryRequest,
        ): Promise<RestApiResponse<GetWbethUnwrapHistoryResponse>>;
        getWbethWrapHistory(
            requestParameters?: GetWbethWrapHistoryRequest,
        ): Promise<RestApiResponse<GetWbethWrapHistoryResponse>>;
        redeemEth(
            requestParameters: RedeemEthRequest,
        ): Promise<RestApiResponse<RedeemEthResponse>>;
        subscribeEthStaking(
            requestParameters: SubscribeEthStakingRequest,
        ): Promise<RestApiResponse<SubscribeEthStakingResponse>>;
        wrapBeth(
            requestParameters: WrapBethRequest,
        ): Promise<RestApiResponse<WrapBethResponse>>;
    }

    Implemented by

    Index

    Methods