@sei-js/evm
Version:
TypeScript library for EVM interactions on the Sei blockchain
65 lines (64 loc) • 1.86 kB
TypeScript
/**
* The address of the JSON precompile contract.
* @category Cosmos Interoperability
*/
export declare const JSON_PRECOMPILE_ADDRESS: `0x${string}`;
/**
* The ABI for the JSON precompile contract.
* @category Cosmos Interoperability
*/
export declare const JSON_PRECOMPILE_ABI: readonly [{
readonly inputs: readonly [{
readonly internalType: "bytes";
readonly name: "input";
readonly type: "bytes";
}, {
readonly internalType: "string";
readonly name: "key";
readonly type: "string";
}];
readonly name: "extractAsBytes";
readonly outputs: readonly [{
readonly internalType: "bytes";
readonly name: "response";
readonly type: "bytes";
}];
readonly stateMutability: "view";
readonly type: "function";
}, {
readonly inputs: readonly [{
readonly internalType: "bytes";
readonly name: "input";
readonly type: "bytes";
}, {
readonly internalType: "string";
readonly name: "key";
readonly type: "string";
}];
readonly name: "extractAsBytesList";
readonly outputs: readonly [{
readonly internalType: "bytes[]";
readonly name: "response";
readonly type: "bytes[]";
}];
readonly stateMutability: "view";
readonly type: "function";
}, {
readonly inputs: readonly [{
readonly internalType: "bytes";
readonly name: "input";
readonly type: "bytes";
}, {
readonly internalType: "string";
readonly name: "key";
readonly type: "string";
}];
readonly name: "extractAsUint256";
readonly outputs: readonly [{
readonly internalType: "uint256";
readonly name: "response";
readonly type: "uint256";
}];
readonly stateMutability: "view";
readonly type: "function";
}];