mirror of
https://github.com/GMWalletApp/epusdt.git
synced 2026-07-07 10:16:15 +00:00
938396d82b
- Add multi-currency exchange rate API integration (GetRateForCoin) - Implement native TRX transfer detection alongside TRC20 USDT transfers - Replace deprecated Tronscan API with Trongrid API for better reliability - Add TRON Grid API key configuration support - Refactor order service to support multiple tokens and currencies - Update wallet address locking/unlocking to track token type - Add base58 and gjson dependencies for crypto operations - Optimize SQLite connection with WAL mode and busy timeout - Remove deprecated USDT rate job (replaced by dynamic rate API) - Update order data model to include currency and receive address fields - Enhance TRC20 callback with improved error handling and logging
28 lines
1.7 KiB
Go
28 lines
1.7 KiB
Go
package response
|
|
|
|
// CreateTransactionResponse 创建订单成功返回
|
|
type CreateTransactionResponse struct {
|
|
TradeId string `json:"trade_id"` // epusdt订单号
|
|
OrderId string `json:"order_id"` // 客户交易id
|
|
Amount float64 `json:"amount"` // 订单金额,保留4位小数
|
|
Currency string `json:"currency"` // 订单货币类型 CNY USD......
|
|
ActualAmount float64 `json:"actual_amount"` // 订单实际需要支付的金额,保留4位小数
|
|
ReceiveAddress string `json:"receive_address"` // 收款钱包地址
|
|
Token string `json:"token"` // 所属币种 TRX USDT......
|
|
ExpirationTime int64 `json:"expiration_time"` // 过期时间 时间戳
|
|
PaymentUrl string `json:"payment_url"` // 收银台地址
|
|
}
|
|
|
|
// OrderNotifyResponse 订单异步回调结构体
|
|
type OrderNotifyResponse struct {
|
|
TradeId string `json:"trade_id"` // epusdt订单号
|
|
OrderId string `json:"order_id"` // 客户交易id
|
|
Amount float64 `json:"amount"` // 订单金额,保留4位小数
|
|
ActualAmount float64 `json:"actual_amount"` // 订单实际需要支付的金额,保留4位小数
|
|
ReceiveAddress string `json:"receive_address"` // 收款钱包地址
|
|
Token string `json:"token"` // 所属币种 TRX USDT......
|
|
BlockTransactionId string `json:"block_transaction_id"` // 区块id
|
|
Signature string `json:"signature"` // 签名
|
|
Status int `json:"status"` // 1:等待支付,2:支付成功,3:已过期
|
|
}
|