mirror of
https://github.com/oceanprotocol/react.git
synced 2024-12-24 10:06:20 +01:00
43 lines
796 B
TypeScript
43 lines
796 B
TypeScript
import React from 'react'
|
|
import { useOcean } from '@oceanprotocol/react'
|
|
import { useEffect } from 'react'
|
|
|
|
export function Wallet() {
|
|
const { ocean, connect, logout, accountId } = useOcean()
|
|
|
|
const conn = async () => {
|
|
await connect()
|
|
}
|
|
|
|
const init = async () => {
|
|
if (ocean === undefined || accountId === undefined) return
|
|
|
|
const assets = await ocean.assets.ownerAssets(accountId)
|
|
console.log(assets)
|
|
}
|
|
|
|
useEffect(() => {
|
|
init()
|
|
}, [ocean, accountId])
|
|
|
|
const disc = async () => {
|
|
await logout()
|
|
await conn()
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div>wallet</div>
|
|
<div>
|
|
<button onClick={conn}>Connect</button>
|
|
</div>
|
|
|
|
<div>
|
|
<button onClick={disc}>Disconnect</button>
|
|
</div>
|
|
|
|
<div>{accountId}</div>
|
|
</>
|
|
)
|
|
}
|