import { ApiPromise } from "https://deno.land/x/polkadot@0.2.12/api/promise/Api.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: ApiOptionsoptions that is passed to the class contructor. Can be either [[ApiOptions]] or a provider (see the constructor arguments)
Returns
Promise<ApiPromise>