20 lines
913 B
Solidity
Raw Normal View History

2023-04-09 15:23:53 +00:00
pragma solidity ^0.8.1;
2023-04-09 12:25:37 +00:00
2023-04-09 13:12:49 +00:00
contract Parameters {
2023-04-09 15:23:53 +00:00
address[10] VIOLATING_RELAYERS = [
0x30F96AEF199B399B722F8819c9b0723016CEAe6C, // moon-relayer.eth
2023-04-09 13:12:49 +00:00
0xEFa22d23de9f293B11e0c4aC865d7b440647587a, // tornado-relayer.eth
2023-04-09 15:23:53 +00:00
0x996ad81FD83eD7A87FD3D03694115dff19db0B3b, // secure-tornado.eth
0x7853E027F37830790685622cdd8685fF0c8255A2, // tornado-secure.eth
0x36DD7b862746fdD3eDd3577c8411f1B76FDC2Af5, // tornado-crypto-bot-exchange.eth
0x18F516dD6D5F46b2875Fd822B994081274be2a8b, // torn69.eth
0x853281B7676DFB66B87e2f26c9cB9D10Ce883F37, // available-reliable-relayer.eth
0xaaaaD0b504B4CD22348C4Db1071736646Aa314C6, // tornrelayers.eth
0x0000208a6cC0299dA631C08fE8c2EDe435Ea83B8, // 0xtornadocash.eth
0xf0D9b969925116074eF43e7887Bcf035Ff1e7B19 // lowfee-relayer.eth
];
2023-04-09 13:12:49 +00:00
2023-04-09 15:23:53 +00:00
address _registryAddress = 0x58E8dCC13BE9780fC42E8723D8EaD4CF46943dF2;
2023-04-09 13:12:49 +00:00
2023-04-09 15:23:53 +00:00
}