PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/@polkadot/api-derive/collective

Просмотр файла: helpers.js

import { of } from 'rxjs';
import { isFunction } from '@polkadot/util';
import { memo } from '../util/index.js';
export function getInstance(api, section) {
    const instances = api.registry.getModuleInstances(api.runtimeVersion.specName, section);
    const name = instances?.length
        ? instances[0]
        : section;
    return api.query[name];
}
export function withSection(section, fn) {
    return (instanceId, api) => memo(instanceId, fn(getInstance(api, section), api, instanceId));
}
export function callMethod(method, empty) {
    return (section) => withSection(section, (query) => () => isFunction(query?.[method])
        ? query[method]()
        : of(empty));
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!