@arbiwallet/contracts 1.0.99 → 1.0.100
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/deposit.ts +4 -0
- package/package.json +1 -1
- package/proto/deposit.proto +2 -0
package/gen/deposit.ts
CHANGED
|
@@ -50,6 +50,10 @@ export interface CreatePaymentDillDepositResponse {
|
|
|
50
50
|
providerTransactionId?:
|
|
51
51
|
| string
|
|
52
52
|
| undefined;
|
|
53
|
+
/** Exact pay-in amount in major units from provider quote. */
|
|
54
|
+
payAmount?:
|
|
55
|
+
| string
|
|
56
|
+
| undefined;
|
|
53
57
|
/** Pay-in amount in minor units (from payment microservice) */
|
|
54
58
|
amountMinor?:
|
|
55
59
|
| string
|
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.
|
|
4
|
+
"version": "1.0.100",
|
|
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/deposit.proto
CHANGED
|
@@ -52,6 +52,8 @@ message CreatePaymentDillDepositResponse {
|
|
|
52
52
|
optional string qr_link = 5;
|
|
53
53
|
optional string redirect_url = 6;
|
|
54
54
|
optional string provider_transaction_id = 7;
|
|
55
|
+
/** Exact pay-in amount in major units from provider quote. */
|
|
56
|
+
optional string pay_amount = 14;
|
|
55
57
|
/** Pay-in amount in minor units (from payment microservice) */
|
|
56
58
|
optional string amount_minor = 8;
|
|
57
59
|
/** Pay-in currency (RUB | USDT) */
|