Typed Web Services for NodeJS
: The `metadata` property is experimental and subject to change. ```typescript import { Service, Method, Type } from '@sinclair/servicebox' const service = new Service({ 'add': new Method([], { request: Type.Tuple([ Type.Number(), Type.Number() ]), response: Type.Number() }, (context, [a, b]) => a + b)) }) const metadata = service.metadata console.log(metadata) // { // version: "0.0.0", // name: "Service", // methods: { // add: { // request: { // type: "array", // items: [ // { type: "number" }, // { type: "number" } // ] // }, // response: { type: "number" } // } // } // } ``` ## Links - [TypeBox](https://github.com/sinclairzx81/typebox)
How the donated funds are distributed
Kivach works on the Obyte network, and therefore you can track all donations.