-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
/**
* Get network related information such as protocol parameters and minimum pow score.
*/
async getNetworkInfo(): Promise<INetworkInfo> {
const response = await this.methodHandler.callMethod({
name: 'getNetworkInfo',
});
return JSON.parse(response).payload;
}
Reactions are currently unavailable