-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathendpoints.ts
More file actions
26 lines (26 loc) · 1.17 KB
/
endpoints.ts
File metadata and controls
26 lines (26 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export const ACCOUNTS_ENDPOINT = 'accounts';
export const ADDRESS_ENDPOINT = 'address';
export const BLOCKS_ENDPOINT = 'blocks';
export const CODE_ENDPOINT = 'code';
export const COLLECTIONS_ENDPOINT = 'collections';
export const CONFIG_ENDPOINT = 'dapp/config';
export const CONTRACTS_ENDPOINT = 'contracts';
export const ECONOMICS_ENDPOINT = 'economics';
export const IDENTITIES_ENDPOINT = 'identities';
export const KEYS_ENDPOINT = 'keys';
export const LOCKED_ACCOUNTS_ENDPOINT = 'locked-accounts';
export const LOGS_ENDPOINT = 'logs';
export const MINIBLOCKS_ENDPOINT = 'miniblocks';
export const NETWORK_CONFIG_ENDPOINT = 'network/config';
export const NFTS_ENDPOINT = 'nfts';
export const NODES_ENDPOINT = 'nodes';
export const PROVIDERS_ENDPOINT = 'providers';
export const ROLES_ENDPOINT = 'roles';
export const SC_RESULTS_ENDPOINT = 'sc-results';
export const STAKE_ENDPOINT = 'stake';
export const TOKENS_ENDPOINT = 'tokens';
export const GAS_STATION_ENDPOINT = 'transactions/ppu';
export const TRANSACTIONS_COUNT_ENDPOINT = 'transactions/count';
export const TRANSACTIONS_BATCH = 'batch';
export const TRANSACTIONS_ENDPOINT = 'transactions';
export const TRANSFERS_ENDPOINT = 'transfers';