Export Eip1193Bridge in experimental package.

This commit is contained in:
Richard Moore 2021-04-18 02:40:26 -04:00
parent 7c8ae9cfcb
commit 1fcf4b6ce6
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651
2 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,7 @@ function getBlockTag(tag) {
}
*/
export class _Eip1193Bridge extends EventEmitter {
export class Eip1193Bridge extends EventEmitter {
readonly signer: ethers.Signer;
readonly provider: ethers.providers.Provider;

View File

@ -2,8 +2,10 @@
import { BrainWallet } from "./brain-wallet";
import { NonceManager } from "./nonce-manager";
import { Eip1193Bridge } from "./eip1193-bridge";
export {
BrainWallet,
Eip1193Bridge,
NonceManager
}