npm install @open-rpc/typings
$ open-rpc-typings --help
Usage: cli [options]
Options:
-v, --version print the version number
-d, --document [openrpcDocument] JSON string, or a filepath or remote URL pointing to an Open-RPC JSON document (default: "./openrpc.json")
--output-rs [directory] path to output dir of Rust typings
--output-ts [directory] path to output dir of Typescript typings
--output-go [directory] path to output dir of Go typings
--name-rs [file] file name to input of Rust typings (default: "./index")
--name-ts [file] file name to input of Typescript typings (default: "./index")
--name-go [file] file name to input of Go typings (default: "./index")
-h, --help print usage information
import OpenRPCTypings from "@open-rpc/typings";
const typings = new OpenRPCTypings(OpenRPCDocument);
await typings.generate()
const rustTypings = typings.toString("rust");