UNPKG

@0xcert/ethereum-metamask-provider

Version:

Implementation of MetaMask communication provider for the Ethereum blockchain.

15 lines (11 loc) 327 B
import { Spec } from '@hayspec/spec'; import * as view from '..'; const spec = new Spec(); spec.test('exposes objects', (ctx) => { ctx.true(!!view.MetamaskProvider); ctx.true(!!view.SignMethod); ctx.true(!!view.Mutation); ctx.true(!!view.buildGatewayConfig); ctx.true(!!view.NetworkKind); }); export default spec;