mirror of
https://github.com/oceanprotocol/react.git
synced 2025-02-14 21:10:38 +01:00
primitive web3 provider
This commit is contained in:
parent
ffe391995e
commit
f99dd92999
13
src/@types/globals.d.ts
vendored
Normal file
13
src/@types/globals.d.ts
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import Web3 from 'web3'
|
||||||
|
import { HttpProvider } from 'web3-core'
|
||||||
|
|
||||||
|
interface EthereumProvider extends HttpProvider {
|
||||||
|
enable: () => Promise<void>
|
||||||
|
}
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface Window {
|
||||||
|
web3: Web3
|
||||||
|
ethereum: EthereumProvider
|
||||||
|
}
|
||||||
|
}
|
@ -1,3 +1,5 @@
|
|||||||
|
import './@types/globals'
|
||||||
|
|
||||||
export * from './providers'
|
export * from './providers'
|
||||||
export * from './hooks'
|
export * from './hooks'
|
||||||
export * from './components'
|
export * from './components'
|
||||||
|
@ -34,7 +34,7 @@ function OceanProvider({
|
|||||||
children
|
children
|
||||||
}: {
|
}: {
|
||||||
config: Config
|
config: Config
|
||||||
web3: Web3
|
web3: Web3 | undefined
|
||||||
children: ReactNode
|
children: ReactNode
|
||||||
}): ReactNode {
|
}): ReactNode {
|
||||||
const [ocean, setOcean] = useState<Ocean | undefined>()
|
const [ocean, setOcean] = useState<Ocean | undefined>()
|
||||||
@ -58,6 +58,8 @@ function OceanProvider({
|
|||||||
// 2. Once `web3` becomes available, connect to the whole network
|
// 2. Once `web3` becomes available, connect to the whole network
|
||||||
// -------------------------------------------------------------
|
// -------------------------------------------------------------
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
if (!web3) return
|
||||||
|
|
||||||
async function init(): Promise<void> {
|
async function init(): Promise<void> {
|
||||||
const { ocean, account, accountId, balance } = await connectOcean(
|
const { ocean, account, accountId, balance } = await connectOcean(
|
||||||
web3,
|
web3,
|
||||||
|
@ -1,17 +1,69 @@
|
|||||||
import React, { ReactNode, useContext, useState, createContext } from 'react'
|
import React, {
|
||||||
|
ReactNode,
|
||||||
|
useContext,
|
||||||
|
useState,
|
||||||
|
createContext,
|
||||||
|
useEffect
|
||||||
|
} from 'react'
|
||||||
import Web3 from 'web3'
|
import Web3 from 'web3'
|
||||||
|
import { getWeb3 } from './utils'
|
||||||
|
|
||||||
interface Web3ProviderValue {
|
interface Web3ProviderValue {
|
||||||
web3: Web3
|
web3: Web3 | undefined
|
||||||
|
account: string | undefined
|
||||||
|
balance: string | undefined
|
||||||
|
chainId: number | undefined
|
||||||
|
enable: () => void
|
||||||
}
|
}
|
||||||
|
|
||||||
const Web3Context = createContext(null)
|
const Web3Context = createContext(null)
|
||||||
|
|
||||||
function Web3Provider({ children }: { children: ReactNode }): ReactNode {
|
function Web3Provider({ children }: { children: ReactNode }): ReactNode {
|
||||||
const [web3, setWeb3] = useState<Web3 | undefined>()
|
const [web3, setWeb3] = useState<Web3 | undefined>()
|
||||||
|
const [chainId, setChainId] = useState<number | undefined>()
|
||||||
|
const [account, setAccount] = useState<string | undefined>()
|
||||||
|
const [balance, setBalance] = useState<string | undefined>()
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
async function initWeb3(): Promise<void> {
|
||||||
|
const web3 = await getWeb3()
|
||||||
|
setWeb3(web3)
|
||||||
|
|
||||||
|
const chainId = web3 && (await web3.eth.getChainId())
|
||||||
|
setChainId(chainId)
|
||||||
|
}
|
||||||
|
initWeb3()
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!web3) return
|
||||||
|
|
||||||
|
async function initUser(): Promise<void> {
|
||||||
|
const account = await web3.eth.getAccounts()[0]
|
||||||
|
setAccount(account)
|
||||||
|
|
||||||
|
const balance = await web3.eth.getBalance(account)
|
||||||
|
setBalance(balance)
|
||||||
|
}
|
||||||
|
initUser()
|
||||||
|
}, [web3])
|
||||||
|
|
||||||
|
async function enable(): Promise<boolean> {
|
||||||
|
try {
|
||||||
|
// Request account access
|
||||||
|
await window.ethereum.enable()
|
||||||
|
return true
|
||||||
|
} catch (error) {
|
||||||
|
// User denied account access
|
||||||
|
console.error('User denied account access to wallet.')
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Web3Context.Provider value={{ web3 } as Web3ProviderValue}>
|
<Web3Context.Provider
|
||||||
|
value={{ web3, chainId, account, balance, enable } as Web3ProviderValue}
|
||||||
|
>
|
||||||
{children}
|
{children}
|
||||||
</Web3Context.Provider>
|
</Web3Context.Provider>
|
||||||
)
|
)
|
||||||
|
22
src/providers/Web3Provider/utils.ts
Normal file
22
src/providers/Web3Provider/utils.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import Web3 from 'web3'
|
||||||
|
|
||||||
|
async function getWeb3(): Promise<Web3> {
|
||||||
|
let web3: Web3
|
||||||
|
|
||||||
|
// modern dapp browsers
|
||||||
|
if (window.ethereum) {
|
||||||
|
web3 = new Web3(window.ethereum as any)
|
||||||
|
}
|
||||||
|
// legacy dapp browsers
|
||||||
|
else if (window.web3) {
|
||||||
|
web3 = new Web3(window.web3.currentProvider)
|
||||||
|
}
|
||||||
|
// no dapp browser
|
||||||
|
else {
|
||||||
|
console.debug('Non-Ethereum browser detected.')
|
||||||
|
}
|
||||||
|
|
||||||
|
return web3
|
||||||
|
}
|
||||||
|
|
||||||
|
export { getWeb3 }
|
Loading…
Reference in New Issue
Block a user