diff options
Diffstat (limited to 'packages/0x.js/src/subproviders')
-rw-r--r-- | packages/0x.js/src/subproviders/empty_wallet_subprovider.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/0x.js/src/subproviders/empty_wallet_subprovider.ts b/packages/0x.js/src/subproviders/empty_wallet_subprovider.ts new file mode 100644 index 000000000..2f260217c --- /dev/null +++ b/packages/0x.js/src/subproviders/empty_wallet_subprovider.ts @@ -0,0 +1,24 @@ +import {JSONRPCPayload} from '../types'; + +/* + * This class implements the web3-provider-engine subprovider interface and returns + * that the provider has no addresses when queried. + * Source: https://github.com/MetaMask/provider-engine/blob/master/subproviders/subprovider.js + */ +export class EmptyWalletSubProvider { + public handleRequest(payload: JSONRPCPayload, next: () => void, end: (err: Error|null, result: any) => void) { + switch (payload.method) { + case 'eth_accounts': + end(null, []); + return; + + default: + next(); + return; + } + } + // Required to implement this method despite not needing it for this subprovider + public setEngine(engine: any) { + // noop + } +} |