@lido-sdk/constants
Version:
This project is being slowly deprecated and may not receive further updates. Check out [modern Lido SDK](https://github.com/lidofinance/lido-ethereum-sdk/pulls) to access latest functionality. It is actively maintained and is built for interacting with Li
13 lines (12 loc) • 330 B
TypeScript
import { CHAINS } from './chains';
export declare enum TOKENS {
WSTETH = "WSTETH",
STETH = "STETH",
LDO = "LDO"
}
export declare const TOKENS_BY_NETWORK: {
[key in CHAINS]?: {
[key in TOKENS]?: string;
};
};
export declare const getTokenAddress: (chainId: CHAINS, token: TOKENS) => string;