@rabby-wallet/rabby-api 0.9.12-beta.3 → 0.9.12-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +8 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1417,15 +1417,20 @@ export interface BuyQuoteItem {
|
|
|
1417
1417
|
token_amount: number;
|
|
1418
1418
|
payment_method_type: string;
|
|
1419
1419
|
}
|
|
1420
|
-
interface BuyHistoryItem {
|
|
1420
|
+
export interface BuyHistoryItem {
|
|
1421
|
+
id: string;
|
|
1421
1422
|
user_addr: string;
|
|
1422
|
-
status:
|
|
1423
|
+
status: string;
|
|
1423
1424
|
create_at: number;
|
|
1424
1425
|
service_provider: BuyServiceProvider;
|
|
1426
|
+
service_provider_url: null | string;
|
|
1425
1427
|
pay_usd_amount: number;
|
|
1428
|
+
pay_currency_code: string;
|
|
1426
1429
|
payment_type: string;
|
|
1427
|
-
receive_tx_id: string;
|
|
1428
1430
|
receive_chain_id: string;
|
|
1431
|
+
receive_tx_id: string;
|
|
1432
|
+
receive_token_id: string;
|
|
1433
|
+
receive_amount: number;
|
|
1429
1434
|
receive_token: TokenItem;
|
|
1430
1435
|
}
|
|
1431
1436
|
export interface BuyHistoryList {
|