File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "address" : " 0x887fee6B0793FF23721458EB04d073633B25eAB9 " ,
3
- "blockNumber" : 8789337 ,
2
+ "address" : " 0xA4bf490ECAc971836E400D59881c345087deAC46 " ,
3
+ "blockNumber" : 22952332 ,
4
4
"abi" : [
5
5
{
6
6
"inputs" : [
Original file line number Diff line number Diff line change 1
- import { sepolia } from "viem/chains"
1
+ import { mainnet } from "viem/chains"
2
2
import { createConfig , http } from "@wagmi/core"
3
3
4
4
export const config = createConfig ( {
5
- chains : [ sepolia ] ,
5
+ chains : [ mainnet ] ,
6
6
transports : {
7
- [ sepolia . id ] : http (
8
- `https://eth-sepolia .g.alchemy.com/v2/${ process . env . ALCHEMY_API_KEY } `
7
+ [ mainnet . id ] : http (
8
+ `https://eth-mainnet .g.alchemy.com/v2/${ process . env . ALCHEMY_API_KEY } `
9
9
) ,
10
+ // [sepolia.id]: http(
11
+ // `https://eth-sepolia.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`
12
+ // ),
10
13
// [hardhat.id]: http("http://127.0.0.1:8545"),
11
14
} ,
12
15
} )
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ const FILTERED_ADDRESSES: string[] = [
16
16
// Add addresses here that should be hidden from the UI
17
17
// These addresses will show as "Unknown Holder" instead of their real metadata
18
18
// Example: "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266".toLowerCase(),
19
+ "0x8D3e2E0e562634244E5D229C3B97A38efbEc65Ab" . toLowerCase ( ) , // eth.org safe address
19
20
]
20
21
21
22
// Helper function to check if an address should be filtered
You can’t perform that action at this time.
0 commit comments