1.0.2 • Published 7 years ago
ora-protocol-registry v1.0.2
Meshcache Registry
Installation
npm install ora-protocol-registryUse
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;
}