feat: add register method for network registry

This commit is contained in:
Derrick Hammer 2023-07-19 13:04:48 -04:00
parent 93a1e7e884
commit e9c9944003
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 4 additions and 0 deletions

View File

@ -84,6 +84,10 @@ export class IPFSClient extends Client {
},
};
}
public async register() {
return this.callModuleReturn("register");
}
}
export const createClient = factory<IPFSClient>(IPFSClient, MODULE);