Marketplace

Add an address to the blacklist

POST /v1/app/marketplace/blacklist

Headers: Authentication

Request Body

NameTypeDescription

address*

String

The address of wallet that you want to block

{
    "data": {
       "status": string, # blocked 
       "address":  string
    },
    "code": 200
}

Remove an address in the blacklist

PUT /v1/app/marketplace/blacklist

Headers: Authentication

{
    "data": {
       "status": string, # unblocked
       "address":  string
    },
    "code": 200
}

Last updated