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 ( <>