diff --git a/pkg/exchange/max/convert.go b/pkg/exchange/max/convert.go index 20b80e397..3f561b543 100644 --- a/pkg/exchange/max/convert.go +++ b/pkg/exchange/max/convert.go @@ -284,6 +284,13 @@ func toGlobalDepositStatus(a max.DepositState) types.DepositStatus { case max.DepositStateAccepted: return types.DepositSuccess + + case max.DepositStateProcessing: // v3 states + return types.DepositPending + + case max.DepositStateDone: // v3 states + return types.DepositSuccess + } // other states goes to this diff --git a/pkg/exchange/max/maxapi/account.go b/pkg/exchange/max/maxapi/account.go index a363a0449..ccf4c165b 100644 --- a/pkg/exchange/max/maxapi/account.go +++ b/pkg/exchange/max/maxapi/account.go @@ -116,6 +116,10 @@ const ( DepositStateSuspended DepositState = "suspended" DepositStateAccepted DepositState = "accepted" DepositStateChecking DepositState = "checking" + + // v3 states + DepositStateProcessing DepositState = "processing" + DepositStateDone DepositState = "done" ) type Deposit struct {