binance_connector

package module
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 29, 2026 License: MIT Imports: 11 Imported by: 0

README

Binance Connector

Go Reference Go Go Report Card

This package is a wrapper for the Binance API. It is based on the binance-connector-go.

Supported API endpoints:

  • Account
  • Market Data
  • Spot Trading
  • Margin Account / Trading
  • Sub-Account
  • Wallet
  • Staking
  • Staking (ETH)

Installation

go get github.com/niklak/binance_connector

Examples

REST API
package main

import (
    "fmt"
    "time"

    bc "github.com/niklak/binance_connector"
)

func main() {
    // with default options
    //client := bc.NewClient("your-api-key", "your-api-secret")

    // with all options
    client := bc.NewClientWithOptions(
        "your-api-key", 
        "your-api-secret",
        bc.BaseURL("https://testnet.binance.vision"),
        bc.Timeout(1 * time.Minute),
        bc.HTTPClient(&http.Client{}),
        bc.TimeOffset(-1000),
	)

    // Set debug with zerolog
    // zerolog.SetGlobalLevel(zerolog.Level(0))

    // Create new order
	newOrder, err := client.NewCreateOrderService().
		Symbol("BTCUSDT").
		Side("BUY").
		Type("MARKET").
		Quantity(0.001).
		Do(context.Background())

	if err != nil {
		panic(err)
	}
	fmt.Printf("order: %#v\n", newOrder)
}


Service for any kind of the Binance API endpoint

Binance API has a lot of endpoints with different parameters. Many endpoints are missing in this package but it has a flexible service that allows you to call any endpoint with functional options.

Differences between this package and binance-connector-go

  • Only a client (connector) and api (services) are exposed.
  • Using zerolog package instead of standard log package.
  • Added more convenient way to set client timeout
  • TickerPrice.Do returns a []*TickerPriceResponse instead of *TickerPriceResponse
  • Ticker24hr.Do returns a []*Ticker24hrResponse instead of *Ticker24hrResponse
  • Reduced if blocks for optional parameters, The check performs only at the one place now.
  • Added constructor NewClientWithOptions which allow to set optional parameters such as instance of http.Client or request timeout.
  • AllOrdersResponse and NewOpenOrdersResponse are combined into one struct OrderResponse
  • If a service name was started with prefix Get then this prefix was removed. For example GetAccountService was renamed to AccountService
  • BUSD endpoints are omitted.
  • QuerySubAccountSpotAssetTransferHistoryService returns []*SubAccountAssetTransferHistoryResponse instead of QuerySubAccountSpotAssetTransferHistoryResp
  • (Get)SubAccountDepositHistoryService returns []*SubAccountDepositHistoryResponse instead of GetSubAccountDepositHistoryResp
  • This wrapper doesn't include websocket API handlers at all.
  • This package doesn't contain pretty-print functions, you can use your favorite package for this purpose.

Important

  • Some endpoints may not work because Binance could remove these endpoints from the API. Please visit binance api docs.

  • This package has no tests. Tests will be added in the future.

  • This package will not contain websocket API handlers. Because it is a different approach with different dependencies. I doubt that I will create another package for websocket API.

Documentation

Index

Constants

This section is empty.

Variables

View Source
var BaseURL = connector.BaseURL
View Source
var ErrMissingParam = request.ErrMissingParam
View Source
var ErrRequestCantBeNil = connector.ErrRequestCantBeNil
View Source
var HTTPClient = connector.HTTPClient
View Source
var TimeOffset = connector.TimeOffset
View Source
var Timeout = connector.Timeout

Functions

This section is empty.

Types

type APIKeyPermissionResponse added in v0.2.4

type APIKeyPermissionResponse = wallet.APIKeyPermissionResponse

type APIKeyPermissionService added in v0.2.4

type APIKeyPermissionService = wallet.APIKeyPermissionService

file: api/wallet/apikeypermission.go

type AccountAllocationsResponse added in v0.3.4

type AccountAllocationsResponse = account.AccountAllocationsResponse

type AccountAllocationsService added in v0.3.4

type AccountAllocationsService = account.AccountAllocationsService

file: api/account/myallocations.go

type AccountApiTradingStatusResponse added in v0.2.4

type AccountApiTradingStatusResponse = wallet.AccountApiTradingStatusResponse

type AccountApiTradingStatusService added in v0.2.4

type AccountApiTradingStatusService = wallet.AccountApiTradingStatusService

file: api/wallet/accounttradingstatus.go

type AccountCommissionResponse added in v0.3.4

type AccountCommissionResponse = account.AccountCommissionResponse

type AccountCommissionService added in v0.3.4

type AccountCommissionService = account.AccountCommissionService

file: api/account/commission.go

type AccountOrderBookResponse added in v0.2.2

type AccountOrderBookResponse = spot.AccountOrderBookResponse

type AccountResponse added in v0.2.4

type AccountResponse = account.AccountResponse

type AccountService added in v0.2.4

type AccountService = account.AccountService

file: api/account/account.go

type AccountSnapshotResponse added in v0.2.4

type AccountSnapshotResponse = wallet.AccountSnapshotResponse

type AccountSnapshotService added in v0.2.4

type AccountSnapshotService = wallet.AccountSnapshotService

file: api/wallet/dailiyaccountsnapshot.go

type AccountStatusResponse added in v0.2.4

type AccountStatusResponse = wallet.AccountStatusResponse

type AccountStatusService added in v0.2.4

type AccountStatusService = wallet.AccountStatusService

file: api/wallet/accountstatus.go

type AccountTradeListResponse added in v0.2.4

type AccountTradeListResponse = account.AccountTradeListResponse

type AccountTradeListService added in v0.2.4

type AccountTradeListService = account.AccountTradeListService

file: api/account/tradelist.go

type AggTradesList added in v0.2.0

type AggTradesList = market.AggTradesList

file: api/market/aggtrades.go

type AggTradesListResponse added in v0.2.0

type AggTradesListResponse = market.AggTradesListResponse

type AllCoinsInfoService added in v0.2.4

type AllCoinsInfoService = wallet.AllCoinsInfoService

file: api/wallet/allcoins.go

type AllIsolatedMarginSymbolService added in v0.3.3

type AllIsolatedMarginSymbolService = margin.AllIsolatedMarginSymbolService

type AssetDetailResponse added in v0.2.4

type AssetDetailResponse = wallet.AssetDetailResponse

type AssetDetailService added in v0.2.4

type AssetDetailService = wallet.AssetDetailService

file: api/wallet/dustbtc.go

type AssetDetailV2Response added in v0.2.4

type AssetDetailV2Response = wallet.AssetDetailV2Response

type AssetDetailV2Service added in v0.2.4

type AssetDetailV2Service = wallet.AssetDetailV2Service

file: api/wallet/assetdetail.go

type AssetDividendRecordResponse added in v0.2.4

type AssetDividendRecordResponse = wallet.AssetDividendRecordResponse

type AssetDividendRecordService added in v0.2.4

type AssetDividendRecordService = wallet.AssetDividendRecordService

file: api/wallet/assetdivident.go

type AutoConvertStableCoinResponse added in v0.2.4

type AutoConvertStableCoinResponse = wallet.AutoConvertStableCoinResponse

type AutoConvertStableCoinService added in v0.2.4

type AutoConvertStableCoinService = wallet.AutoConvertStableCoinService

file: api/wallet/autoconverting.go

type AvgPrice added in v0.2.1

type AvgPrice = market.AvgPrice

file: api/market/avgprice.go

type AvgPriceResponse added in v0.2.1

type AvgPriceResponse = market.AvgPriceResponse

type BETHRewardHistoryRow added in v0.3.5

type BETHRewardHistoryRow = ethstaking.BETHRewardHistoryRow

type BETHRewardsDistributionHistoryResponse added in v0.3.5

type BETHRewardsDistributionHistoryResponse = ethstaking.BETHRewardsDistributionHistoryResponse

type BETHRewardsDistributionHistoryService added in v0.3.5

type BETHRewardsDistributionHistoryService = ethstaking.BETHRewardsDistributionHistoryService

file: api/ethstaking/bethrewardshistory.go

type Balance added in v0.3.0

type Balance = account.Balance

type BorrowResponse added in v0.3.3

type BorrowResponse = margin.BorrowResponse

type BorrowService added in v0.3.3

type BorrowService = margin.BorrowService

type CancelOCOService added in v0.2.2

type CancelOCOService = spot.CancelOCOService

file: api/spot/canceloco.go

type CancelOpenOrdersService added in v0.1.2

type CancelOpenOrdersService = spot.CancelOpenOrdersService

file: api/spot/cancelopenorders.go

type CancelOrderService added in v0.1.2

type CancelOrderService = spot.CancelOrderService

file: api/spot/cancelorder.go

type CancelReplaceResponse added in v0.2.2

type CancelReplaceResponse = spot.CancelReplaceResponse

type CancelReplaceService added in v0.2.2

type CancelReplaceService = spot.CancelReplaceService

file: api/spot/cancelreplaceservice.go

type Client

type Client struct {
	*connector.Connector
}

func NewClient

func NewClient(apiKey, secretKey string, baseURL ...string) *Client

func NewClientWithOptions added in v0.2.3

func NewClientWithOptions(apiKey, secretKey string, options ...ConnectorOption) *Client

func (*Client) NewAPIKeyPermissionService added in v0.2.4

func (c *Client) NewAPIKeyPermissionService() *APIKeyPermissionService

func (*Client) NewAccountAllocationsService added in v0.3.4

func (c *Client) NewAccountAllocationsService() *AccountAllocationsService

func (*Client) NewAccountApiTradingStatusService added in v0.2.4

func (c *Client) NewAccountApiTradingStatusService() *AccountApiTradingStatusService

func (*Client) NewAccountCommissionService added in v0.3.4

func (c *Client) NewAccountCommissionService() *AccountCommissionService

func (*Client) NewAccountService added in v0.2.4

func (c *Client) NewAccountService() *AccountService

func (*Client) NewAccountSnapshotService added in v0.2.4

func (c *Client) NewAccountSnapshotService() *AccountSnapshotService

func (*Client) NewAccountStatusService added in v0.2.4

func (c *Client) NewAccountStatusService() *AccountStatusService

func (*Client) NewAccountTradeListService added in v0.2.4

func (c *Client) NewAccountTradeListService() *AccountTradeListService

func (*Client) NewAggTradesListService added in v0.2.1

