@pioneer-platform/binance-network 8.3.3 → 8.4.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/CHANGELOG.md +22 -0
- package/package.json +11 -11
- package/LICENSE +0 -674
- package/lib/index.d.ts +0 -31
- package/lib/index.js +0 -796
package/lib/index.d.ts
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
declare const TAG = " | bnb-network | ";
|
|
2
|
-
declare const moment: any;
|
|
3
|
-
declare const Axios: any;
|
|
4
|
-
declare const https: any;
|
|
5
|
-
declare const axios: any;
|
|
6
|
-
declare const log: any;
|
|
7
|
-
declare let URL_BNBchaind: string;
|
|
8
|
-
declare let URL_BNBcli: string;
|
|
9
|
-
declare let URL_REMOTE: string;
|
|
10
|
-
declare let URL_DEX: string;
|
|
11
|
-
declare let URL_DEX_0: string;
|
|
12
|
-
declare let URL_DEX_1: string;
|
|
13
|
-
declare let URL_DEX_2: string;
|
|
14
|
-
declare let URL_DEX_3: string;
|
|
15
|
-
declare var crypto: any;
|
|
16
|
-
declare const ASSET = "BNB";
|
|
17
|
-
declare let ROUND_ROBIN_STATE: any;
|
|
18
|
-
declare let REMOTE_OVERRIDE_BNB: string | undefined;
|
|
19
|
-
declare let get_block_height: () => Promise<any>;
|
|
20
|
-
declare let get_balance: (address: string, token: string) => Promise<any>;
|
|
21
|
-
declare let get_txs_by_address: (address: string) => Promise<any>;
|
|
22
|
-
declare let get_txs_by_height: (height: string, address: string) => Promise<any>;
|
|
23
|
-
declare let get_block: (height: string) => Promise<any>;
|
|
24
|
-
declare let get_block_remote: (height: string) => Promise<any>;
|
|
25
|
-
declare let get_account: (address: string) => Promise<any>;
|
|
26
|
-
declare let broadcast_transaction: (rawTx: string) => Promise<any>;
|
|
27
|
-
declare let get_node_info: () => Promise<any>;
|
|
28
|
-
declare let get_node_syncing: () => Promise<any>;
|
|
29
|
-
declare let get_node_version: () => Promise<any>;
|
|
30
|
-
declare let normalize_tx: (tx: any, type: string) => any;
|
|
31
|
-
declare let getTransaction: (txid: string) => Promise<any>;
|