@arbiwallet/contracts 1.0.251 → 1.0.252

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.
@@ -425,7 +425,7 @@ export interface WalletMonikaCurrency {
425
425
  }
426
426
 
427
427
  export interface WalletMonikaItem {
428
- id: number;
428
+ id: string;
429
429
  name: string;
430
430
  currencies: WalletMonikaCurrency[];
431
431
  balance: number;
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.251",
4
+ "version": "1.0.252",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -461,7 +461,7 @@ message WalletMonikaCurrency {
461
461
  }
462
462
 
463
463
  message WalletMonikaItem {
464
- int64 id = 1;
464
+ string id = 1;
465
465
  string name = 2;
466
466
  repeated WalletMonikaCurrency currencies = 3;
467
467
  double balance = 4;