@pioneer-platform/osmosis-network 8.1.32 → 8.1.35
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 +1 -26
- package/lib/index.js +400 -94
- package/package.json +3 -2
- package/LICENSE +0 -674
package/lib/index.d.ts
CHANGED
|
@@ -1,26 +1 @@
|
|
|
1
|
-
|
|
2
|
-
declare const TAG: string;
|
|
3
|
-
declare const Axios: any;
|
|
4
|
-
declare const https: any;
|
|
5
|
-
declare const axios: any;
|
|
6
|
-
declare const request: any;
|
|
7
|
-
declare const log: any;
|
|
8
|
-
declare let URL_OSMO_RPC: string | undefined;
|
|
9
|
-
declare let URL_OSMO_LCD: string | undefined;
|
|
10
|
-
declare let URL_OSMO_POOLS: string;
|
|
11
|
-
declare let BASE_OSMO: number;
|
|
12
|
-
/**********************************
|
|
13
|
-
// Lib
|
|
14
|
-
//**********************************/
|
|
15
|
-
declare let get_block_height: () => Promise<number>;
|
|
16
|
-
declare let get_pools: () => Promise<any>;
|
|
17
|
-
declare let get_delegations: (address: string, valAddress: string) => Promise<any>;
|
|
18
|
-
declare let get_validators: () => Promise<any>;
|
|
19
|
-
declare let get_transaction: (txid: string) => Promise<any>;
|
|
20
|
-
declare let broadcast_transaction: (tx: string) => Promise<any>;
|
|
21
|
-
declare let get_account_info: (address: string) => Promise<any>;
|
|
22
|
-
declare let normalize_tx: (tx: any, address?: string | undefined) => any;
|
|
23
|
-
declare let get_txs_by_address: (address: string) => Promise<any>;
|
|
24
|
-
declare let get_balances: (address: string) => Promise<number>;
|
|
25
|
-
declare let get_balance: (address: string) => Promise<number>;
|
|
26
|
-
declare let get_node_info_verbose: () => Promise<any>;
|
|
1
|
+
export {};
|