func (c *Client) NewAggTradesListService() *AggTradesList

func (*Client) NewAllCoinsInfoService added in v0.2.4

func (c *Client) NewAllCoinsInfoService() *AllCoinsInfoService

func (*Client) NewAllIsolatedMarginSymbolService added in v0.3.3

func (c *Client) NewAllIsolatedMarginSymbolService() *AllIsolatedMarginSymbolService

func (*Client) NewAssetDetailService added in v0.2.4

func (c *Client) NewAssetDetailService() *AssetDetailService

func (*Client) NewAssetDetailV2Service added in v0.2.4

func (c *Client) NewAssetDetailV2Service() *AssetDetailV2Service

func (*Client) NewAssetDividendRecordService added in v0.2.4

func (c *Client) NewAssetDividendRecordService() *AssetDividendRecordService

func (*Client) NewAutoConvertStableCoinService added in v0.2.4

func (c *Client) NewAutoConvertStableCoinService() *AutoConvertStableCoinService

func (*Client) NewAvgPriceService added in v0.2.1

func (c *Client) NewAvgPriceService() *AvgPrice

func (*Client) NewBETHRewardsDistributionHistoryService added in v0.3.5

func (c *Client) NewBETHRewardsDistributionHistoryService() *BETHRewardsDistributionHistoryService

func (*Client) NewBorrowService added in v0.3.3

func (c *Client) NewBorrowService() *BorrowService

func (*Client) NewCancelOCOService added in v0.2.2

func (c *Client) NewCancelOCOService() *CancelOCOService

func (*Client) NewCancelOpenOrdersService

func (c *Client) NewCancelOpenOrdersService() *CancelOpenOrdersService

func (*Client) NewCancelOrderService

func (c *Client) NewCancelOrderService() *CancelOrderService

func (*Client) NewCancelReplaceService added in v0.2.2

func (c *Client) NewCancelReplaceService() *CancelReplaceService

func (*Client) NewCloudMiningPaymentHistoryService added in v0.2.4

func (c *Client) NewCloudMiningPaymentHistoryService() *CloudMiningPaymentHistoryService

func (*Client) NewCreateOrderListOCOService added in v0.4.0

func (c *Client) NewCreateOrderListOCOService() *CreateOrderListOCOService

func (*Client) NewCreateOrderService

func (c *Client) NewCreateOrderService() *CreateOrderService

func (*Client) NewCreateSubAccountService added in v0.3.1

func (c *Client) NewCreateSubAccountService() *CreateSubAccountService

func (*Client) NewCrossMarginAccountDetailService added in v0.3.3

func (c *Client) NewCrossMarginAccountDetailService() *CrossMarginAccountDetailService

func (*Client) NewCurrentETHStakingQuotaService added in v0.3.5

func (c *Client) NewCurrentETHStakingQuotaService() *CurrentETHStakingQuotaService

func (*Client) NewDeleteIPListForSubAccountAPIKeyService added in v0.3.1

func (c *Client) NewDeleteIPListForSubAccountAPIKeyService() *DeleteIPListForSubAccountAPIKeyService

func (*Client) NewDepositAddressService added in v0.2.4

func (c *Client) NewDepositAddressService() *DepositAddressService

func (*Client) NewDepositAssetsIntoTheManagedSubAccountService added in v0.3.1

func (c *Client) NewDepositAssetsIntoTheManagedSubAccountService() *DepositAssetsIntoTheManagedSubAccountService

func (*Client) NewDepositHistoryService added in v0.2.4

func (c *Client) NewDepositHistoryService() *DepositHistoryService

func (*Client) NewDetailOnSubAccountFuturesAccountService added in v0.3.1

func (c *Client) NewDetailOnSubAccountFuturesAccountService() *DetailOnSubAccountFuturesAccountService

func (*Client) NewDetailOnSubAccountFuturesAccountV2Service added in v0.3.1

func (c *Client) NewDetailOnSubAccountFuturesAccountV2Service() *DetailOnSubAccountFuturesAccountV2Service

func (*Client) NewDetailOnSubAccountMarginAccountService added in v0.3.1

func (c *Client) NewDetailOnSubAccountMarginAccountService() *DetailOnSubAccountMarginAccountService

func (*Client) NewDisableFastWithdrawSwitchService added in v0.2.4

func (c *Client) NewDisableFastWithdrawSwitchService() *DisableFastWithdrawSwitchService

func (*Client) NewDustLogService added in v0.2.4

func (c *Client) NewDustLogService() *DustLogService

func (*Client) NewDustTransferService added in v0.2.4

func (c *Client) NewDustTransferService() *DustTransferService

func (*Client) NewETHRedemptionHistoryService added in v0.3.5

func (c *Client) NewETHRedemptionHistoryService() *ETHRedemptionHistoryService

func (*Client) NewETHStakingAccountService added in v0.3.5

func (c *Client) NewETHStakingAccountService() *ETHStakingAccountService

func (*Client) NewETHStakingHistoryService added in v0.3.5

func (c *Client) NewETHStakingHistoryService() *ETHStakingHistoryService

func (*Client) NewEnableFastWithdrawSwitchService added in v0.2.4

func (c *Client) NewEnableFastWithdrawSwitchService() *EnableFastWithdrawSwitchService

func (*Client) NewEnableFuturesForSubAccountService added in v0.3.1

func (c *Client) NewEnableFuturesForSubAccountService() *EnableFuturesForSubAccountService

func (*Client) NewEnableLeverageTokenForSubAccountService added in v0.3.1

func (c *Client) NewEnableLeverageTokenForSubAccountService() *EnableLeverageTokenForSubAccountService

func (*Client) NewEnableMarginForSubAccountService added in v0.3.1

func (c *Client) NewEnableMarginForSubAccountService() *EnableMarginForSubAccountService

func (*Client) NewExchangeInfoService added in v0.2.1

func (c *Client) NewExchangeInfoService() *ExchangeInfo

func (*Client) NewForceLiquidationRecordService added in v0.3.3

func (c *Client) NewForceLiquidationRecordService() *ForceLiquidationRecordService

func (*Client) NewFundingWalletService added in v0.2.4

func (c *Client) NewFundingWalletService() *FundingWalletService

func (*Client) NewFuturesPositionRiskOfSubAccountService added in v0.3.1

func (c *Client) NewFuturesPositionRiskOfSubAccountService() *FuturesPositionRiskOfSubAccountService

func (*Client) NewFuturesPositionRiskOfSubAccountV2Service added in v0.3.1

func (c *Client) NewFuturesPositionRiskOfSubAccountV2Service() *FuturesPositionRiskOfSubAccountV2Service

func (*Client) NewFuturesTransferForSubAccountService added in v0.3.1

func (c *Client) NewFuturesTransferForSubAccountService() *FuturesTransferForSubAccountService

func (*Client) NewGetAllMarginAssetsService added in v0.3.3

func (c *Client) NewGetAllMarginAssetsService() *GetAllMarginAssetsService

func (*Client) NewGetAllMarginPairsService added in v0.3.3

func (c *Client) NewGetAllMarginPairsService() *GetAllMarginPairsService

func (*Client) NewGetAllOrdersService added in v0.2.2

func (c *Client) NewGetAllOrdersService() *GetAllOrdersService

func (*Client) NewGetOpenOrdersService added in v0.2.2

func (c *Client) NewGetOpenOrdersService() *GetOpenOrdersService

func (*Client) NewGetOrderService

func (c *Client) NewGetOrderService() *GetOrderService

func (*Client) NewHistoricalTradeLookupService added in v0.2.1

func (c *Client) NewHistoricalTradeLookupService() *HistoricalTradeLookup

func (*Client) NewIPRestrictionForSubAccountAPIKeyService added in v0.3.1

func (c *Client) NewIPRestrictionForSubAccountAPIKeyService() *IPRestrictionForSubAccountAPIKeyService

func (*Client) NewInterestHistoryService added in v0.3.3

func (c *Client) NewInterestHistoryService() *InterestHistoryService

func (*Client) NewKlinesService added in v0.2.1

func (c *Client) NewKlinesService() *Klines

func (*Client) NewManagedSubAccountDepositAddressService added in v0.3.1

func (c *Client) NewManagedSubAccountDepositAddressService() *ManagedSubAccountDepositAddressService

func (*Client) NewMarginAccountAllOrderService added in v0.3.3

func (c *Client) NewMarginAccountAllOrderService() *MarginAccountAllOrderService

func (*Client) NewMarginAccountCancelAllOrdersService added in v0.3.3

func (c *Client) NewMarginAccountCancelAllOrdersService() *MarginAccountCancelAllOrdersService

func (*Client) NewMarginAccountCancelOCOService added in v0.3.3

func (c *Client) NewMarginAccountCancelOCOService() *MarginAccountCancelOCOService

func (*Client) NewMarginAccountCancelOrderService added in v0.3.3

func (c *Client) NewMarginAccountCancelOrderService() *MarginAccountCancelOrderService

func (*Client) NewMarginAccountNewOCOService added in v0.3.3

func (c *Client) NewMarginAccountNewOCOService() *MarginAccountNewOCOService

func (*Client) NewMarginAccountNewOrderService added in v0.3.3

func (c *Client) NewMarginAccountNewOrderService() *MarginAccountNewOrderService

func (*Client) NewMarginAccountOpenOrderService added in v0.3.3

func (c *Client) NewMarginAccountOpenOrderService() *MarginAccountOpenOrderService

func (*Client) NewMarginAccountOrderService added in v0.3.3

func (c *Client) NewMarginAccountOrderService() *MarginAccountOrderService

func (*Client) NewMarginAccountQueryAllOCOService added in v0.3.3

func (c *Client) NewMarginAccountQueryAllOCOService() *MarginAccountQueryAllOCOService

func (*Client) NewMarginAccountQueryMaxBorrowService added in v0.3.3

func (c *Client) NewMarginAccountQueryMaxBorrowService() *MarginAccountQueryMaxBorrowService

func (*Client) NewMarginAccountQueryMaxTransferOutAmountService added in v0.3.3

func (c *Client) NewMarginAccountQueryMaxTransferOutAmountService() *MarginAccountQueryMaxTransferOutAmountService

func (*Client) NewMarginAccountQueryOCOService added in v0.3.3

func (c *Client) NewMarginAccountQueryOCOService() *MarginAccountQueryOCOService

func (*Client) NewMarginAccountQueryOpenOCOService added in v0.3.3

