@arbiwallet/contracts 1.0.67 → 1.0.68

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/gen/card.ts CHANGED
@@ -137,6 +137,13 @@ export interface GetTopupDepositAddressResponse {
137
137
  address: string;
138
138
  invoiceCurrency: string;
139
139
  status: string;
140
+ amount: string;
141
+ paidAmount: string;
142
+ network: string;
143
+ expiresAt: string;
144
+ currency: string;
145
+ subaccountUsdtBalance: string;
146
+ subaccountBalanceCurrency: string;
140
147
  }
141
148
 
142
149
  export interface GetTopupInvoiceRequest {
@@ -151,6 +158,13 @@ export interface GetTopupInvoiceResponse {
151
158
  invoiceCurrency: string;
152
159
  amount: string;
153
160
  txHash: string;
161
+ paidAmount: string;
162
+ network: string;
163
+ expiresAt: string;
164
+ currency: string;
165
+ processingStatus: string;
166
+ subaccountUsdtBalance: string;
167
+ subaccountBalanceCurrency: string;
154
168
  }
155
169
 
156
170
  export interface UpdateAutoTopupRequest {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arbiwallet/contracts",
3
3
  "descriptions": "Generate and manage smart contracts for ArbiWallet",
4
- "version": "1.0.67",
4
+ "version": "1.0.68",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
package/proto/card.proto CHANGED
@@ -164,6 +164,13 @@ message GetTopupDepositAddressResponse {
164
164
  string address = 3;
165
165
  string invoice_currency = 4;
166
166
  string status = 5;
167
+ string amount = 6;
168
+ string paid_amount = 7;
169
+ string network = 8;
170
+ string expires_at = 9;
171
+ string currency = 10;
172
+ string subaccount_usdt_balance = 11;
173
+ string subaccount_balance_currency = 12;
167
174
  }
168
175
 
169
176
  message GetTopupInvoiceRequest {
@@ -178,6 +185,13 @@ message GetTopupInvoiceResponse {
178
185
  string invoice_currency = 4;
179
186
  string amount = 5;
180
187
  string tx_hash = 6;
188
+ string paid_amount = 7;
189
+ string network = 8;
190
+ string expires_at = 9;
191
+ string currency = 10;
192
+ string processing_status = 11;
193
+ string subaccount_usdt_balance = 12;
194
+ string subaccount_balance_currency = 13;
181
195
  }
182
196
 
183
197
  message UpdateAutoTopupRequest {