evx-sdk
Version:
The Evx SDK is a developer toolkit designed to simplify interaction with the Evx decentralized liquidity protocol. It provides an abstraction layer over the smart contracts, allowing developers to easily build applications, integrate liquidity pools, fetc
27 lines (26 loc) • 699 B
TypeScript
/**
* @title Chain Configuration
* @notice Contract addresses for different networks
* @dev Maps contract names to their addresses for each supported chain
*/
export declare const chains: {
sepolia: {
metadata: {
chainId: number;
explorer: string;
nativeToken: string;
};
contracts: {
positionDescriptor: string;
positionManager: string;
orderExecutor: string;
positionLens: string;
swapRouter: string;
swapQuoter: string;
pairFlash: string;
tickLens: string;
factory: string;
dao: string;
};
};
};