feat: add register for network registry

This commit is contained in:
Derrick Hammer 2023-07-19 12:50:45 -04:00
parent d0764d3f01
commit 2a7eb58354
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,9 @@ export class EthClient extends Client {
public async method(method: string, params: any) {
return this.callModuleReturn(method, params);
}
public async register() {
return this.callModuleReturn("register");
}
}
export const createClient = factory<EthClient>(EthClient, MODULE);