@riocrypto/common 1.0.2421 → 1.0.2423

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.
@@ -4,8 +4,8 @@ export declare class CryptoAsset extends Asset {
4
4
  rawSymbol: Crypto;
5
5
  constructor(rawSymbol: Crypto);
6
6
  getImageUri(): string;
7
- getName(): "Bitcoin" | "Ethereum" | "USDC (Ethereum)" | "USDC (Polygon)" | "USDC (Bridged to Polygon)" | "USDC (Solana)" | "USDC (Stellar)" | "USDT (Polygon)" | "USDT (Ethereum)" | "USDT (Tron)" | "Tron" | "Solana" | "Polygon";
8
- getSymbol(): Crypto.SOL | Crypto.TRON | Crypto.POL | "USDC (Ethereum)" | "USDC (Polygon)" | "USDC (Bridged to Polygon)" | "USDC (Solana)" | "USDC (Stellar)" | "USDT (Polygon)" | "USDT (Ethereum)" | "USDT (Tron)" | "BTC" | "ETH";
9
- getGasSymbol(): Crypto.SOL | Crypto.TRON | Crypto.POL | "BTC" | "ETH" | "MATIC" | "TRX" | "SOL" | "XLM";
7
+ getName(): Crypto.XLM | "Bitcoin" | "Ethereum" | "USDC (Ethereum)" | "USDC (Polygon)" | "USDC (Bridged to Polygon)" | "USDC (Solana)" | "USDC (Stellar)" | "USDT (Polygon)" | "USDT (Ethereum)" | "USDT (Tron)" | "Tron" | "Solana" | "Polygon";
8
+ getSymbol(): Crypto.SOL | Crypto.TRON | Crypto.POL | Crypto.XLM | "USDC (Ethereum)" | "USDC (Polygon)" | "USDC (Bridged to Polygon)" | "USDC (Solana)" | "USDC (Stellar)" | "USDT (Polygon)" | "USDT (Ethereum)" | "USDT (Tron)" | "BTC" | "ETH";
9
+ getGasSymbol(): Crypto.SOL | Crypto.TRON | Crypto.POL | Crypto.XLM | "BTC" | "ETH" | "MATIC" | "TRX" | "SOL" | "XLM";
10
10
  getDescription(): string;
11
11
  }
@@ -11,5 +11,6 @@ export declare enum Crypto {
11
11
  USDTTron = "TRX_USDT_S2UZ",
12
12
  SOL = "SOL",
13
13
  TRON = "TRX",
14
- POL = "MATIC_POLYGON"
14
+ POL = "MATIC_POLYGON",
15
+ XLM = "XLM"
15
16
  }
@@ -16,4 +16,5 @@ var Crypto;
16
16
  Crypto["SOL"] = "SOL";
17
17
  Crypto["TRON"] = "TRX";
18
18
  Crypto["POL"] = "MATIC_POLYGON";
19
+ Crypto["XLM"] = "XLM";
19
20
  })(Crypto = exports.Crypto || (exports.Crypto = {}));
@@ -4,9 +4,9 @@ export interface FireblocksVault {
4
4
  userId: string;
5
5
  fireblocksVaultId: string;
6
6
  depositAddresses?: {
7
- [key: string]: string;
8
- };
9
- depositMemos?: {
10
- [key: string]: string;
7
+ [key: string]: {
8
+ address: string;
9
+ memo?: string;
10
+ };
11
11
  };
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2421",
3
+ "version": "1.0.2423",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",