0.1.5 • Published 7 months ago
@openweb3-io/waas v0.1.5
Typescript/Javascript library for interacting with the WaaS API and verifying WaaS signatures
Usage Documentation
You can find general usage documentation at https://docs.waas.openweb3.io. For complete API documentation with code examples for each endpoint in all of our official client libraries head over to our API documentation site at https://api.waas.openweb3.io.
Language Support
Installation
npm install @openweb3-io/waas
# or
yarn add @openweb3-io/waasUsage
import { ApiClient } from "@openweb3-io/waas";
const apiClient = new ApiClient("API-KEY", "PRIVATE KEY");
const chains = await apiClient.chains.list({ limit: 20 });Development
First checkout the core README for details on how to generate our API bindings, then follow the steps below.
Requirements
- node
- yarn
Building the library
yarn
yarn buildContributing
Before opening a PR be sure to format your code!
yarn lint:fixRunning Tests
Simply run:
yarn test