Skip to content

Commit e4c7771

Browse files
authored
removed furnace extra bits (#20)
1 parent fba8e55 commit e4c7771

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.env.sample

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ FILECOIN_RPC_URL=wss://wss.calibration.node.glif.io/apigw/lotus/rpc/v1
66
FILECOIN_MAINNET_PRIVATE_KEY=somehexstringwithoutthe0xprefix
77
FILECOIN_MAINNET_RPC_URL=wss://wss.node.glif.io/apigw/lotus/rpc/v1
88

9-
# dcipher furnace
10-
FURNACE_PRIVATE_KEY=somehexstringwithoutthe0xprefix
11-
FURNACE_RPC_URL=https://api.furnace.dcipher.network
12-
139
# base sepolia
1410
BASE_PRIVATE_KEY=somehexstringwithoutthe0xprefix
1511
BASE_RPC_URL=https://sepolia.base.org

src/index.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ import {
1616
BASE_SEPOLIA,
1717
FILECOIN_CALIBNET,
1818
FILECOIN_MAINNET,
19-
FURNACE,
20-
POLYGON_POS, DCIPHER_PUBLIC_KEY, AVALANCHE_C_CHAIN, OPTIMISM_SEPOLIA, ARBITRUM_SEPOLIA, SEI_TESTNET
19+
POLYGON_POS,
20+
DCIPHER_PUBLIC_KEY,
21+
AVALANCHE_C_CHAIN,
22+
OPTIMISM_SEPOLIA,
23+
ARBITRUM_SEPOLIA,
24+
SEI_TESTNET
2125
} from "./networks"
2226

2327
const iface = RandomnessSender__factory.createInterface()

src/networks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export const SEI_TESTNET: NetworkConfig = {
133133
gasMultiplierDefault: 10n,
134134
}
135135

136-
export const SUPPORTED_TESTNETS = [FILECOIN_CALIBNET, BASE_SEPOLIA, FURNACE, AVALANCHE_C_CHAIN, OPTIMISM_SEPOLIA, ARBITRUM_SEPOLIA, SEI_TESTNET]
136+
export const SUPPORTED_TESTNETS = [FILECOIN_CALIBNET, BASE_SEPOLIA, AVALANCHE_C_CHAIN, OPTIMISM_SEPOLIA, ARBITRUM_SEPOLIA, SEI_TESTNET]
137137
export const SUPPORTED_MAINNETS = [FILECOIN_MAINNET, POLYGON_POS]
138138

139139
export function configForChainId(chainId: bigint | number | string): NetworkConfig {

0 commit comments

Comments
 (0)