1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 01:34:57 +01:00
market/tests/unit/__mocks__/web3provider.ts

23 lines
506 B
TypeScript
Raw Normal View History

2020-05-07 08:03:30 +02:00
import web3Mock from './web3'
import React from 'react'
import { Web3ProviderValue } from '@oceanprotocol/react'
2020-05-07 08:03:30 +02:00
export const context = React.createContext<Web3ProviderValue | undefined>({
web3: web3Mock,
ethProviderStatus: -1,
account: '0x0000',
balance: '',
chainId: 1,
web3Connect: {} as any,
enable: () => null as any
})
2020-05-07 08:03:30 +02:00
export default {
web3: web3Mock,
ethProviderStatus: -1,
account: '0x0000',
balance: '',
chainId: 1,
web3Connect: {} as any,
enable: () => null as any
2020-05-07 08:03:30 +02:00
}