func (c *Client) NewMarginAccountQueryOpenOCOService() *MarginAccountQueryOpenOCOService

func (*Client) NewMarginAccountQueryTradeListService added in v0.3.3

func (c *Client) NewMarginAccountQueryTradeListService() *MarginAccountQueryTradeListService

func (*Client) NewMarginAccountSummaryService added in v0.3.3

func (c *Client) NewMarginAccountSummaryService() *MarginAccountSummaryService

func (*Client) NewMarginBnbBurnStatusService added in v0.3.3

func (c *Client) NewMarginBnbBurnStatusService() *MarginBnbBurnStatusService

func (*Client) NewMarginCrossCollateralRatioService added in v0.3.3

func (c *Client) NewMarginCrossCollateralRatioService() *MarginCrossCollateralRatioService

func (*Client) NewMarginCrossMarginFeeService added in v0.3.3

func (c *Client) NewMarginCrossMarginFeeService() *MarginCrossMarginFeeService

func (*Client) NewMarginCurrentOrderCountService added in v0.3.3

func (c *Client) NewMarginCurrentOrderCountService() *MarginCurrentOrderCountService

func (*Client) NewMarginDustlogService added in v0.3.3

func (c *Client) NewMarginDustlogService() *MarginDustlogService

func (*Client) NewMarginInterestRateHistoryService added in v0.3.3

func (c *Client) NewMarginInterestRateHistoryService() *MarginInterestRateHistoryService

func (*Client) NewMarginIsolatedAccountDisableService added in v0.3.3

func (c *Client) NewMarginIsolatedAccountDisableService() *MarginIsolatedAccountDisableService

func (*Client) NewMarginIsolatedAccountEnableService added in v0.3.3

func (c *Client) NewMarginIsolatedAccountEnableService() *MarginIsolatedAccountEnableService

func (*Client) NewMarginIsolatedAccountInfoService added in v0.3.3

func (c *Client) NewMarginIsolatedAccountInfoService() *MarginIsolatedAccountInfoService

func (*Client) NewMarginIsolatedAccountLimitService added in v0.3.3

func (c *Client) NewMarginIsolatedAccountLimitService() *MarginIsolatedAccountLimitService

func (*Client) NewMarginIsolatedAccountTransferHistoryService added in v0.3.3

func (c *Client) NewMarginIsolatedAccountTransferHistoryService() *MarginIsolatedAccountTransferHistoryService

func (*Client) NewMarginIsolatedAccountTransferService added in v0.3.3

func (c *Client) NewMarginIsolatedAccountTransferService() *MarginIsolatedAccountTransferService

func (*Client) NewMarginIsolatedMarginFeeService added in v0.3.3

func (c *Client) NewMarginIsolatedMarginFeeService() *MarginIsolatedMarginFeeService

func (*Client) NewMarginIsolatedMarginTierService added in v0.3.3

func (c *Client) NewMarginIsolatedMarginTierService() *MarginIsolatedMarginTierService

func (*Client) NewMarginIsolatedSymbolService added in v0.3.3

func (c *Client) NewMarginIsolatedSymbolService() *MarginIsolatedSymbolService

func (*Client) NewMarginSmallLiabilityExchangeCoinListService added in v0.3.3

func (c *Client) NewMarginSmallLiabilityExchangeCoinListService() *MarginSmallLiabilityExchangeCoinListService

func (*Client) NewMarginSmallLiabilityExchangeHistoryService added in v0.3.3

func (c *Client) NewMarginSmallLiabilityExchangeHistoryService() *MarginSmallLiabilityExchangeHistoryService

func (*Client) NewMarginSmallLiabilityExchangeService added in v0.3.3

func (c *Client) NewMarginSmallLiabilityExchangeService() *MarginSmallLiabilityExchangeService

func (*Client) NewMarginToggleBnbBurnService added in v0.3.3

func (c *Client) NewMarginToggleBnbBurnService() *MarginToggleBnbBurnService

func (*Client) NewMarginTransferForSubAccountService added in v0.3.1

func (c *Client) NewMarginTransferForSubAccountService() *MarginTransferForSubAccountService

func (*Client) NewNewOCOService added in v0.2.2

func (c *Client) NewNewOCOService() *NewOCOService

func (*Client) NewOrderBookService added in v0.2.1

func (c *Client) NewOrderBookService() *OrderBook

func (*Client) NewPersonalLeftQuotaService added in v0.3.1

func (c *Client) NewPersonalLeftQuotaService() *PersonalLeftQuotaService

func (*Client) NewPingService added in v0.2.1

func (c *Client) NewPingService() *Ping

func (*Client) NewPurchaseStakingProductService added in v0.3.1

func (c *Client) NewPurchaseStakingProductService() *PurchaseStakingProductService

func (*Client) NewQueryAllOCOService added in v0.2.2

func (c *Client) NewQueryAllOCOService() *QueryAllOCOService

func (*Client) NewQueryCrossMarginPairService added in v0.3.3

func (c *Client) NewQueryCrossMarginPairService() *QueryCrossMarginPairService

func (*Client) NewQueryCurrentOrderCountUsageService added in v0.2.4

func (c *Client) NewQueryCurrentOrderCountUsageService() *QueryCurrentOrderCountUsageService

func (*Client) NewQueryManagedSubAccountAssetDetailsService added in v0.3.1

func (c *Client) NewQueryManagedSubAccountAssetDetailsService() *QueryManagedSubAccountAssetDetailsService

func (*Client) NewQueryManagedSubAccountFuturesAssetDetailsService added in v0.3.1

func (c *Client) NewQueryManagedSubAccountFuturesAssetDetailsService() *QueryManagedSubAccountFuturesAssetDetailsService

func (*Client) NewQueryManagedSubAccountListService added in v0.3.1

func (c *Client) NewQueryManagedSubAccountListService() *QueryManagedSubAccountList

func (*Client) NewQueryManagedSubAccountMarginAssetDetailsService added in v0.3.1

func (c *Client) NewQueryManagedSubAccountMarginAssetDetailsService() *QueryManagedSubAccountMarginAssetDetailsService

func (*Client) NewQueryManagedSubAccountSnapshotService added in v0.3.1

func (c *Client) NewQueryManagedSubAccountSnapshotService() *QueryManagedSubAccountSnapshotService

func (*Client) NewQueryManagedSubAccountTransferLogForTradingTeamService added in v0.3.1

func (c *Client) NewQueryManagedSubAccountTransferLogForTradingTeamService() *QueryManagedSubAccountTransferLogForTradingTeamService

func (*Client) NewQueryManagedSubAccountTransferLogService added in v0.3.1

func (c *Client) NewQueryManagedSubAccountTransferLogService() *QueryManagedSubAccountTransferLogService

func (*Client) NewQueryMarginAssetService added in v0.3.3

func (c *Client) NewQueryMarginAssetService() *QueryMarginAssetService

func (*Client) NewQueryMarginBorrowRepayService added in v0.3.3

func (c *Client) NewQueryMarginBorrowRepayService() *QueryMarginBorrowRepayService

func (*Client) NewQueryMarginPriceIndexService added in v0.3.3

func (c *Client) NewQueryMarginPriceIndexService() *QueryMarginPriceIndexService

func (*Client) NewQueryOCOService added in v0.2.2

func (c *Client) NewQueryOCOService() *QueryOCOService

func (*Client) NewQueryOpenOCOService added in v0.3.0

func (c *Client) NewQueryOpenOCOService() *QueryOpenOCOService

func (*Client) NewQueryPreventedMatchesService added in v0.2.4

func (c *Client) NewQueryPreventedMatchesService() *QueryPreventedMatchesService

func (*Client) NewQuerySubAccountAssetsForMasterAccountService added in v0.3.1

func (c *Client) NewQuerySubAccountAssetsForMasterAccountService() *QuerySubAccountAssetsForMasterAccountService

func (*Client) NewQuerySubAccountAssetsService added in v0.3.1

func (c *Client) NewQuerySubAccountAssetsService() *QuerySubAccountAssetsService

func (*Client) NewQuerySubAccountFuturesAssetTransferHistoryService added in v0.3.1

func (c *Client) NewQuerySubAccountFuturesAssetTransferHistoryService() *QuerySubAccountFuturesAssetTransferHistoryService

func (*Client) NewQuerySubAccountListService added in v0.3.1

func (c *Client) NewQuerySubAccountListService() *QuerySubAccountListService

func (*Client) NewQuerySubAccountSpotAssetTransferHistoryService added in v0.3.1

func (c *Client) NewQuerySubAccountSpotAssetTransferHistoryService() *QuerySubAccountSpotAssetTransferHistoryService

func (*Client) NewQuerySubAccountSpotAssetsSummaryService added in v0.3.1

func (c *Client) NewQuerySubAccountSpotAssetsSummaryService() *QuerySubAccountSpotAssetsSummaryService

func (*Client) NewQuerySubAccountTransactionStatisticsService added in v0.3.1

func (c *Client) NewQuerySubAccountTransactionStatisticsService() *QuerySubAccountTransactionStatistics

func (*Client) NewQueryUniversalTransferHistoryService added in v0.3.1

func (c *Client) NewQueryUniversalTransferHistoryService() *QueryUniversalTransferHistoryService

func (*Client) NewRecentTradesListService added in v0.2.1

func (c *Client) NewRecentTradesListService() *RecentTradesList

func (*Client) NewRedeemETHService added in v0.3.5

func (c *Client) NewRedeemETHService() *RedeemETHService

func (*Client) NewRedeemStakingProductService added in v0.3.1

func (c *Client) NewRedeemStakingProductService() *RedeemStakingProductService

func (*Client) NewRepayService added in v0.3.3

func (c *Client) NewRepayService() *RepayService

func (*Client) NewServerTimeService added in v0.3.0

func (c *Client) NewServerTimeService() *ServerTime

func (*Client) NewService added in v0.4.0

func (c *Client) NewService() *Service

NewService create a new flexible binance service

func (*Client) NewSetAutoStakingService added in v0.3.1

func (c *Client) NewSetAutoStakingService() *SetAutoStakingService

func (*Client) NewStakingHistoryService added in v0.3.1

func (c *Client) NewStakingHistoryService() *StakingHistoryService

func (*Client) NewStakingProductListService added in v0.3.1

func (c *Client) NewStakingProductListService() *StakingProductListService

func (*Client) NewStakingProductPositionService added in v0.3.1

