@pioneer-platform/pioneer 8.1.41 → 8.2.1
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/lib/index.d.ts +42 -1
- package/lib/index.js +1147 -2853
- package/lib/seeds.d.ts +0 -0
- package/lib/seeds.js +1 -0
- package/package.json +14 -36
- package/LICENSE +0 -674
- package/lib/support.d.ts +0 -6
- package/lib/support.js +0 -83
package/lib/index.d.ts
CHANGED
|
@@ -1 +1,42 @@
|
|
|
1
|
-
|
|
1
|
+
declare const TAG = " | Pioneer | ";
|
|
2
|
+
declare const queue: any;
|
|
3
|
+
declare const uuid: any;
|
|
4
|
+
declare let blocknative: any;
|
|
5
|
+
declare const blockbook: any;
|
|
6
|
+
declare let zapper: any;
|
|
7
|
+
declare let shortListSymbolToCaip: any, evmCaips: any;
|
|
8
|
+
declare const networks: any;
|
|
9
|
+
declare let supportedBlockchains: any, supportedAssets: any, getPaths: any, get_address_from_xpub: any, getNativeAssetForBlockchain: any;
|
|
10
|
+
declare var numbro: any;
|
|
11
|
+
declare const log: any;
|
|
12
|
+
declare const subscriber: any, publisher: any, redis: any, redisQueue: any;
|
|
13
|
+
declare let connection: any;
|
|
14
|
+
declare let wait: any;
|
|
15
|
+
declare let sleep: any;
|
|
16
|
+
declare let usersDB: any;
|
|
17
|
+
declare let txsDB: any;
|
|
18
|
+
declare let pubkeysDB: any;
|
|
19
|
+
declare let inputsDB: any;
|
|
20
|
+
declare let assetsDB: any;
|
|
21
|
+
declare let nodesDB: any;
|
|
22
|
+
declare const BALANCE_ON_REGISTER = true;
|
|
23
|
+
declare let onStart: () => Promise<true | undefined>;
|
|
24
|
+
declare function getFromCache(key: any): Promise<any>;
|
|
25
|
+
declare function setInCache(key: any, data: any, expiration: any): Promise<void>;
|
|
26
|
+
declare let get_pubkey_balances: (pubkey: any) => Promise<any>;
|
|
27
|
+
declare let get_and_rescan_pubkeys: (username: string) => Promise<{
|
|
28
|
+
pubkeys: any;
|
|
29
|
+
masters: any;
|
|
30
|
+
}>;
|
|
31
|
+
declare let get_and_verify_pubkeys: (username: string, context?: string) => Promise<{
|
|
32
|
+
pubkeys: any;
|
|
33
|
+
balances: any;
|
|
34
|
+
}>;
|
|
35
|
+
declare let register_zpub: (username: string, pubkey: any, context: string) => Promise<any>;
|
|
36
|
+
declare let register_xpub: (username: string, pubkey: any, context: string) => Promise<{
|
|
37
|
+
pubkeys: any;
|
|
38
|
+
balances: any;
|
|
39
|
+
}>;
|
|
40
|
+
declare let register_address: (username: string, pubkey: any, context: string) => Promise<any>;
|
|
41
|
+
declare let update_pubkeys: (username: string, pubkeys: any, context: string) => Promise<any>;
|
|
42
|
+
declare const register_pubkeys: (username: string, pubkeys: any, context: string) => Promise<any>;
|