@hyperlane-xyz/starknet-core
Version:
Core cairo contracts for Hyperlane
10 lines • 428 B
JavaScript
export const CONTRACT_SUFFIXES = {
SIERRA_JSON: '.contract_class.json', // Sierra is the high-level representation
ASSEMBLY_JSON: '.compiled_contract_class.json', // Cairo assembly (CASM) is the low-level bytecode
};
export const ERR_CODES = {
INVALID_CONTRACT_TYPE: 'INVALID_CONTRACT_TYPE',
CONTRACT_NOT_FOUND: 'CONTRACT_NOT_FOUND',
SIERRA_NOT_FOUND: 'SIERRA_NOT_FOUND',
};
//# sourceMappingURL=const.js.map