Skip to content

Commit f088bed

Browse files
committed
Update api keys
1 parent 35c7f8b commit f088bed

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/src/lib/components/ThemeCustomizer.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import { share } from 'rxjs/operators'
66
import { onMount } from 'svelte'
77
8-
const INFURA_ID = 'e0b15c21b7d54cd4814586334af72618'
8+
const INFURA_ID = '8b60d52405694345a99bcb82e722e0af'
99
const injected = injectedModule()
1010
1111
const onboard = Onboard({

docs/src/lib/components/examples/connect-wallet/ConnectWallet.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import Onboard from '@web3-onboard/core'
55
import injectedModule from '@web3-onboard/injected-wallets'
66
7-
const INFURA_ID = 'e0b15c21b7d54cd4814586334af72618'
7+
const INFURA_ID = '8b60d52405694345a99bcb82e722e0af'
88
99
const injected = injectedModule()
1010

docs/src/lib/components/gas/Gas.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
onMount(() => {
2424
ethMainnetGasBlockPrices = gasModule.stream({
2525
chains: ['0x1'],
26-
apiKey: '7eeb406c-82cb-4348-8ab5-b8cd3b684fff',
26+
apiKey: 'da1b962d-314d-4903-bfe1-426821d14a35',
2727
endpoint: 'blockPrices'
2828
})
2929
ethMainnetGasBlockPrices.subscribe(() => {
3030
async function getEtherGasFromRPC() {
31-
const INFURA_ID = '03af2f609bfd4782900a84da1ac65000'
31+
const INFURA_ID = '8b60d52405694345a99bcb82e722e0af'
3232
const infuraRPC = `https://mainnet.infura.io/v3/${INFURA_ID}`
3333
const customHttpProvider = new ethers.providers.JsonRpcProvider(infuraRPC)
3434
const fee = await customHttpProvider.getFeeData()

docs/src/lib/components/gas/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export interface GasData {
1818
maxPrice: number | null
1919
estimatedTransactionCount: number | null
2020
seconds: number | null
21-
estimatedBaseFees?: [EstimatedBaseFees]
21+
estimatedBaseFees?: [EstimatedBaseFee]
2222
isTrendingUp?: boolean
2323
}
2424

0 commit comments

Comments
 (0)