The Timeleap Client library provides programmatic access to the Timeleap network. This library provides the following classes:
import { Wallet } from "@timeleap/client"
const wallet = await Wallet.random()
console.log(wallet.toBase58())
import { Client } from "@timeleap/client"
const client = await Client.connect(wallet, TimeleapBrokerURI)
const response = await client.send(rpcRequest)
WIP