@sei-js/evm
Version:
TypeScript library for EVM interactions on the Sei blockchain
29 lines (28 loc) • 948 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SOLO_PRECOMPILE_ABI = exports.SOLO_PRECOMPILE_ADDRESS = void 0;
/**
* The address of the Solo precompile contract.
* @category Cosmos Migration
*/
exports.SOLO_PRECOMPILE_ADDRESS = '0x000000000000000000000000000000000000100C';
/**
* The ABI for the Solo precompile contract.
* @category Cosmos Migration
*/
exports.SOLO_PRECOMPILE_ABI = [
{
inputs: [{ internalType: 'bytes', name: 'payload', type: 'bytes' }],
name: 'claim',
outputs: [{ internalType: 'bool', name: 'response', type: 'bool' }],
stateMutability: 'nonpayable',
type: 'function'
},
{
inputs: [{ internalType: 'bytes', name: 'payload', type: 'bytes' }],
name: 'claimSpecific',
outputs: [{ internalType: 'bool', name: 'response', type: 'bool' }],
stateMutability: 'nonpayable',
type: 'function'
}
];