Skip to content

Commit

Permalink
chore: update reserved addresses (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyalukyanov authored Nov 17, 2024
1 parent cc72399 commit 1d4da3c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/config/utils/reservedAddresses/20241117.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const evmAddresses = [
"0x39fde96298720a689b0c95bfd3a69f38b85032d9",
"0xa293d69607777648c0d13c3b64cb269db91b081e",
"0xcaec89b8992fbdfcd902d9cab0dbd657bff8d46d",
"0x9fd7f177b3e2316ad2a16088785829482e8728fa",
"0xeb8efd874a5edacf0b923650d4a68d7c7ce91fc1",
"0xe915fb27d7c2748904e0c86f5ad5781ecf55bdd3",
"0x22b0e168d1604acd6dcf978d484f77a8776c623f",
"0xaf2766240583eca6703c14eac5d5f1621b79ef16",
"0xb1cd5b8000dd301fe2adf81e102d809f3e112a7d",
"0xb5cd96d03fafcaaf4f5157e3cebc89117986d0a2",
"0x51c223b23fa8088e6b16a626f3db264b3c2c619d",
"0xc8051f95ee01af7f48fee1c17781b2e01be8ed48",
];

export default evmAddresses;
2 changes: 2 additions & 0 deletions src/config/utils/reservedAddresses/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { toLower } from "rambda";
import list1 from "./10202023";
import list2 from "./11232023";
import list3 from "./20240921";
import list4 from "./20241117";
import originalList from "./originalList";

const normalized = [
Expand All @@ -11,6 +12,7 @@ const normalized = [
...list1,
...list2,
...list3,
...list4,
].map(toLower);

export default JSON.stringify(normalized);

0 comments on commit 1d4da3c

Please sign in to comment.