alchemy-sdk
Version:
Extended Ethers.js SDK for Alchemy APIs
18 lines (17 loc) • 533 B
TypeScript
import { Contract as EthersContract, ContractFactory as EthersContractFactory } from '@ethersproject/contracts';
/**
* The Contract class is a wrapper around the Contract class from ethers.js and
* is exported here for convenience.
*
* @public
*/
export declare class Contract extends EthersContract {
}
/**
* The ContractFactory class is a wrapper around the ContractFactory class from
* ethers.js and is exported here for convenience.
*
* @public
*/
export declare class ContractFactory extends EthersContractFactory {
}