func (c *Client) NewStakingProductPositionService() *StakingProductPositionService

func (*Client) NewSubAccountDepositAddressService added in v0.3.1

func (c *Client) NewSubAccountDepositAddressService() *SubAccountDepositAddressService

func (*Client) NewSubAccountDepositHistoryService added in v0.3.1

func (c *Client) NewSubAccountDepositHistoryService() *SubAccountDepositHistoryService

func (*Client) NewSubAccountFuturesAssetTransferService added in v0.3.1

func (c *Client) NewSubAccountFuturesAssetTransferService() *SubAccountFuturesAssetTransferService

func (*Client) NewSubAccountStatusService added in v0.3.1

func (c *Client) NewSubAccountStatusService() *SubAccountStatusService

func (*Client) NewSubAccountTransferHistoryService added in v0.3.1

func (c *Client) NewSubAccountTransferHistoryService() *SubAccountTransferHistoryService

func (*Client) NewSubscribeETHStakingService added in v0.3.5

func (c *Client) NewSubscribeETHStakingService() *SubscribeETHStakingService

func (*Client) NewSubscribeETHStakingV2Service added in v0.3.5

func (c *Client) NewSubscribeETHStakingV2Service() *SubscribeETHStakingV2Service

func (*Client) NewSummaryOfSubAccountFuturesAccountService added in v0.3.1

func (c *Client) NewSummaryOfSubAccountFuturesAccountService() *SummaryOfSubAccountFuturesAccountService

func (*Client) NewSummaryOfSubAccountFuturesAccountV2Service added in v0.3.1

func (c *Client) NewSummaryOfSubAccountFuturesAccountV2Service() *SummaryOfSubAccountFuturesAccountV2Service

func (*Client) NewSummaryOfSubAccountMarginAccountService added in v0.3.1

func (c *Client) NewSummaryOfSubAccountMarginAccountService() *SummaryOfSubAccountMarginAccountService

func (*Client) NewSystemStatusService added in v0.2.4

func (c *Client) NewSystemStatusService() *SystemStatusService

func (*Client) NewTestNewOrderService added in v0.2.2

func (c *Client) NewTestNewOrderService() *TestNewOrder

func (*Client) NewTicker24hrService added in v0.2.1

func (c *Client) NewTicker24hrService() *Ticker24hr

func (*Client) NewTickerBookTickerService added in v0.2.1

func (c *Client) NewTickerBookTickerService() *TickerBookTicker

func (*Client) NewTickerPriceService

func (c *Client) NewTickerPriceService() *TickerPrice

func (*Client) NewTickerService added in v0.2.1

func (c *Client) NewTickerService() *Ticker

func (*Client) NewTradeFeeService added in v0.2.4

func (c *Client) NewTradeFeeService() *TradeFeeService

func (*Client) NewTransferService added in v0.3.3

func (c *Client) NewTransferService() *TransferService

func (*Client) NewTransferToMasterService added in v0.3.1

func (c *Client) NewTransferToMasterService() *TransferToMasterService

func (*Client) NewTransferToSubAccountOfSameMasterService added in v0.3.1

func (c *Client) NewTransferToSubAccountOfSameMasterService() *TransferToSubAccountOfSameMasterService

func (*Client) NewUiKlinesService added in v0.3.0

func (c *Client) NewUiKlinesService() *UiKlines

func (*Client) NewUniversalTransferService added in v0.2.4

func (c *Client) NewUniversalTransferService() *UniversalTransferService

func (*Client) NewUpdateIPRestrictionForSubAccountAPIKeyService added in v0.3.1

func (c *Client) NewUpdateIPRestrictionForSubAccountAPIKeyService() *UpdateIPRestrictionForSubAccountAPIKeyService

func (*Client) NewUserAssetService added in v0.2.4

func (c *Client) NewUserAssetService() *UserAssetService

func (*Client) NewUserUniversalTransferHistoryService added in v0.3.0

func (c *Client) NewUserUniversalTransferHistoryService() *UserUniversalTransferHistoryService

func (*Client) NewUserUniversalTransferService added in v0.3.0

func (c *Client) NewUserUniversalTransferService() *UserUniversalTransferService

func (*Client) NewWBETHRateHistoryService added in v0.3.5

func (c *Client) NewWBETHRateHistoryService() *WBETHRateHistoryService

func (*Client) NewWBETHRewardsHistoryService added in v0.3.5

func (c *Client) NewWBETHRewardsHistoryService() *WBETHRewardsHistoryService

func (*Client) NewWBETHUnwrapHistoryService added in v0.3.5

func (c *Client) NewWBETHUnwrapHistoryService() *WBETHUnwrapHistoryService

func (*Client) NewWBETHWrapHistoryService added in v0.3.5

func (c *Client) NewWBETHWrapHistoryService() *WBETHWrapHistoryService

func (*Client) NewWithdrawAssetsFromTheManagedSubAccountService added in v0.3.1

func (c *Client) NewWithdrawAssetsFromTheManagedSubAccountService() *WithdrawAssetsFromTheManagedSubAccountService

func (*Client) NewWithdrawHistoryService added in v0.2.4

func (c *Client) NewWithdrawHistoryService() *WithdrawHistoryService

func (*Client) NewWithdrawService added in v0.2.4

func (c *Client) NewWithdrawService() *WithdrawService

func (*Client) NewWrapBETHService added in v0.3.5

func (c *Client) NewWrapBETHService() *WrapBETHService

type CloudMiningPaymentHistoryResponse added in v0.2.4

type CloudMiningPaymentHistoryResponse = wallet.CloudMiningPaymentHistoryResponse

type CloudMiningPaymentHistoryService added in v0.2.4

type CloudMiningPaymentHistoryService = wallet.CloudMiningPaymentHistoryService

file: api/wallet/cloudmininghistory.go

type CoinInfo added in v0.2.4

type CoinInfo = wallet.CoinInfo

type Commission added in v0.3.4

type Commission = account.Commission

type CommissionDiscount added in v0.3.4

type CommissionDiscount = account.CommissionDiscount

type ConnectorOption added in v0.2.3

type ConnectorOption = connector.ConnectorOption

type CreateOrderListOCOService added in v0.4.0

type CreateOrderListOCOService = spot.CreateOrderListOCOService

file: api/spot/neworderlistoco.go

type CreateOrderResponseACK added in v0.1.2

type CreateOrderResponseACK = spot.CreateOrderResponseACK

type CreateOrderResponseFULL added in v0.1.2

type CreateOrderResponseFULL = spot.CreateOrderResponseFULL

type CreateOrderResponseRESULT added in v0.1.2

type CreateOrderResponseRESULT = spot.CreateOrderResponseRESULT

type CreateOrderService added in v0.1.2

type CreateOrderService = spot.CreateOrderService

file: api/spot/createorder.go

type CreateSubAccountResp added in v0.3.1

type CreateSubAccountResp = subaccount.CreateSubAccountResp

type CreateSubAccountService added in v0.3.1

type CreateSubAccountService = subaccount.CreateSubAccountService

file: api/subaccount/subaccount.go

type CrossMarginAccountDetailResponse added in v0.3.3

type CrossMarginAccountDetailResponse = margin.CrossMarginAccountDetailResponse

type CrossMarginAccountDetailService added in v0.3.3

type CrossMarginAccountDetailService = margin.CrossMarginAccountDetailService

type CrossMarginTransferHistoryResponse added in v0.3.3

type CrossMarginTransferHistoryResponse = margin.CrossMarginTransferHistoryResponse

type CurrentETHStakingQuotaResponse added in v0.3.5

type CurrentETHStakingQuotaResponse = ethstaking.CurrentETHStakingQuotaResponse

type CurrentETHStakingQuotaService added in v0.3.5

type CurrentETHStakingQuotaService = ethstaking.CurrentETHStakingQuotaService

file: api/ethstaking/currentstakingquota.go

type DeleteIPListForSubAccountAPIKeyResp added in v0.3.1

type DeleteIPListForSubAccountAPIKeyResp = subaccount.DeleteIPListForSubAccountAPIKeyResp

type DeleteIPListForSubAccountAPIKeyService added in v0.3.1

type DeleteIPListForSubAccountAPIKeyService = subaccount.DeleteIPListForSubAccountAPIKeyService

type DepositAddressResponse added in v0.2.4

type DepositAddressResponse = wallet.DepositAddressResponse

type DepositAddressService added in v0.2.4

type DepositAddressService = wallet.DepositAddressService

file: api/wallet/depositaddress.go

type DepositAssetsIntoTheManagedSubAccountResp added in v0.3.1

type DepositAssetsIntoTheManagedSubAccountResp = subaccount.DepositAssetsIntoTheManagedSubAccountResp

type DepositAssetsIntoTheManagedSubAccountService added in v0.3.1

type DepositAssetsIntoTheManagedSubAccountService = subaccount.DepositAssetsIntoTheManagedSubAccountService

type DepositHistoryResponse added in v0.2.4

type DepositHistoryResponse = wallet.DepositHistoryResponse

type DepositHistoryService added in v0.2.4

type DepositHistoryService = wallet.DepositHistoryService

file: api/wallet/deposithistory.go

type DetailOnSubAccountFuturesAccountResp added in v0.3.1

type DetailOnSubAccountFuturesAccountResp = subaccount.DetailOnSubAccountFuturesAccountResp

type DetailOnSubAccountFuturesAccountService added in v0.3.1

type DetailOnSubAccountFuturesAccountService = subaccount.DetailOnSubAccountFuturesAccountService

type DetailOnSubAccountFuturesAccountV2COINResp added in v0.3.1

type DetailOnSubAccountFuturesAccountV2COINResp = subaccount.DetailOnSubAccountFuturesAccountV2COINResp

type DetailOnSubAccountFuturesAccountV2Service added in v0.3.1

type DetailOnSubAccountFuturesAccountV2Service = subaccount.DetailOnSubAccountFuturesAccountV2Service

type DetailOnSubAccountFuturesAccountV2USDTResp added in v0.3.1

type DetailOnSubAccountFuturesAccountV2USDTResp = subaccount.DetailOnSubAccountFuturesAccountV2USDTResp

type DetailOnSubAccountMarginAccountResp added in v0.3.1

type DetailOnSubAccountMarginAccountResp = subaccount.DetailOnSubAccountMarginAccountResp

type DetailOnSubAccountMarginAccountService added in v0.3.1

type DetailOnSubAccountMarginAccountService = subaccount.DetailOnSubAccountMarginAccountService

