Skip to main content
Module

x/polkadot/api/index.ts>ApiPromise.create

Package publishing for deno.land/x/polkadot
Go to Latest
method ApiPromise.create
import { ApiPromise } from "https://deno.land/x/polkadot@0.2.12/api/index.ts";

Examples

import Api from 'https://deno.land/x/polkadot@0.2.12/api/promise/index.ts';

Api.create().then(async (api) => {
  const timestamp = await api.query.timestamp.now();

  console.log(`lastest block timestamp ${timestamp}`);
});

Parameters

optional
options: ApiOptions

options that is passed to the class contructor. Can be either [[ApiOptions]] or a provider (see the constructor arguments)