Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
74b278e
Update [...2]onboard.js-migration-guide.md
laurencedelisle Oct 13, 2022
2ddd2cf
Merge branch 'docs-develop' into update-migration-guide-for-w3o
laurencedelisle Oct 19, 2022
c2757cb
addressed comments from PR and updated links
laurencedelisle Oct 19, 2022
5975854
Create [...2]onboard.js-migration-guide.md
laurencedelisle Oct 21, 2022
1ee2bab
Merge branch 'docs-develop' into update-migration-guide-for-w3o
Adamj1232 Oct 25, 2022
9acabda
Remove duplicate cmigration guide
Adamj1232 Oct 25, 2022
fd7320e
Add changes that were part of duplicate mig guide
Adamj1232 Oct 25, 2022
ec22dba
Revert relative path for external
Adamj1232 Oct 25, 2022
5ff542b
Update link from expired docs to examples folder
Adamj1232 Oct 25, 2022
c9e095c
Merge pull request #1320 from blocknative/update-migration-guide-for-w3o
Adamj1232 Oct 25, 2022
d2a5688
injected wallets doc fix
Oct 25, 2022
dae9dba
no version bump needed
Oct 26, 2022
e1095fa
Merge pull request #1339 from mhchaudhry3/docs-fix-injected-wallet
Adamj1232 Oct 26, 2022
b0ef861
Add Search to Docs (#1322)
Adamj1232 Oct 27, 2022
5a9d146
Remove algolia from layout-homepage
Adamj1232 Oct 27, 2022
e111910
Update docs/src/routes/__layout-homepage.svelte
Adamj1232 Oct 27, 2022
72204c3
Update docs/src/routes/__layout-homepage.svelte
Adamj1232 Oct 27, 2022
7374527
Update index name
Adamj1232 Oct 27, 2022
a1c7e04
Merge branch 'docs-develop' of blocknative.github.com:blocknative/onb…
Adamj1232 Oct 27, 2022
ebcc99a
Merge branch 'docs-main' into docs-develop
Adamj1232 Oct 27, 2022
8777497
Merge in main
Adamj1232 Oct 27, 2022
a817cc3
Docs gas example (#1333)
Adamj1232 Oct 31, 2022
ee27e4b
site seo content edits
gesquinca Nov 2, 2022
35c7f8b
Merge pull request #1349 from blocknative/feature/site-seo-updates
gesquinca Nov 3, 2022
f088bed
Update api keys
Adamj1232 Nov 8, 2022
d46bd4d
Merge in docs-main
Adamj1232 Nov 8, 2022
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 docs/src/lib/components/ThemeCustomizer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import { share } from 'rxjs/operators'
import { onMount } from 'svelte'

const INFURA_ID = 'e0b15c21b7d54cd4814586334af72618'
const INFURA_ID = '8b60d52405694345a99bcb82e722e0af'
const injected = injectedModule()

const onboard = Onboard({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import Onboard from '@web3-onboard/core'
import injectedModule from '@web3-onboard/injected-wallets'

const INFURA_ID = 'e0b15c21b7d54cd4814586334af72618'
const INFURA_ID = '8b60d52405694345a99bcb82e722e0af'

const injected = injectedModule()

Expand Down
4 changes: 2 additions & 2 deletions docs/src/lib/components/gas/Gas.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
onMount(() => {
ethMainnetGasBlockPrices = gasModule.stream({
chains: ['0x1'],
apiKey: '7eeb406c-82cb-4348-8ab5-b8cd3b684fff',
apiKey: 'da1b962d-314d-4903-bfe1-426821d14a35',
endpoint: 'blockPrices'
})
ethMainnetGasBlockPrices.subscribe(() => {
async function getEtherGasFromRPC() {
const INFURA_ID = '03af2f609bfd4782900a84da1ac65000'
const INFURA_ID = '8b60d52405694345a99bcb82e722e0af'
const infuraRPC = `https://mainnet.infura.io/v3/${INFURA_ID}`
const customHttpProvider = new ethers.providers.JsonRpcProvider(infuraRPC)
const fee = await customHttpProvider.getFeeData()
Expand Down
2 changes: 1 addition & 1 deletion docs/src/lib/components/gas/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface GasData {
maxPrice: number | null
estimatedTransactionCount: number | null
seconds: number | null
estimatedBaseFees?: [EstimatedBaseFees]
estimatedBaseFees?: [EstimatedBaseFee]
isTrendingUp?: boolean
}

Expand Down