type DisableFastWithdrawSwitchResponse added in v0.2.4

type DisableFastWithdrawSwitchResponse = wallet.DisableFastWithdrawSwitchResponse

type DisableFastWithdrawSwitchService added in v0.2.4

type DisableFastWithdrawSwitchService = wallet.DisableFastWithdrawSwitchService

file: api/wallet/disablefastwithdraw.go

type DustLogResponse added in v0.2.4

type DustLogResponse = wallet.DustLogResponse

type DustLogService added in v0.2.4

type DustLogService = wallet.DustLogService

file: api/wallet/dustlog.go

type DustTransferResponse added in v0.2.4

type DustTransferResponse = wallet.DustTransferResponse

type DustTransferResult added in v0.3.0

type DustTransferResult = wallet.DustTransferResult

type DustTransferService added in v0.2.4

type DustTransferService = wallet.DustTransferService

file: api/wallet/dusttransfer.go

type ETHHistoryResponse added in v0.3.5

type ETHHistoryResponse = ethstaking.ETHHistoryResponse

type ETHHistoryRow added in v0.3.5

type ETHHistoryRow = ethstaking.ETHHistoryRow

type ETHRedemptionHistoryService added in v0.3.5

type ETHRedemptionHistoryService = ethstaking.ETHRedemptionHistoryService

file: api/ethstaking/redemtionhistory.go

type ETHStakingAccountResponse added in v0.3.5

type ETHStakingAccountResponse = ethstaking.ETHStakingAccountResponse

type ETHStakingAccountService added in v0.3.5

type ETHStakingAccountService = ethstaking.ETHStakingAccountService

file: api/ethstaking/stakingaccount.go

type ETHStakingAccountV2Response added in v0.3.5

type ETHStakingAccountV2Response = ethstaking.ETHStakingAccountV2Response

type ETHStakingAccountV2Service added in v0.3.5

type ETHStakingAccountV2Service = ethstaking.ETHStakingAccountV2Service

file: api/ethstaking/stakingaccountv2.go

type ETHStakingHistoryService added in v0.3.5

type ETHStakingHistoryService = ethstaking.ETHStakingHistoryService

file: api/ethstaking/stakinghistory.go

type EnableFastWithdrawSwitchResponse added in v0.2.4

type EnableFastWithdrawSwitchResponse = wallet.EnableFastWithdrawSwitchResponse

type EnableFastWithdrawSwitchService added in v0.2.4

type EnableFastWithdrawSwitchService = wallet.EnableFastWithdrawSwitchService

file: api/wallet/enablefastwithdraw.go

type EnableFuturesForSubAccountResp added in v0.3.1

type EnableFuturesForSubAccountResp = subaccount.EnableFuturesForSubAccountResp

type EnableFuturesForSubAccountService added in v0.3.1

type EnableFuturesForSubAccountService = subaccount.EnableFuturesForSubAccountService

type EnableLeverageTokenForSubAccountResp added in v0.3.1

type EnableLeverageTokenForSubAccountResp = subaccount.EnableLeverageTokenForSubAccountResp

type EnableLeverageTokenForSubAccountService added in v0.3.1

type EnableLeverageTokenForSubAccountService = subaccount.EnableLeverageTokenForSubAccountService

type EnableMarginForSubAccountResp added in v0.3.1

type EnableMarginForSubAccountResp = subaccount.EnableMarginForSubAccountResp

type EnableMarginForSubAccountService added in v0.3.1

type EnableMarginForSubAccountService = subaccount.EnableMarginForSubAccountService

type ExchangeFilter added in v0.3.0

type ExchangeFilter = market.ExchangeFilter

type ExchangeInfo added in v0.2.0

type ExchangeInfo = market.ExchangeInfo

file: api/market/exchangeinfo.go

type ExchangeInfoResponse added in v0.2.0

type ExchangeInfoResponse = market.ExchangeInfoResponse

type ForceLiquidationRecordResponse added in v0.3.3

type ForceLiquidationRecordResponse = margin.ForceLiquidationRecordResponse

type ForceLiquidationRecordService added in v0.3.3

type ForceLiquidationRecordService = margin.ForceLiquidationRecordService

type FundingWalletResponse added in v0.2.4

type FundingWalletResponse = wallet.FundingWalletResponse

type FundingWalletService added in v0.2.4

type FundingWalletService = wallet.FundingWalletService

file: api/wallet/fundingwallet.go

type FuturesAccountAsset added in v0.3.1

type FuturesAccountAsset = subaccount.FuturesAccountAsset

type FuturesPositionRiskOfSubAccountResp added in v0.3.1

type FuturesPositionRiskOfSubAccountResp = subaccount.FuturesPositionRiskOfSubAccountResp

type FuturesPositionRiskOfSubAccountService added in v0.3.1

type FuturesPositionRiskOfSubAccountService = subaccount.FuturesPositionRiskOfSubAccountService

type FuturesPositionRiskOfSubAccountV2COINResp added in v0.3.1

type FuturesPositionRiskOfSubAccountV2COINResp = subaccount.FuturesPositionRiskOfSubAccountV2COINResp

type FuturesPositionRiskOfSubAccountV2Service added in v0.3.1

type FuturesPositionRiskOfSubAccountV2Service = subaccount.FuturesPositionRiskOfSubAccountV2Service

type FuturesPositionRiskOfSubAccountV2USDTResp added in v0.3.1

type FuturesPositionRiskOfSubAccountV2USDTResp = subaccount.FuturesPositionRiskOfSubAccountV2USDTResp

type FuturesTransferForSubAccountResp added in v0.3.1

type FuturesTransferForSubAccountResp = subaccount.FuturesTransferForSubAccountResp

type FuturesTransferForSubAccountService added in v0.3.1

type FuturesTransferForSubAccountService = subaccount.FuturesTransferForSubAccountService

type GetAllMarginAssetsResponse added in v0.3.3

type GetAllMarginAssetsResponse = margin.GetAllMarginAssetsResponse

type GetAllMarginAssetsService added in v0.3.3

type GetAllMarginAssetsService = margin.GetAllMarginAssetsService

type GetAllMarginPairsResponse added in v0.3.3

type GetAllMarginPairsResponse = margin.GetAllMarginPairsResponse

type GetAllMarginPairsService added in v0.3.3

type GetAllMarginPairsService = margin.GetAllMarginPairsService

type GetAllOrdersService added in v0.2.2

type GetAllOrdersService = spot.GetAllOrdersService

file: api/spot/getallorders.go

type GetOpenOrdersService added in v0.2.2

type GetOpenOrdersService = spot.GetOpenOrdersService

file: api/spot/getopenorders.go

type GetOrderService added in v0.1.2

type GetOrderService = spot.GetOrderService

file: api/spot/getorder.go

type HistoricalTradeLookup added in v0.2.0

type HistoricalTradeLookup = market.HistoricalTradeLookup

file: api/market/historicaltrades.go

type IPRestrictionForSubAccountAPIKeyResp added in v0.3.1

type IPRestrictionForSubAccountAPIKeyResp = subaccount.IPRestrictionForSubAccountAPIKeyResp

type IPRestrictionForSubAccountAPIKeyService added in v0.3.1

type IPRestrictionForSubAccountAPIKeyService = subaccount.IPRestrictionForSubAccountAPIKeyService

type InterestHistoryResponse added in v0.3.3

type InterestHistoryResponse = margin.InterestHistoryResponse

type InterestHistoryService added in v0.3.3

type InterestHistoryService = margin.InterestHistoryService

type InternalUniversalTransfer added in v0.3.1

type InternalUniversalTransfer = subaccount.InternalUniversalTransfer

type Klines added in v0.2.0

type Klines = market.Klines

file: api/market/klines.go

type KlinesResponse added in v0.2.0

type KlinesResponse = market.KlinesResponse

type ManagedSubAccountDepositAddressResp added in v0.3.1

type ManagedSubAccountDepositAddressResp = subaccount.ManagedSubAccountDepositAddressResp

type ManagedSubAccountDepositAddressService added in v0.3.1

type ManagedSubAccountDepositAddressService = subaccount.ManagedSubAccountDepositAddressService

type MarginAccountAllOrderResponse added in v0.3.3

type MarginAccountAllOrderResponse = margin.MarginAccountAllOrderResponse

type MarginAccountAllOrderService added in v0.3.3

type MarginAccountAllOrderService = margin.MarginAccountAllOrderService

type MarginAccountCancelAllOrdersResponse added in v0.3.3

type MarginAccountCancelAllOrdersResponse = margin.MarginAccountCancelAllOrdersResponse

type MarginAccountCancelAllOrdersService added in v0.3.3

type MarginAccountCancelAllOrdersService = margin.MarginAccountCancelAllOrdersService

type MarginAccountCancelOCOResponse added in v0.3.3

type MarginAccountCancelOCOResponse = margin.MarginAccountCancelOCOResponse

type MarginAccountCancelOCOService added in v0.3.3

type MarginAccountCancelOCOService = margin.MarginAccountCancelOCOService

type MarginAccountCancelOrderResponse added in v0.3.3

type MarginAccountCancelOrderResponse = margin.MarginAccountCancelOrderResponse

type MarginAccountCancelOrderService added in v0.3.3

type MarginAccountCancelOrderService = margin.MarginAccountCancelOrderService

type MarginAccountNewOCOResponse added in v0.3.3

type MarginAccountNewOCOResponse = margin.MarginAccountNewOCOResponse

type MarginAccountNewOCOService added in v0.3.3

type MarginAccountNewOCOService = margin.MarginAccountNewOCOService

type MarginAccountNewOrderResponseACK added in v0.3.3

type MarginAccountNewOrderResponseACK = margin.MarginAccountNewOrderResponseACK

type MarginAccountNewOrderResponseFULL added in v0.3.3

type MarginAccountNewOrderResponseFULL = margin.MarginAccountNewOrderResponseFULL

type MarginAccountNewOrderResponseRESULT added in v0.3.3

type MarginAccountNewOrderResponseRESULT = margin.MarginAccountNewOrderResponseRESULT

type MarginAccountNewOrderService added in v0.3.3

type MarginAccountNewOrderService = margin.MarginAccountNewOrderService

type MarginAccountOpenOrderResponse added in v0.3.3

type MarginAccountOpenOrderResponse = margin.MarginAccountOpenOrderResponse

type MarginAccountOpenOrderService added in v0.3.3

