Skip to content
This repository was archived by the owner on Nov 10, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/config/networks/arbitrum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
const baseConfig: EnvironmentSettings = {
clientGatewayUrl: 'https://safe-client.gnosis.io/v1',
txServiceUrl: 'https://safe-transaction.arbitrum.gnosis.io/api/v1',
gasPrice: 2e9,
gasPriceOracles: [],
rpcServiceUrl: 'https://arb1.arbitrum.io/rpc',
safeAppsRpcServiceUrl: 'https://arb1.arbitrum.io/rpc',
networkExplorerName: 'Arbitrum explorer',
Expand Down
7 changes: 1 addition & 6 deletions src/config/networks/rinkeby.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
NetworkConfig,
WALLETS,
} from 'src/config/networks/network.d'
import { ETHGASSTATION_API_KEY, ETHERSCAN_API_KEY } from 'src/utils/constants'
import { ETHERSCAN_API_KEY } from 'src/utils/constants'

const baseConfig: EnvironmentSettings = {
clientGatewayUrl: 'https://safe-client.staging.gnosisdev.com/v1',
Expand All @@ -18,11 +18,6 @@ const baseConfig: EnvironmentSettings = {
gasParameter: 'FastGasPrice',
gweiFactor: '1e9',
},
{
url: `https://ethgasstation.info/json/ethgasAPI.json?api-key=${ETHGASSTATION_API_KEY}`,
gasParameter: 'fast',
gweiFactor: '1e8',
},
Copy link
Member Author

@katspaugh katspaugh Nov 15, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also removed this from the Rinkeby config. Etherscan should be more than enough.

],
rpcServiceUrl: 'https://rinkeby.infura.io:443/v3',
safeAppsRpcServiceUrl: 'https://rinkeby.infura.io:443/v3',
Expand Down
2 changes: 1 addition & 1 deletion src/config/networks/xdai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
const baseConfig: EnvironmentSettings = {
clientGatewayUrl: 'https://safe-client.gnosis.io/v1',
txServiceUrl: 'https://safe-transaction.xdai.gnosis.io/api/v1',
gasPrice: 1e9,
gasPriceOracles: [],
rpcServiceUrl: 'https://dai.poa.network/',
safeAppsRpcServiceUrl: 'https://dai.poa.network/',
networkExplorerName: 'Blockscout',
Expand Down