2020-10-02 02:10:59 +00:00
|
|
|
package max
|
|
|
|
|
2022-04-19 04:10:15 +00:00
|
|
|
//go:generate -command GetRequest requestgen -method GET
|
|
|
|
//go:generate -command PostRequest requestgen -method POST
|
2022-05-24 10:00:52 +00:00
|
|
|
//go:generate -command DeleteRequest requestgen -method DELETE
|
2022-04-19 04:10:15 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/c9s/requestgen"
|
2022-04-20 05:28:39 +00:00
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
2022-04-19 04:10:15 +00:00
|
|
|
)
|
2020-10-11 09:35:59 +00:00
|
|
|
|
2020-10-02 02:10:59 +00:00
|
|
|
type AccountService struct {
|
|
|
|
client *RestClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// Account is for max rest api v2, Balance and Type will be conflict with types.PrivateBalanceUpdate
|
|
|
|
type Account struct {
|
2022-05-28 08:47:41 +00:00
|
|
|
Type string `json:"type"`
|
|
|
|
Currency string `json:"currency"`
|
|
|
|
Balance fixedpoint.Value `json:"balance"`
|
|
|
|
Locked fixedpoint.Value `json:"locked"`
|
|
|
|
|
|
|
|
// v3 fields for M wallet
|
|
|
|
Debt fixedpoint.Value `json:"debt"`
|
|
|
|
Interest fixedpoint.Value `json:"interest"`
|
|
|
|
|
|
|
|
// v2 fields
|
2022-04-20 05:28:39 +00:00
|
|
|
FiatCurrency string `json:"fiat_currency"`
|
|
|
|
FiatBalance fixedpoint.Value `json:"fiat_balance"`
|
2020-10-02 02:10:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type UserBank struct {
|
|
|
|
Branch string `json:"branch"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Account string `json:"account"`
|
|
|
|
State string `json:"state"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type UserInfo struct {
|
|
|
|
Sn string `json:"sn"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Type string `json:"member_type"`
|
|
|
|
Level int `json:"level"`
|
2021-03-18 09:52:23 +00:00
|
|
|
VipLevel int `json:"vip_level"`
|
2020-10-02 02:10:59 +00:00
|
|
|
Email string `json:"email"`
|
|
|
|
Accounts []Account `json:"accounts"`
|
|
|
|
Bank *UserBank `json:"bank,omitempty"`
|
|
|
|
IsFrozen bool `json:"is_frozen"`
|
|
|
|
IsActivated bool `json:"is_activated"`
|
|
|
|
KycApproved bool `json:"kyc_approved"`
|
|
|
|
KycState string `json:"kyc_state"`
|
|
|
|
PhoneSet bool `json:"phone_set"`
|
|
|
|
PhoneNumber string `json:"phone_number"`
|
|
|
|
ProfileVerified bool `json:"profile_verified"`
|
|
|
|
CountryCode string `json:"country_code"`
|
|
|
|
IdentityNumber string `json:"identity_number"`
|
|
|
|
WithDrawable bool `json:"withdrawable"`
|
|
|
|
ReferralCode string `json:"referral_code"`
|
|
|
|
}
|
|
|
|
|
2021-03-18 09:57:52 +00:00
|
|
|
type VipLevelSettings struct {
|
|
|
|
Level int `json:"level"`
|
|
|
|
MinimumTradingVolume float64 `json:"minimum_trading_volume"`
|
|
|
|
MinimumStakingVolume float64 `json:"minimum_staking_volume"`
|
|
|
|
MakerFee float64 `json:"maker_fee"`
|
|
|
|
TakerFee float64 `json:"taker_fee"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type VipLevel struct {
|
|
|
|
Current VipLevelSettings `json:"current_vip_level"`
|
|
|
|
Next VipLevelSettings `json:"next_vip_level"`
|
|
|
|
}
|
|
|
|
|
2022-04-20 05:35:17 +00:00
|
|
|
//go:generate GetRequest -url "v2/members/vip_level" -type GetVipLevelRequest -responseType .VipLevel
|
|
|
|
type GetVipLevelRequest struct {
|
|
|
|
client requestgen.AuthenticatedAPIClient
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *AccountService) NewGetVipLevelRequest() *GetVipLevelRequest {
|
2022-04-20 05:47:12 +00:00
|
|
|
return &GetVipLevelRequest{client: s.client}
|
2021-03-18 09:57:52 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 05:20:54 +00:00
|
|
|
//go:generate GetRequest -url "v2/members/accounts/:currency" -type GetAccountRequest -responseType .Account
|
|
|
|
type GetAccountRequest struct {
|
|
|
|
client requestgen.AuthenticatedAPIClient
|
2020-10-02 02:10:59 +00:00
|
|
|
|
2022-04-20 05:20:54 +00:00
|
|
|
currency string `param:"currency,slug"`
|
2020-10-02 02:10:59 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 05:28:39 +00:00
|
|
|
func (s *AccountService) NewGetAccountRequest() *GetAccountRequest {
|
|
|
|
return &GetAccountRequest{client: s.client}
|
|
|
|
}
|
|
|
|
|
2022-04-20 05:20:54 +00:00
|
|
|
//go:generate GetRequest -url "v2/members/accounts" -type GetAccountsRequest -responseType []Account
|
2022-04-19 04:10:15 +00:00
|
|
|
type GetAccountsRequest struct {
|
|
|
|
client requestgen.AuthenticatedAPIClient
|
|
|
|
}
|
|
|
|
|
2022-04-20 05:20:54 +00:00
|
|
|
func (s *AccountService) NewGetAccountsRequest() *GetAccountsRequest {
|
2022-04-19 04:10:15 +00:00
|
|
|
return &GetAccountsRequest{client: s.client}
|
|
|
|
}
|
|
|
|
|
2020-10-11 09:35:59 +00:00
|
|
|
type Deposit struct {
|
2022-04-20 06:01:18 +00:00
|
|
|
Currency string `json:"currency"`
|
|
|
|
CurrencyVersion string `json:"currency_version"` // "eth"
|
|
|
|
Amount fixedpoint.Value `json:"amount"`
|
|
|
|
Fee fixedpoint.Value `json:"fee"`
|
|
|
|
TxID string `json:"txid"`
|
|
|
|
State string `json:"state"`
|
|
|
|
Confirmations int64 `json:"confirmations"`
|
|
|
|
CreatedAt int64 `json:"created_at"`
|
|
|
|
UpdatedAt int64 `json:"updated_at"`
|
2020-10-11 09:35:59 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 05:20:54 +00:00
|
|
|
//go:generate GetRequest -url "v2/deposits" -type GetDepositHistoryRequest -responseType []Deposit
|
2020-10-11 09:35:59 +00:00
|
|
|
type GetDepositHistoryRequest struct {
|
2022-04-20 05:20:54 +00:00
|
|
|
client requestgen.AuthenticatedAPIClient
|
2020-10-11 09:35:59 +00:00
|
|
|
|
2022-04-25 09:18:42 +00:00
|
|
|
currency *string `param:"currency"`
|
2022-04-20 06:01:18 +00:00
|
|
|
from *int64 `param:"from"` // seconds
|
|
|
|
to *int64 `param:"to"` // seconds
|
|
|
|
state *string `param:"state"` // submitting, submitted, rejected, accepted, checking, refunded, canceled, suspect
|
|
|
|
limit *int `param:"limit"`
|
2020-10-11 09:35:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *AccountService) NewGetDepositHistoryRequest() *GetDepositHistoryRequest {
|
|
|
|
return &GetDepositHistoryRequest{
|
|
|
|
client: s.client,
|
|
|
|
}
|
|
|
|
}
|
2020-10-11 12:08:54 +00:00
|
|
|
|
|
|
|
type Withdraw struct {
|
2022-04-20 05:47:12 +00:00
|
|
|
UUID string `json:"uuid"`
|
|
|
|
Currency string `json:"currency"`
|
|
|
|
CurrencyVersion string `json:"currency_version"` // "eth"
|
|
|
|
Amount fixedpoint.Value `json:"amount"`
|
|
|
|
Fee fixedpoint.Value `json:"fee"`
|
|
|
|
FeeCurrency string `json:"fee_currency"`
|
|
|
|
TxID string `json:"txid"`
|
2020-10-11 12:08:54 +00:00
|
|
|
|
|
|
|
// State can be "submitting", "submitted",
|
|
|
|
// "rejected", "accepted", "suspect", "approved", "delisted_processing",
|
|
|
|
// "processing", "retryable", "sent", "canceled",
|
|
|
|
// "failed", "pending", "confirmed",
|
|
|
|
// "kgi_manually_processing", "kgi_manually_confirmed", "kgi_possible_failed",
|
|
|
|
// "sygna_verifying"
|
2021-03-14 03:02:33 +00:00
|
|
|
State string `json:"state"`
|
|
|
|
Confirmations int `json:"confirmations"`
|
|
|
|
CreatedAt int64 `json:"created_at"`
|
|
|
|
UpdatedAt int64 `json:"updated_at"`
|
2021-05-11 14:35:31 +00:00
|
|
|
Notes string `json:"notes"`
|
2020-10-11 12:08:54 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 05:20:54 +00:00
|
|
|
//go:generate GetRequest -url "v2/withdrawals" -type GetWithdrawHistoryRequest -responseType []Withdraw
|
2020-10-11 12:08:54 +00:00
|
|
|
type GetWithdrawHistoryRequest struct {
|
2022-04-20 05:20:54 +00:00
|
|
|
client requestgen.AuthenticatedAPIClient
|
2020-10-11 12:08:54 +00:00
|
|
|
|
2022-04-20 05:47:12 +00:00
|
|
|
currency string `param:"currency"`
|
|
|
|
from *int64 `param:"from"` // seconds
|
|
|
|
to *int64 `param:"to"` // seconds
|
|
|
|
state *string `param:"state"` // submitting, submitted, rejected, accepted, checking, refunded, canceled, suspect
|
|
|
|
limit *int `param:"limit"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *AccountService) NewGetWithdrawalHistoryRequest() *GetWithdrawHistoryRequest {
|
|
|
|
return &GetWithdrawHistoryRequest{
|
|
|
|
client: s.client,
|
|
|
|
}
|
2020-10-11 12:08:54 +00:00
|
|
|
}
|