Skip to content

Commit 44f17b1

Browse files
committed
update params for mainnet deploy
1 parent 241809f commit 44f17b1

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

src/data/Torch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"address": "0x887fee6B0793FF23721458EB04d073633B25eAB9",
3-
"blockNumber": 8789337,
2+
"address": "0xA4bf490ECAc971836E400D59881c345087deAC46",
3+
"blockNumber": 22952332,
44
"abi": [
55
{
66
"inputs": [

src/lib/torch/config.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
import { sepolia } from "viem/chains"
1+
import { mainnet } from "viem/chains"
22
import { createConfig, http } from "@wagmi/core"
33

44
export const config = createConfig({
5-
chains: [sepolia],
5+
chains: [mainnet],
66
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}`
99
),
10+
// [sepolia.id]: http(
11+
// `https://eth-sepolia.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`
12+
// ),
1013
// [hardhat.id]: http("http://127.0.0.1:8545"),
1114
},
1215
})

src/lib/torch/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const FILTERED_ADDRESSES: string[] = [
1616
// Add addresses here that should be hidden from the UI
1717
// These addresses will show as "Unknown Holder" instead of their real metadata
1818
// Example: "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266".toLowerCase(),
19+
"0x8D3e2E0e562634244E5D229C3B97A38efbEc65Ab".toLowerCase(), // eth.org safe address
1920
]
2021

2122
// Helper function to check if an address should be filtered

0 commit comments

Comments
 (0)