npm.io
1.0.2 • Published 7 years ago

ora-protocol-registry

Licence
ISC
Version
1.0.2
Deps
3
Size
543 kB
Vulns
0
Weekly
0

Meshcache Registry

Installation

npm install ora-protocol-registry

Use

const Registry = require('ora-protocol-registry')

API

Get Registry Address
registry.getRegistryAddress()

This function returns the address of the registry.

Output
Get Services
var services = registry.getServices()

This function returns the list of services by ID.

Output
Get Service
var serviceId = services[0]
registry.getService(serviceId)
name type description
serviceId uint256 id of the service

This returns the associated service variables.

Output
Get Bootstraps
var serviceId = services[0]
registry.getBootstraps(serviceId)
name type description
serviceId uint256 id of the service

This returns the associated bootstrap nodes with the service.

Output

Schema

Service
    struct Service {
        uint256 serviceId;
        string id;
        address owner;
        uint256 index;
        string name;
        bytes32[] bootstraps;
        uint256 stake;

    }