@chainlink/functions-toolkit
Version:
An NPM package with collection of functions that can be used for working with Chainlink Functions.
48 lines (47 loc) • 1.12 kB
TypeScript
export declare const LinkTokenSource: {
_format: string;
contractName: string;
sourceName: string;
abi: ({
constant: boolean;
inputs: {
name: string;
type: string;
}[];
name: string;
outputs: {
name: string;
type: string;
}[];
payable: boolean;
stateMutability: string;
type: string;
anonymous?: undefined;
} | {
inputs: never[];
payable: boolean;
stateMutability: string;
type: string;
constant?: undefined;
name?: undefined;
outputs?: undefined;
anonymous?: undefined;
} | {
anonymous: boolean;
inputs: {
indexed: boolean;
name: string;
type: string;
}[];
name: string;
type: string;
constant?: undefined;
outputs?: undefined;
payable?: undefined;
stateMutability?: undefined;
})[];
bytecode: string;
deployedBytecode: string;
linkReferences: {};
deployedLinkReferences: {};
};