|
| 1 | +import { getAddress } from "ethers/lib/utils"; |
1 | 2 | import { IWhitelistedEntity } from "../types/IWhitelistedEntities"; |
2 | 3 |
|
3 | | -export const WhitelistedFactories: IWhitelistedEntity = {}; |
| 4 | +export const WhitelistedFactories: IWhitelistedEntity = { |
| 5 | + // Etehrspot Paymasters |
| 6 | + // ref: https://github.com/etherspot/etherspot-prime-contracts/blob/master/DEPLOYMENTS.md |
| 7 | + mainnet: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 8 | + arbitrum: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 9 | + optimism: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 10 | + matic: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 11 | + fuse: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 12 | + xdai: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 13 | + mantle: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 14 | + avalanche: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 15 | + bsc: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 16 | + base: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 17 | + linea: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 18 | + goerli: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 19 | + sepolia: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 20 | + arbitrumNitro: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 21 | + optimismGoerli: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 22 | + mumbai: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 23 | + fuseSparknet: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 24 | + baseGoerli: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 25 | + chiado: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 26 | + fuji: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 27 | + bscTest: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 28 | + lineaTestnet: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 29 | + scrollSepolia: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 30 | + mantleTestnet: [getAddress("0x7f6d8F107fE8551160BD5351d5F1514A6aD5d40E")], |
| 31 | +}; |
0 commit comments