UNPKG

@chainlink/blockchain.com

Version:

Chainlink adapter to query BTC address balance from blockchain.com.

21 lines 615 B
import { AdapterRequest } from '@chainlink/types'; import { Config } from '../config'; import { CoinType, ChainType } from '.'; export declare const Name = "balance"; declare type Address = { address: string; coin?: CoinType; chain?: ChainType; balance?: number; }; declare type RequestData = { dataPath: string; confirmations: number; }; export declare const inputParams: { dataPath: boolean; confirmations: boolean; }; export declare const execute: (config: Config, request: AdapterRequest, data: RequestData) => Promise<Address[]>; export {}; //# sourceMappingURL=balance.d.ts.map