@etherspot/data-utils
Version:
Etherspot Data Utils
24 lines (22 loc) • 730 B
text/typescript
declare const MethodTypes: {
GET: string;
POST: string;
};
declare const BACKEND_API_ENDPOINT = "https://rpc.etherspot.io/data-api";
declare const API_ENDPOINTS: {
GET_ACCOUNT_BALANCES: string;
GET_ACCOUNT_NFTS: string;
GET_TRANSACTION: string;
GET_TRANSACTIONS: string;
GET_ADVANCE_ROUTES_LIFI: string;
GET_STEP_TRANSACTIONS: string;
GET_EXCHANGE_OFFERS: string;
GET_CONNEXT_SUPPORTED_ASSETS: string;
GET_CONNEXT_QUOTE_TRANSACTIONS: string;
GET_CONNEXT_TRANSACTION_STATUS: string;
GET_EXCHANGE_SUPPORTED_ASSETS: string;
GET_TOKEN_LISTS: string;
GET_TOKEN_LIST_TOKENS: string;
EXCHANGE_RATES: string;
};
export { API_ENDPOINTS, BACKEND_API_ENDPOINT, MethodTypes };