type MarginAccountOpenOrderService = margin.MarginAccountOpenOrderService

type MarginAccountOrderResponse added in v0.3.3

type MarginAccountOrderResponse = margin.MarginAccountOrderResponse

type MarginAccountOrderService added in v0.3.3

type MarginAccountOrderService = margin.MarginAccountOrderService

type MarginAccountQueryAllOCOResponse added in v0.3.3

type MarginAccountQueryAllOCOResponse = margin.MarginAccountQueryAllOCOResponse

type MarginAccountQueryAllOCOService added in v0.3.3

type MarginAccountQueryAllOCOService = margin.MarginAccountQueryAllOCOService

type MarginAccountQueryMaxBorrowResponse added in v0.3.3

type MarginAccountQueryMaxBorrowResponse = margin.MarginAccountQueryMaxBorrowResponse

type MarginAccountQueryMaxBorrowService added in v0.3.3

type MarginAccountQueryMaxBorrowService = margin.MarginAccountQueryMaxBorrowService

type MarginAccountQueryMaxTransferOutAmountResponse added in v0.3.3

type MarginAccountQueryMaxTransferOutAmountResponse = margin.MarginAccountQueryMaxTransferOutAmountResponse

type MarginAccountQueryMaxTransferOutAmountService added in v0.3.3

type MarginAccountQueryMaxTransferOutAmountService = margin.MarginAccountQueryMaxTransferOutAmountService

type MarginAccountQueryOCOResponse added in v0.3.3

type MarginAccountQueryOCOResponse = margin.MarginAccountQueryOCOResponse

type MarginAccountQueryOCOService added in v0.3.3

type MarginAccountQueryOCOService = margin.MarginAccountQueryOCOService

type MarginAccountQueryOpenOCOResponse added in v0.3.3

type MarginAccountQueryOpenOCOResponse = margin.MarginAccountQueryOpenOCOResponse

type MarginAccountQueryOpenOCOService added in v0.3.3

type MarginAccountQueryOpenOCOService = margin.MarginAccountQueryOpenOCOService

type MarginAccountQueryTradeListResponse added in v0.3.3

type MarginAccountQueryTradeListResponse = margin.MarginAccountQueryTradeListResponse

type MarginAccountQueryTradeListService added in v0.3.3

type MarginAccountQueryTradeListService = margin.MarginAccountQueryTradeListService

type MarginAccountSummaryResponse added in v0.3.3

type MarginAccountSummaryResponse = margin.MarginAccountSummaryResponse

type MarginAccountSummaryService added in v0.3.3

type MarginAccountSummaryService = margin.MarginAccountSummaryService

type MarginBnbBurnStatusResponse added in v0.3.3

type MarginBnbBurnStatusResponse = margin.MarginBnbBurnStatusResponse

type MarginBnbBurnStatusService added in v0.3.3

type MarginBnbBurnStatusService = margin.MarginBnbBurnStatusService

type MarginCrossCollateralRatioResponse added in v0.3.3

type MarginCrossCollateralRatioResponse = margin.MarginCrossCollateralRatioResponse

type MarginCrossCollateralRatioService added in v0.3.3

type MarginCrossCollateralRatioService = margin.MarginCrossCollateralRatioService

type MarginCrossMarginFeeResponse added in v0.3.3

type MarginCrossMarginFeeResponse = margin.MarginCrossMarginFeeResponse

type MarginCrossMarginFeeService added in v0.3.3

type MarginCrossMarginFeeService = margin.MarginCrossMarginFeeService

type MarginCurrentOrderCountResponse added in v0.3.3

type MarginCurrentOrderCountResponse = margin.MarginCurrentOrderCountResponse

type MarginCurrentOrderCountService added in v0.3.3

type MarginCurrentOrderCountService = margin.MarginCurrentOrderCountService

type MarginDustlogResponse added in v0.3.3

type MarginDustlogResponse = margin.MarginDustlogResponse

type MarginDustlogService added in v0.3.3

type MarginDustlogService = margin.MarginDustlogService

type MarginInterestRateHistoryResponse added in v0.3.3

type MarginInterestRateHistoryResponse = margin.MarginInterestRateHistoryResponse

type MarginInterestRateHistoryService added in v0.3.3

type MarginInterestRateHistoryService = margin.MarginInterestRateHistoryService

type MarginIsolatedAccountDisableResponse added in v0.3.3

type MarginIsolatedAccountDisableResponse = margin.MarginIsolatedAccountDisableResponse

type MarginIsolatedAccountDisableService added in v0.3.3

type MarginIsolatedAccountDisableService = margin.MarginIsolatedAccountDisableService

type MarginIsolatedAccountEnableResponse added in v0.3.3

type MarginIsolatedAccountEnableResponse = margin.MarginIsolatedAccountEnableResponse

type MarginIsolatedAccountEnableService added in v0.3.3

type MarginIsolatedAccountEnableService = margin.MarginIsolatedAccountEnableService

type MarginIsolatedAccountInfoAssets added in v0.3.3

type MarginIsolatedAccountInfoAssets = margin.MarginIsolatedAccountInfoAssets

type MarginIsolatedAccountInfoResponse added in v0.3.3

type MarginIsolatedAccountInfoResponse = margin.MarginIsolatedAccountInfoResponse

type MarginIsolatedAccountInfoResponseSymbols added in v0.3.3

type MarginIsolatedAccountInfoResponseSymbols = margin.MarginIsolatedAccountInfoResponseSymbols

type MarginIsolatedAccountInfoService added in v0.3.3

type MarginIsolatedAccountInfoService = margin.MarginIsolatedAccountInfoService

type MarginIsolatedAccountLimitResponse added in v0.3.3

type MarginIsolatedAccountLimitResponse = margin.MarginIsolatedAccountLimitResponse

type MarginIsolatedAccountLimitService added in v0.3.3

type MarginIsolatedAccountLimitService = margin.MarginIsolatedAccountLimitService

type MarginIsolatedAccountTransferHistoryResponse added in v0.3.3

type MarginIsolatedAccountTransferHistoryResponse = margin.MarginIsolatedAccountTransferHistoryResponse

type MarginIsolatedAccountTransferHistoryService added in v0.3.3

type MarginIsolatedAccountTransferHistoryService = margin.MarginIsolatedAccountTransferHistoryService

type MarginIsolatedAccountTransferResponse added in v0.3.3

type MarginIsolatedAccountTransferResponse = margin.MarginIsolatedAccountTransferResponse

type MarginIsolatedAccountTransferService added in v0.3.3

type MarginIsolatedAccountTransferService = margin.MarginIsolatedAccountTransferService

type MarginIsolatedMarginFeeResponse added in v0.3.3

type MarginIsolatedMarginFeeResponse = margin.MarginIsolatedMarginFeeResponse

type MarginIsolatedMarginFeeService added in v0.3.3

type MarginIsolatedMarginFeeService = margin.MarginIsolatedMarginFeeService

type MarginIsolatedMarginTierResponse added in v0.3.3

type MarginIsolatedMarginTierResponse = margin.MarginIsolatedMarginTierResponse

type MarginIsolatedMarginTierService added in v0.3.3

type MarginIsolatedMarginTierService = margin.MarginIsolatedMarginTierService

type MarginIsolatedSymbolResponse added in v0.3.3

type MarginIsolatedSymbolResponse = margin.MarginIsolatedSymbolResponse

type MarginIsolatedSymbolService added in v0.3.3

type MarginIsolatedSymbolService = margin.MarginIsolatedSymbolService

type MarginSmallLiabilityExchangeCoinListResponse added in v0.3.3

type MarginSmallLiabilityExchangeCoinListResponse = margin.MarginSmallLiabilityExchangeCoinListResponse

type MarginSmallLiabilityExchangeCoinListService added in v0.3.3

type MarginSmallLiabilityExchangeCoinListService = margin.MarginSmallLiabilityExchangeCoinListService

type MarginSmallLiabilityExchangeHistoryResponse added in v0.3.3

type MarginSmallLiabilityExchangeHistoryResponse = margin.MarginSmallLiabilityExchangeHistoryResponse

type MarginSmallLiabilityExchangeHistoryService added in v0.3.3

type MarginSmallLiabilityExchangeHistoryService = margin.MarginSmallLiabilityExchangeHistoryService

type MarginSmallLiabilityExchangeResponse added in v0.3.3

type MarginSmallLiabilityExchangeResponse = margin.MarginSmallLiabilityExchangeResponse

type MarginSmallLiabilityExchangeService added in v0.3.3

type MarginSmallLiabilityExchangeService = margin.MarginSmallLiabilityExchangeService

type MarginToggleBnbBurnResponse added in v0.3.3

type MarginToggleBnbBurnResponse = margin.MarginToggleBnbBurnResponse

type MarginToggleBnbBurnService added in v0.3.3

type MarginToggleBnbBurnService = margin.MarginToggleBnbBurnService

type MarginTransferForSubAccountResp added in v0.3.1

type MarginTransferForSubAccountResp = subaccount.MarginTransferForSubAccountResp

type MarginTransferForSubAccountService added in v0.3.1

type MarginTransferForSubAccountService = subaccount.MarginTransferForSubAccountService

type NewOCOService added in v0.2.2

type NewOCOService = spot.NewOCOService

file: api/spot/newoco.go

type OCOResponse added in v0.2.2

type OCOResponse = spot.OCOResponse

type OrderBook added in v0.2.0

type OrderBook = market.OrderBook

file: api/market/orderbook.go

type OrderBookResponse added in v0.2.0

type OrderBookResponse = market.OrderBookResponse

type OrderData added in v0.3.0

type OrderData = spot.OrderData

type OrderOCOResponse added in v0.2.2

type OrderOCOResponse = spot.OrderOCOResponse

type OrderResponse added in v0.2.2

type OrderResponse = spot.OrderResponse

file: api/spot/orderresponse.go

type PersonalLeftQuotaResponse added in v0.3.1

type PersonalLeftQuotaResponse = staking.PersonalLeftQuotaResponse

type PersonalLeftQuotaService added in v0.3.1

type PersonalLeftQuotaService = staking.PersonalLeftQuotaService

file: api/staking/personalleftquota.go

type Ping added in v0.2.0

type Ping = market.Ping

file: api/market/ping.go

type PurchaseStakingProductResponse added in v0.3.1

type PurchaseStakingProductResponse = staking.PurchaseStakingProductResponse

type PurchaseStakingProductService added in v0.3.1

