WSPN
Language
  • English
Version
  • V1.0
HomeWallet
Language
  • English
Version
  • V1.0
HomeWallet
Twitter
Telegram
Linkedin
  1. Address
  • Introduction
  • Get Started
  • Signature
  • What is WUSD
  • Webhook Service
  • Sandbox Environment
  • Blockchain Confirmations
  • Appendix
  • API Keys
  • Core Functionality
    • Core Functionality
    • Quickstart: Deposit via Blockchain Wallet
    • Quickstart: Withdraw via Blockchain Wallet
    • Quickstart: Deposit via Funds Transfer
    • Quickstart: Withdraw to Bank
  • Api Reference
    • Authentication
      • Get Access Token
      • Refresh Access Token
    • Wallet
      • Address
        • Get Deposit Address
          GET
        • Add Whitelist Address
          POST
        • Get Whitelist Address
          POST
        • Delete Whitelist Address
          POST
      • Remit Info
        • Get Deposit Remit Info
        • Add Remit Info
        • Edit Remit Info
        • Get Remit Info
        • Delete Remit Info
      • Transaction
        • Get Balance
        • Create Fiat Deposit
        • Create Fiat Withdraw
        • Create Crypto Withdraw
        • Get Fiat Transaction
        • Get Exchange Rate
        • Create Mint/Redeem
        • Mint/Redeem History
        • Get Mint Redeem Receipt
        • Get Fiat Transaction Receipt
        • Get Crypto Transaction Receipt
  1. Address

Get Deposit Address

Developing
GET
/openapi/v1/wallet-address/deposit/{mainNet}
API to retrieve the system's WUSD deposit address for a specified network.
After obtaining the address, the user can initiate a transfer on the blockchain.
Once the transfer is completed and confirmed on the blockchain, a notification
will be sent to the user to finalize the deposit process.

Request

Path Params
mainNet
string 
required
MainNet Type: ETHEREUM,POLYGON,VICTION
Example:
POLYGON

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://wallet.test.wspn.io/openapi/v1/wallet-address/deposit/POLYGON'

Responses

🟢200成功
application/json
Body
header
object 
required
success
boolean 
required
result
object 
required
address
string 
required
WUSD deposit address
Example
{
  "header": {
    "success": true
  },
  "result": {
    "address": "0xDDDD40DD84D577254C2F9B9DC1498C339840ED1C"
  }
}
Previous
Refresh Access Token
Next
Add Whitelist Address
Built with