mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 13:54:05 -06:00
17 lines
307 B
TypeScript
17 lines
307 B
TypeScript
import { BigNumber } from "ethers";
|
|
/**
|
|
*
|
|
* @internal
|
|
*/
|
|
export declare type ChainlinkInfo = {
|
|
vrfCoordinator: string;
|
|
linkTokenAddress: string;
|
|
keyHash: string;
|
|
fees: BigNumber;
|
|
};
|
|
/**
|
|
*
|
|
* @internal
|
|
*/
|
|
export declare const ChainlinkVrf: Record<number, ChainlinkInfo>;
|