type PurchaseStakingProductService = staking.PurchaseStakingProductService

file: api/staking/purchasestakingproduct.go

type QueryAllOCOService added in v0.2.2

type QueryAllOCOService = spot.QueryAllOCOService

file: api/spot/queryalloco.go

type QueryCrossMarginPairResponse added in v0.3.3

type QueryCrossMarginPairResponse = margin.QueryCrossMarginPairResponse

type QueryCrossMarginPairService added in v0.3.3

type QueryCrossMarginPairService = margin.QueryCrossMarginPairService

type QueryCurrentOrderCountUsageResponse added in v0.2.4

type QueryCurrentOrderCountUsageResponse = account.QueryCurrentOrderCountUsageResponse

type QueryCurrentOrderCountUsageService added in v0.2.4

type QueryCurrentOrderCountUsageService = account.QueryCurrentOrderCountUsageService

file: api/account/currentordercount.go

type QueryManagedSubAccountAssetDetailsResp added in v0.3.1

type QueryManagedSubAccountAssetDetailsResp = subaccount.QueryManagedSubAccountAssetDetailsResp

type QueryManagedSubAccountAssetDetailsService added in v0.3.1

type QueryManagedSubAccountAssetDetailsService = subaccount.QueryManagedSubAccountAssetDetailsService

type QueryManagedSubAccountFuturesAssetDetailsResp added in v0.3.1

type QueryManagedSubAccountFuturesAssetDetailsResp = subaccount.QueryManagedSubAccountFuturesAssetDetailsResp

type QueryManagedSubAccountFuturesAssetDetailsService added in v0.3.1

type QueryManagedSubAccountFuturesAssetDetailsService = subaccount.QueryManagedSubAccountFuturesAssetDetailsService

type QueryManagedSubAccountList added in v0.3.1

type QueryManagedSubAccountList = subaccount.QueryManagedSubAccountList

type QueryManagedSubAccountListResp added in v0.3.1

type QueryManagedSubAccountListResp = subaccount.QueryManagedSubAccountListResp

type QueryManagedSubAccountMarginAssetDetailsResp added in v0.3.1

type QueryManagedSubAccountMarginAssetDetailsResp = subaccount.QueryManagedSubAccountMarginAssetDetailsResp

type QueryManagedSubAccountMarginAssetDetailsService added in v0.3.1

type QueryManagedSubAccountMarginAssetDetailsService = subaccount.QueryManagedSubAccountMarginAssetDetailsService

type QueryManagedSubAccountSnapshotResp added in v0.3.1

type QueryManagedSubAccountSnapshotResp = subaccount.QueryManagedSubAccountSnapshotResp

type QueryManagedSubAccountSnapshotService added in v0.3.1

type QueryManagedSubAccountSnapshotService = subaccount.QueryManagedSubAccountSnapshotService

type QueryManagedSubAccountTransferLogForTradingTeamResp added in v0.3.1

type QueryManagedSubAccountTransferLogForTradingTeamResp = subaccount.QueryManagedSubAccountTransferLogForTradingTeamResp

type QueryManagedSubAccountTransferLogForTradingTeamService added in v0.3.1

type QueryManagedSubAccountTransferLogForTradingTeamService = subaccount.QueryManagedSubAccountTransferLogForTradingTeamService

type QueryManagedSubAccountTransferLogResp added in v0.3.1

type QueryManagedSubAccountTransferLogResp = subaccount.QueryManagedSubAccountTransferLogResp

type QueryManagedSubAccountTransferLogService added in v0.3.1

type QueryManagedSubAccountTransferLogService = subaccount.QueryManagedSubAccountTransferLogService

type QueryMarginAssetResponse added in v0.3.3

type QueryMarginAssetResponse = margin.QueryMarginAssetResponse

type QueryMarginAssetService added in v0.3.3

type QueryMarginAssetService = margin.QueryMarginAssetService

type QueryMarginBorrowRepay added in v0.3.3

type QueryMarginBorrowRepay = margin.QueryMarginBorrowRepay

type QueryMarginBorrowRepayService added in v0.3.3

type QueryMarginBorrowRepayService = margin.QueryMarginBorrowRepayService

type QueryMarginPriceIndexResponse added in v0.3.3

type QueryMarginPriceIndexResponse = margin.QueryMarginPriceIndexResponse

type QueryMarginPriceIndexService added in v0.3.3

type QueryMarginPriceIndexService = margin.QueryMarginPriceIndexService

type QueryOCOService added in v0.2.2

type QueryOCOService = spot.QueryOCOService

file: api/spot/queryoco.go

type QueryOpenOCOService added in v0.2.2

type QueryOpenOCOService = spot.QueryOpenOCOService

file: api/spot/queryopenoco.go

type QueryPreventedMatchesResponse added in v0.2.4

type QueryPreventedMatchesResponse = account.QueryPreventedMatchesResponse

type QueryPreventedMatchesService added in v0.2.4

type QueryPreventedMatchesService = account.QueryPreventedMatchesService

file: api/account/preventedmatches.go

type QuerySubAccountAssetsForMasterAccountResp added in v0.3.1

type QuerySubAccountAssetsForMasterAccountResp = subaccount.QuerySubAccountAssetsForMasterAccountResp

type QuerySubAccountAssetsForMasterAccountService added in v0.3.1

type QuerySubAccountAssetsForMasterAccountService = subaccount.QuerySubAccountAssetsForMasterAccountService

type QuerySubAccountAssetsResp added in v0.3.1

type QuerySubAccountAssetsResp = subaccount.QuerySubAccountAssetsResp

type QuerySubAccountAssetsService added in v0.3.1

type QuerySubAccountAssetsService = subaccount.QuerySubAccountAssetsService

type QuerySubAccountFuturesAssetTransferHistoryResp added in v0.3.1

type QuerySubAccountFuturesAssetTransferHistoryResp = subaccount.QuerySubAccountFuturesAssetTransferHistoryResp

type QuerySubAccountFuturesAssetTransferHistoryService added in v0.3.1

type QuerySubAccountFuturesAssetTransferHistoryService = subaccount.QuerySubAccountFuturesAssetTransferHistoryService

type QuerySubAccountListService added in v0.3.1

type QuerySubAccountListService = subaccount.QuerySubAccountListService

type QuerySubAccountSpotAssetTransferHistoryService added in v0.3.1

type QuerySubAccountSpotAssetTransferHistoryService = subaccount.QuerySubAccountSpotAssetTransferHistoryService

type QuerySubAccountSpotAssetsSummaryResp added in v0.3.1

type QuerySubAccountSpotAssetsSummaryResp = subaccount.QuerySubAccountSpotAssetsSummaryResp

type QuerySubAccountSpotAssetsSummaryService added in v0.3.1

type QuerySubAccountSpotAssetsSummaryService = subaccount.QuerySubAccountSpotAssetsSummaryService

type QuerySubAccountTransactionStatistics added in v0.3.1

type QuerySubAccountTransactionStatistics = subaccount.QuerySubAccountTransactionStatistics

type QuerySubAccountTransactionStatisticsResp added in v0.3.1

type QuerySubAccountTransactionStatisticsResp = subaccount.QuerySubAccountTransactionStatisticsResp

type QueryUniversalTransferHistoryResp added in v0.3.1

type QueryUniversalTransferHistoryResp = subaccount.QueryUniversalTransferHistoryResp

type QueryUniversalTransferHistoryService added in v0.3.1

type QueryUniversalTransferHistoryService = subaccount.QueryUniversalTransferHistoryService

type RateLimit added in v0.3.0

type RateLimit = market.RateLimit

type RecentTradesList added in v0.2.0

type RecentTradesList = market.RecentTradesList

file: api/market/recenttrades.go

type RecentTradesListResponse added in v0.2.0

type RecentTradesListResponse = market.RecentTradesListResponse

type RedeemETHResponse added in v0.3.5

type RedeemETHResponse = ethstaking.RedeemETHResponse

type RedeemETHService added in v0.3.5

type RedeemETHService = ethstaking.RedeemETHService

file: api/ethstaking/redeemeth.go

type RedeemStakingProductResponse added in v0.3.1

type RedeemStakingProductResponse = staking.RedeemStakingProductResponse

type RedeemStakingProductService added in v0.3.1

type RedeemStakingProductService = staking.RedeemStakingProductService

file: api/staking/redeemstakingproduct.go

type RepayResponse added in v0.3.3

type RepayResponse = margin.RepayResponse

type RepayService added in v0.3.3

type RepayService = margin.RepayService

type ServerTime added in v0.2.0

type ServerTime = market.ServerTime

file: api/market/servertime.go

type ServerTimeResponse added in v0.2.0

type ServerTimeResponse = market.ServerTimeResponse

type Service added in v0.4.0

type Service = binanceservice.Service

type SetAutoStakingResponse added in v0.3.1

type SetAutoStakingResponse = staking.SetAutoStakingResponse

type SetAutoStakingService added in v0.3.1

type SetAutoStakingService = staking.SetAutoStakingService

file: api/staking/setautostaking.go

type StakingHistoryResponse added in v0.3.1

type StakingHistoryResponse = staking.StakingHistoryResponse

type StakingHistoryService added in v0.3.1

type StakingHistoryService = staking.StakingHistoryService

file: api/staking/stakinghistory.go

type StakingProductListResponse added in v0.3.1

type StakingProductListResponse = staking.StakingProductListResponse

type StakingProductListService added in v0.3.1

type StakingProductListService = staking.StakingProductListService

file: api/staking/stakingproductlist.go

type StakingProductPositionResponse added in v0.3.1

type StakingProductPositionResponse = staking.StakingProductPositionResponse

type StakingProductPositionService added in v0.3.1

type StakingProductPositionService = staking.StakingProductPositionService

file: api/staking/stakingproductposition.go

type SubAccount added in v0.3.1

type SubAccount = subaccount.SubAccount

type SubAccountDepositAddressResp added in v0.3.1

type SubAccountDepositAddressResp = subaccount.SubAccountDepositAddressResp

type SubAccountDepositAddressService added in v0.3.1

type SubAccountDepositAddressService = subaccount.SubAccountDepositAddressService

type SubAccountDepositHistoryResponse added in v0.3.1

type SubAccountDepositHistoryResponse = subaccount.SubAccountDepositHistoryResponse

type SubAccountDepositHistoryService added in v0.3.1

type SubAccountDepositHistoryService = subaccount.SubAccountDepositHistoryService

