class HttpProvider
implements ProviderInterface
import { HttpProvider } from "https://deno.land/x/polkadot@0.2.11/rpc-provider/http/index.ts";
@polkadot/rpc-provider
Examples
import Api from 'https://deno.land/x/polkadot@0.2.11/api/promise/index.ts';
import { HttpProvider } from 'https://deno.land/x/polkadot@0.2.11/rpc-provider/mod.ts';
const provider = new HttpProvider('http://127.0.0.1:9933');
const api = new Api(provider);
Methods
connect(): Promise<void>
disconnect(): Promise<void>
on(type: ProviderInterfaceEmitted, sub: ProviderInterfaceEmitCb): () => void
send<T>(): Promise<T>
method: string,
params: unknown[],
isCacheable?: boolean,
subscribe(): Promise<number>
unsubscribe(): Promise<boolean>
type: string,
method: string,
id: number,