Skip to main content
Module

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

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

Examples

import Api from 'https://deno.land/x/polkadot@0.2.25/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)