type SubAccountFuturesAssetTransferResp added in v0.3.1

type SubAccountFuturesAssetTransferResp = subaccount.SubAccountFuturesAssetTransferResp

type SubAccountFuturesAssetTransferService added in v0.3.1

type SubAccountFuturesAssetTransferService = subaccount.SubAccountFuturesAssetTransferService

type SubAccountListResp added in v0.3.1

type SubAccountListResp = subaccount.SubAccountListResp

type SubAccountStatusResp added in v0.3.1

type SubAccountStatusResp = subaccount.SubAccountStatusResp

type SubAccountStatusService added in v0.3.1

type SubAccountStatusService = subaccount.SubAccountStatusService

type SubAccountTransferHistoryResp added in v0.3.1

type SubAccountTransferHistoryResp = subaccount.SubAccountTransferHistoryResp

type SubAccountTransferHistoryResponse added in v0.3.1

type SubAccountTransferHistoryResponse = subaccount.SubAccountTransferHistoryResponse

type SubAccountTransferHistoryService added in v0.3.1

type SubAccountTransferHistoryService = subaccount.SubAccountTransferHistoryService

type SubscribeETHStakingResponse added in v0.3.5

type SubscribeETHStakingResponse = ethstaking.SubscribeETHStakingResponse

type SubscribeETHStakingService added in v0.3.5

type SubscribeETHStakingService = ethstaking.SubscribeETHStakingService

file: api/ethstaking/subscribestaking.go

type SubscribeETHStakingV2Response added in v0.3.5

type SubscribeETHStakingV2Response = ethstaking.SubscribeETHStakingV2Response

type SubscribeETHStakingV2Service added in v0.3.5

type SubscribeETHStakingV2Service = ethstaking.SubscribeETHStakingV2Service

file: api/ethstaking/subscribestakingv2.go

type SummaryOfSubAccountFuturesAccountResp added in v0.3.1

type SummaryOfSubAccountFuturesAccountResp = subaccount.SummaryOfSubAccountFuturesAccountResp

type SummaryOfSubAccountFuturesAccountService added in v0.3.1

type SummaryOfSubAccountFuturesAccountService = subaccount.SummaryOfSubAccountFuturesAccountService

type SummaryOfSubAccountFuturesAccountV2COINResp added in v0.3.1

type SummaryOfSubAccountFuturesAccountV2COINResp = subaccount.SummaryOfSubAccountFuturesAccountV2COINResp

type SummaryOfSubAccountFuturesAccountV2Service added in v0.3.1

type SummaryOfSubAccountFuturesAccountV2Service = subaccount.SummaryOfSubAccountFuturesAccountV2Service

type SummaryOfSubAccountFuturesAccountV2USDTResp added in v0.3.1

type SummaryOfSubAccountFuturesAccountV2USDTResp = subaccount.SummaryOfSubAccountFuturesAccountV2USDTResp

type SummaryOfSubAccountMarginAccountResp added in v0.3.1

type SummaryOfSubAccountMarginAccountResp = subaccount.SummaryOfSubAccountMarginAccountResp

type SummaryOfSubAccountMarginAccountService added in v0.3.1

type SummaryOfSubAccountMarginAccountService = subaccount.SummaryOfSubAccountMarginAccountService

type SymbolFilter added in v0.3.0

type SymbolFilter = market.SymbolFilter

type SymbolInfo added in v0.3.0

type SymbolInfo = market.SymbolInfo

type SystemStatusResponse added in v0.2.4

type SystemStatusResponse = wallet.SystemStatusResponse

type SystemStatusService added in v0.2.4

type SystemStatusService = wallet.SystemStatusService

file: api/wallet/systemstatus.go

type TestNewOrder added in v0.2.2

type TestNewOrder = spot.TestNewOrder

file: api/spot/testneworder.go

type Ticker added in v0.2.0

type Ticker = market.Ticker

file: api/market/ticker.go

type Ticker24hr added in v0.2.0

type Ticker24hr = market.Ticker24hr

file: api/market/ticker24.go

type Ticker24hrResponse added in v0.2.0

type Ticker24hrResponse = market.Ticker24hrResponse

type TickerBookTicker added in v0.2.0

type TickerBookTicker = market.TickerBookTicker

file: api/market/bookticker.go

type TickerBookTickerResponse added in v0.2.0

type TickerBookTickerResponse = market.TickerBookTickerResponse

type TickerPrice added in v0.1.2

type TickerPrice = market.TickerPrice

file: api/market/tickerprice.go

type TickerPriceResponse added in v0.1.2

type TickerPriceResponse = market.TickerPriceResponse

type TickerResponse added in v0.2.0

type TickerResponse = market.TickerResponse

type TradeFeeResponse added in v0.2.4

type TradeFeeResponse = wallet.TradeFeeResponse

type TradeFeeService added in v0.2.4

type TradeFeeService = wallet.TradeFeeService

file: api/wallet/tradefee.go

type TransferResponse added in v0.3.3

type TransferResponse = margin.TransferResponse

type TransferService added in v0.3.3

type TransferService = margin.TransferService

file: api/margin/margin.go

type TransferToMasterResp added in v0.3.1

type TransferToMasterResp = subaccount.TransferToMasterResp

type TransferToMasterService added in v0.3.1

type TransferToMasterService = subaccount.TransferToMasterService

type TransferToSubAccountOfSameMasterResp added in v0.3.1

type TransferToSubAccountOfSameMasterResp = subaccount.TransferToSubAccountOfSameMasterResp

type TransferToSubAccountOfSameMasterService added in v0.3.1

type TransferToSubAccountOfSameMasterService = subaccount.TransferToSubAccountOfSameMasterService

type UiKlines added in v0.2.0

type UiKlines = market.UiKlines

file: api/market/uiklines.go

type UniversalTransferResp added in v0.3.1

type UniversalTransferResp = subaccount.UniversalTransferResp

type UniversalTransferService added in v0.3.1

type UniversalTransferService = subaccount.UniversalTransferService

type UpdateIPRestrictionForSubAccountAPIKeyResp added in v0.3.1

type UpdateIPRestrictionForSubAccountAPIKeyResp = subaccount.UpdateIPRestrictionForSubAccountAPIKeyResp

type UpdateIPRestrictionForSubAccountAPIKeyService added in v0.3.1

type UpdateIPRestrictionForSubAccountAPIKeyService = subaccount.UpdateIPRestrictionForSubAccountAPIKeyService

type UserAssetDribblet added in v0.3.3

type UserAssetDribblet = margin.UserAssetDribblet

type UserAssetDribbletDetail added in v0.3.3

type UserAssetDribbletDetail = margin.UserAssetDribbletDetail

type UserAssetResponse added in v0.2.4

type UserAssetResponse = wallet.UserAssetResponse

type UserAssetService added in v0.2.4

type UserAssetService = wallet.UserAssetService

file: api/wallet/userasset.go

type UserUniversalTransferHistoryResponse added in v0.2.4

type UserUniversalTransferHistoryResponse = wallet.UserUniversalTransferHistoryResponse

type UserUniversalTransferHistoryService added in v0.2.4

type UserUniversalTransferHistoryService = wallet.UserUniversalTransferHistoryService

file: api/wallet/universaltransferhistory.go

type UserUniversalTransferResponse added in v0.2.4

type UserUniversalTransferResponse = wallet.UserUniversalTransferResponse

type UserUniversalTransferService added in v0.2.4

type UserUniversalTransferService = wallet.UserUniversalTransferService

file: api/wallet/universaltransfer.go

type WBETHHistoryResponse added in v0.3.5

type WBETHHistoryResponse = ethstaking.WBETHHistoryResponse

type WBETHHistoryRow added in v0.3.5

type WBETHHistoryRow = ethstaking.WBETHHistoryRow

type WBETHRateHistoryResponse added in v0.3.5

type WBETHRateHistoryResponse = ethstaking.WBETHRateHistoryResponse

type WBETHRateHistoryRow added in v0.3.5

type WBETHRateHistoryRow = ethstaking.WBETHRateHistoryRow

type WBETHRateHistoryService added in v0.3.5

type WBETHRateHistoryService = ethstaking.WBETHRateHistoryService

file: api/ethstaking/wbethratehistory.go

type WBETHRewardsHistoryResponse added in v0.3.5

type WBETHRewardsHistoryResponse = ethstaking.WBETHRewardsHistoryResponse

type WBETHRewardsHistoryRow added in v0.3.5

type WBETHRewardsHistoryRow = ethstaking.WBETHRewardsHistoryRow

type WBETHRewardsHistoryService added in v0.3.5

type WBETHRewardsHistoryService = ethstaking.WBETHRewardsHistoryService

file: api/ethstaking/wbethrewardshistory.go

type WBETHUnwrapHistoryService added in v0.3.5

type WBETHUnwrapHistoryService = ethstaking.WBETHUnwrapHistoryService

file: api/ethstaking/wbethunwraphistory.go

type WBETHWrapHistoryService added in v0.3.5

type WBETHWrapHistoryService = ethstaking.WBETHWrapHistoryService

file: api/ethstaking/wbethwraphistory.go

type WithdrawAssetsFromTheManagedSubAccountResp added in v0.3.1

type WithdrawAssetsFromTheManagedSubAccountResp = subaccount.WithdrawAssetsFromTheManagedSubAccountResp

type WithdrawAssetsFromTheManagedSubAccountService added in v0.3.1

type WithdrawAssetsFromTheManagedSubAccountService = subaccount.WithdrawAssetsFromTheManagedSubAccountService

type WithdrawHistoryResponse added in v0.2.4

type WithdrawHistoryResponse = wallet.WithdrawHistoryResponse

type WithdrawHistoryService added in v0.2.4

type WithdrawHistoryService = wallet.WithdrawHistoryService

file: api/wallet/withdrawhistory.go

type WithdrawResponse added in v0.2.4

type WithdrawResponse = wallet.WithdrawResponse

type WithdrawService added in v0.2.4

type WithdrawService = wallet.WithdrawService

file: api/wallet/withdraw.go

type WrapBETHResponse added in v0.3.5

type WrapBETHResponse = ethstaking.WrapBETHResponse

type WrapBETHService added in v0.3.5

type WrapBETHService = ethstaking.WrapBETHService

file: api/ethstaking/wrapbeth.go

Directories

Path Synopsis
api
examples
neworder command
tickerprice command
tickerpricealt command
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL