@chainlink/functions-toolkit
Version:
An NPM package with collection of functions that can be used for working with Chainlink Functions.
6 lines (5 loc) • 404 B
TypeScript
import { Wallet } from 'ethers';
import type { ServerOptions } from 'ganache';
import type { LocalFunctionsTestnet, FunctionsContracts } from './types';
export declare const startLocalFunctionsTestnet: (simulationConfigPath?: string, options?: ServerOptions, port?: number) => Promise<LocalFunctionsTestnet>;
export declare const deployFunctionsOracle: (deployer: Wallet) => Promise<FunctionsContracts>;