@pushchain/core
Version:
Push Chain is a true universal L1 that is 100% EVM compatible. It allows developers to deploy once and make their apps instantly compatible with users from all other L1s (Ethereum, Solana, etc) with zero on-chain code change.
75 lines • 1.72 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.COUNTER_ABI_PAYABLE = void 0;
exports.COUNTER_ABI_PAYABLE = [
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'uint256',
name: 'countPC',
type: 'uint256',
},
{
indexed: true,
internalType: 'address',
name: 'caller',
type: 'address',
},
{
indexed: false,
internalType: 'uint256',
name: 'value',
type: 'uint256',
},
],
name: 'CountIncremented',
type: 'event',
},
{
inputs: [],
name: 'increment',
outputs: [],
stateMutability: 'payable',
type: 'function',
},
{
inputs: [],
name: 'reset',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
stateMutability: 'payable',
type: 'receive',
},
{
inputs: [],
name: 'countPC',
outputs: [
{
internalType: 'uint256',
name: '',
type: 'uint256',
},
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [],
name: 'getBalance',
outputs: [
{
internalType: 'uint256',
name: '',
type: 'uint256',
},
],
stateMutability: 'view',
type: 'function',
},
];
//# sourceMappingURL=abis.js.map