@sei-js/evm
Version:
TypeScript library for EVM interactions on the Sei blockchain
39 lines (38 loc) • 1.09 kB
TypeScript
/**
* The address of the Solo precompile contract.
* @category Cosmos Migration
*/
export declare const SOLO_PRECOMPILE_ADDRESS: `0x${string}`;
/**
* The ABI for the Solo precompile contract.
* @category Cosmos Migration
*/
export declare const SOLO_PRECOMPILE_ABI: readonly [{
readonly inputs: readonly [{
readonly internalType: "bytes";
readonly name: "payload";
readonly type: "bytes";
}];
readonly name: "claim";
readonly outputs: readonly [{
readonly internalType: "bool";
readonly name: "response";
readonly type: "bool";
}];
readonly stateMutability: "nonpayable";
readonly type: "function";
}, {
readonly inputs: readonly [{
readonly internalType: "bytes";
readonly name: "payload";
readonly type: "bytes";
}];
readonly name: "claimSpecific";
readonly outputs: readonly [{
readonly internalType: "bool";
readonly name: "response";
readonly type: "bool";
}];
readonly stateMutability: "nonpayable";
readonly type: "function";
}];