UNPKG

@sei-js/evm

Version:

TypeScript library for EVM interactions on the Sei blockchain

36 lines (35 loc) 1.25 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.POINTER_PRECOMPILE_ABI = exports.POINTER_PRECOMPILE_ADDRESS = void 0; /** * The address of the Pointer precompile contract. * @category Cosmos Interoperability */ exports.POINTER_PRECOMPILE_ADDRESS = '0x000000000000000000000000000000000000100B'; /** * The ABI for the Pointer precompile contract. * @category Cosmos Interoperability */ exports.POINTER_PRECOMPILE_ABI = [ { inputs: [{ internalType: 'string', name: 'cwAddr', type: 'string' }], name: 'addCW20Pointer', outputs: [{ internalType: 'address', name: 'ret', type: 'address' }], stateMutability: 'payable', type: 'function' }, { inputs: [{ internalType: 'string', name: 'cwAddr', type: 'string' }], name: 'addCW721Pointer', outputs: [{ internalType: 'address', name: 'ret', type: 'address' }], stateMutability: 'payable', type: 'function' }, { inputs: [{ internalType: 'string', name: 'token', type: 'string' }], name: 'addNativePointer', outputs: [{ internalType: 'address', name: 'ret', type: 'address' }], stateMutability: 'payable', type: 'function' } ];