@riocrypto/common 1.0.1141 → 1.0.1142

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/build/index.d.ts CHANGED
@@ -186,6 +186,7 @@ export * from "./types/chained-order-query";
186
186
  export * from "./types/internal-swap";
187
187
  export * from "./types/webhook-type";
188
188
  export * from "./types/bitso-mxn-withdrawal";
189
+ export * from "./types/circle-chain";
189
190
  export * from "./classes/Asset";
190
191
  export * from "./classes/CountryAsset";
191
192
  export * from "./classes/CryptoAsset";
package/build/index.js CHANGED
@@ -202,6 +202,7 @@ __exportStar(require("./types/chained-order-query"), exports);
202
202
  __exportStar(require("./types/internal-swap"), exports);
203
203
  __exportStar(require("./types/webhook-type"), exports);
204
204
  __exportStar(require("./types/bitso-mxn-withdrawal"), exports);
205
+ __exportStar(require("./types/circle-chain"), exports);
205
206
  __exportStar(require("./classes/Asset"), exports);
206
207
  __exportStar(require("./classes/CountryAsset"), exports);
207
208
  __exportStar(require("./classes/CryptoAsset"), exports);
@@ -0,0 +1,9 @@
1
+ import { CircleChain } from "./circle-chain";
2
+ export interface CircleAddressBookRecipient {
3
+ createdAt: Date;
4
+ userId: string;
5
+ circleRecipientId: string;
6
+ address: string;
7
+ chain: CircleChain;
8
+ status: "pending" | "inactive" | "active" | "denied";
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ export declare enum CircleChain {
2
+ Algorand = "ALGO",
3
+ Arbitrum = "ARB",
4
+ AvalancheCChain = "AVAX",
5
+ Base = "BASE",
6
+ Flow = "FLOW",
7
+ Hedera = "HBAR",
8
+ Polygon = "POLY",
9
+ Near = "NEAR",
10
+ Noble = "NOBLE",
11
+ Optimism = "OP",
12
+ PolkadotAssetHub = "PAH",
13
+ Solana = "SOL",
14
+ Stellar = "XLM",
15
+ TRON = "TRX"
16
+ }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CircleChain = void 0;
4
+ var CircleChain;
5
+ (function (CircleChain) {
6
+ CircleChain["Algorand"] = "ALGO";
7
+ CircleChain["Arbitrum"] = "ARB";
8
+ CircleChain["AvalancheCChain"] = "AVAX";
9
+ CircleChain["Base"] = "BASE";
10
+ CircleChain["Flow"] = "FLOW";
11
+ CircleChain["Hedera"] = "HBAR";
12
+ CircleChain["Polygon"] = "POLY";
13
+ CircleChain["Near"] = "NEAR";
14
+ CircleChain["Noble"] = "NOBLE";
15
+ CircleChain["Optimism"] = "OP";
16
+ CircleChain["PolkadotAssetHub"] = "PAH";
17
+ CircleChain["Solana"] = "SOL";
18
+ CircleChain["Stellar"] = "XLM";
19
+ CircleChain["TRON"] = "TRX";
20
+ })(CircleChain = exports.CircleChain || (exports.CircleChain = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1141",
3
+ "version": "1.0.1142",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",