0xweb
Version:
Contract package manager and other web3 tools
29 lines (21 loc) • 966 B
text/typescript
import di from 'a-di';
import { $config } from '@dequanto/utils/$config';
import { AmmV2ExchangeBase } from './AmmV2ExchangeBase';
import { Etherscan } from '@dequanto/explorer/Etherscan';
import { EthWeb3Client } from '@dequanto/clients/EthWeb3Client';
import { IBlockchainExplorer } from '@dequanto/explorer/IBlockchainExplorer';
import { Web3Client } from '@dequanto/clients/Web3Client';
import { $require } from '@dequanto/utils/$require';
export class UniswapV2Exchange extends AmmV2ExchangeBase {
name = 'uniswapV2'
config = $config.get('uniswapV2')
factoryAddress = $require.Address(this.config.factory, 'Factory Address')
masterChefAddress = $require.Address(this.config.vault, 'Vault Address')
vaultAddress = this.config.masterChef
constructor(
public client: Web3Client = di.resolve(EthWeb3Client),
public explorer: IBlockchainExplorer = di.resolve(Etherscan)
) {
super(client, explorer);
}
}