@hyperlane-xyz/starknet-core
Version:
Core cairo contracts for Hyperlane
11 lines • 504 B
TypeScript
import { CompiledContract } from 'starknet';
import { ContractType } from './types.js';
/**
* @notice Retrieves a compiled contract
* @param name The name of the contract to retrieve
* @param contractType The type of contract to retrieve
* @returns {CompiledContract} The contract data
* @throws {ContractError} If the contract is not found
*/
export declare function getCompiledContract(name: string, contractType?: ContractType): CompiledContract;
//# sourceMappingURL=contract-retriever.d.ts.map