dsa-connectors/scripts/tests/mainnet/tokens.ts

137 lines
4.7 KiB
TypeScript
Raw Normal View History

2021-12-15 07:43:41 +00:00
import { Provider } from "@ethersproject/abstract-provider";
import { Signer } from "@ethersproject/abstract-signer";
import { ethers } from "hardhat";
const mineTx = async (tx: any) => {
await (await tx).wait();
};
2021-12-05 05:23:21 +00:00
export const tokens = {
eth: {
type: "token",
symbol: "ETH",
name: "Ethereum",
address: "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
2022-10-12 02:30:46 +00:00
aTokenAddress: "0x030bA81f1c18d280636F32af80b9AAd02Cf0854e",
cTokenAddress: "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5",
2022-05-14 17:13:14 +00:00
decimals: 18
2021-12-05 05:23:21 +00:00
},
dai: {
type: "token",
symbol: "DAI",
name: "DAI Stable",
2021-12-05 20:04:41 +00:00
address: "0x6B175474E89094C44Da98b954EedeAC495271d0F",
2022-10-12 02:30:46 +00:00
aTokenAddress: "0x028171bCA77440897B824Ca71D1c56caC55b68A3",
cTokenAddress: "0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643",
2022-05-14 17:13:14 +00:00
decimals: 18
2021-12-05 05:23:21 +00:00
},
usdc: {
type: "token",
symbol: "USDC",
name: "USD Coin",
2021-12-05 20:04:41 +00:00
address: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
2022-10-12 02:30:46 +00:00
aTokenAddress: "0xBcca60bB61934080951369a648Fb03DF4F96263C",
cTokenAddress: "0x39AA39c021dfbaE8faC545936693aC917d5E7563",
2022-05-14 17:13:14 +00:00
decimals: 6
2022-07-09 14:38:16 +00:00
},
weth: {
type: "token",
symbol: "WETH",
name: "Wrapped Ether",
address: "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
2022-10-12 02:30:46 +00:00
aTokenAddress: "0x030bA81f1c18d280636F32af80b9AAd02Cf0854e",
cTokenAddress: "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5",
2022-07-09 14:38:16 +00:00
decimals: 18
2022-08-10 20:37:03 +00:00
},
ens: {
type: "token",
symbol: "ENS",
name: "Etherem Name Services",
address: "0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72",
2022-10-12 02:30:46 +00:00
aTokenAddress: "0x9a14e23A58edf4EFDcB360f68cd1b95ce2081a2F",
2022-08-10 20:37:03 +00:00
decimals: 18
2022-08-31 08:59:59 +00:00
},
comp: {
type: "token",
symbol: "COMP",
name: "Compound",
address: "0xc00e94Cb662C3520282E6f5717214004A7f26888",
2022-10-12 02:30:46 +00:00
cTokenAddress: "0x70e36f6BF80a52b3B46b3aF8e106CC0ed743E8e4",
2022-08-31 08:59:59 +00:00
decimals: 18
},
link: {
type: "token",
symbol: "LINK",
name: "ChainLink Token",
address: "0x514910771AF9Ca656af840dff83E8264EcF986CA",
2022-10-12 02:30:46 +00:00
aTokenAddress: "0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0",
cTokenAddress: "0xFAce851a4921ce59e912d19329929CE6da6EB0c7",
2022-08-31 08:59:59 +00:00
decimals: 18
},
uni: {
type: "token",
symbol: "UNI",
name: "Uniswap",
address: "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984",
2022-10-12 02:30:46 +00:00
aTokenAddress: "0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1",
cTokenAddress: "0x35A18000230DA775CAc24873d00Ff85BccdeD550",
2022-08-31 08:59:59 +00:00
decimals: 18
2022-05-14 17:13:14 +00:00
}
2021-12-05 05:23:21 +00:00
};
2021-12-15 07:43:41 +00:00
2022-10-12 02:30:46 +00:00
export const dsaMaxValue = "115792089237316195423570985008687907853269984665640564039457584007913129639935";
2021-12-15 07:43:41 +00:00
export const tokenMapping: Record<string, any> = {
usdc: {
impersonateSigner: "0xfcb19e6a322b27c06842a71e8c725399f049ae3a",
address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
2022-08-31 08:59:59 +00:00
abi: [
"function mint(address _to, uint256 _amount) external returns (bool)",
"function balanceOf(address user) external returns (uint256)"
],
2021-12-15 07:43:41 +00:00
process: async function (owner: Signer | Provider, to: any, amt: any) {
const contract = new ethers.Contract(this.address, this.abi, owner);
await mineTx(contract.mint(to, amt));
2022-05-14 17:13:14 +00:00
}
2021-12-15 07:43:41 +00:00
},
dai: {
impersonateSigner: "0x47ac0fb4f2d84898e4d9e7b4dab3c24507a6d503",
abi: ["function transfer(address to, uint value)"],
address: "0x6b175474e89094c44da98b954eedeac495271d0f",
process: async function (owner: Signer | Provider, to: any, amt: any) {
const contract = new ethers.Contract(this.address, this.abi, owner);
await mineTx(contract.transfer(to, amt));
2022-05-14 17:13:14 +00:00
}
2021-12-15 07:43:41 +00:00
},
usdt: {
impersonateSigner: "0xc6cde7c39eb2f0f0095f41570af89efc2c1ea828",
address: "0xdac17f958d2ee523a2206206994597c13d831ec7",
2022-05-14 17:13:14 +00:00
abi: ["function issue(uint amount)", "function transfer(address to, uint value)"],
2021-12-15 07:43:41 +00:00
process: async function (owner: Signer | Provider, address: any, amt: any) {
const contract = new ethers.Contract(this.address, this.abi, owner);
await mineTx(contract.issue(amt));
await mineTx(contract.transfer(address, amt));
2022-05-14 17:13:14 +00:00
}
2021-12-15 07:43:41 +00:00
},
wbtc: {
impersonateSigner: "0xCA06411bd7a7296d7dbdd0050DFc846E95fEBEB7",
address: "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
abi: ["function mint(address _to, uint256 _amount) public returns (bool)"],
process: async function (owner: Signer | Provider, address: any, amt: any) {
const contract = new ethers.Contract(this.address, this.abi, owner);
await mineTx(contract.mint(address, amt));
2022-05-14 17:13:14 +00:00
}
2021-12-15 07:43:41 +00:00
},
inst: {
impersonateSigner: "0x75e89d5979E4f6Fba9F97c104c2F0AFB3F1dcB88",
address: "0x6f40d4a6237c257fff2db00fa0510deeecd303eb",
abi: ["function transfer(address to, uint value)"],
process: async function (owner: Signer | Provider, address: any, amt: any) {
const contract = new ethers.Contract(this.address, this.abi, owner);
await mineTx(contract.transfer(address, amt));
2022-05-14 17:13:14 +00:00
}
}
2021-12-15 07:43:41 +00:00
};