dep: update module hash

This commit is contained in:
Derrick Hammer 2023-07-14 04:34:44 -04:00
parent f89046fdab
commit 2368491114
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { Client, factory } from "@lumeweb/libkernel/module"; import { Client, factory } from "@lumeweb/libkernel/module";
const RPC_MODULE = "AABzXaYbh-KuCx3ZUUz-oeeMQsZb3kR1BbYSQ-8LSsBmAA"; const MODULE = "zduKW55byJGtigF9TcVmrBJzGidXUHBifAo5Yxb211fzw86W1tbG9WmKqh";
export class EthClient extends Client { export class EthClient extends Client {
public async ready() { public async ready() {
@ -11,4 +11,4 @@ export class EthClient extends Client {
} }
} }
export const createClient = factory<EthClient>(EthClient, RPC_MODULE); export const createClient = factory<EthClient>(EthClient, MODULE);