Skip to content

Commit

Permalink
chore: rm unused
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Jan 11, 2025
1 parent e742ce5 commit aae40b5
Showing 1 changed file with 0 additions and 246 deletions.
246 changes: 0 additions & 246 deletions src/zksync/constants/abis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -647,252 +647,6 @@ export const l2SharedBridgeAbi = [
},
] as const

export const ethTokenAbi = [
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'account',
type: 'address',
},
{
indexed: false,
internalType: 'uint256',
name: 'amount',
type: 'uint256',
},
],
name: 'Mint',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'from',
type: 'address',
},
{
indexed: true,
internalType: 'address',
name: 'to',
type: 'address',
},
{
indexed: false,
internalType: 'uint256',
name: 'value',
type: 'uint256',
},
],
name: 'Transfer',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: '_l2Sender',
type: 'address',
},
{
indexed: true,
internalType: 'address',
name: '_l1Receiver',
type: 'address',
},
{
indexed: false,
internalType: 'uint256',
name: '_amount',
type: 'uint256',
},
],
name: 'Withdrawal',
type: 'event',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: '_l2Sender',
type: 'address',
},
{
indexed: true,
internalType: 'address',
name: '_l1Receiver',
type: 'address',
},
{
indexed: false,
internalType: 'uint256',
name: '_amount',
type: 'uint256',
},
{
indexed: false,
internalType: 'bytes',
name: '_additionalData',
type: 'bytes',
},
],
name: 'WithdrawalWithMessage',
type: 'event',
},
{
inputs: [
{
internalType: 'uint256',
name: '',
type: 'uint256',
},
],
name: 'balanceOf',
outputs: [
{
internalType: 'uint256',
name: '',
type: 'uint256',
},
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [],
name: 'decimals',
outputs: [
{
internalType: 'uint8',
name: '',
type: 'uint8',
},
],
stateMutability: 'pure',
type: 'function',
},
{
inputs: [
{
internalType: 'address',
name: '_account',
type: 'address',
},
{
internalType: 'uint256',
name: '_amount',
type: 'uint256',
},
],
name: 'mint',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [],
name: 'name',
outputs: [
{
internalType: 'string',
name: '',
type: 'string',
},
],
stateMutability: 'pure',
type: 'function',
},
{
inputs: [],
name: 'symbol',
outputs: [
{
internalType: 'string',
name: '',
type: 'string',
},
],
stateMutability: 'pure',
type: 'function',
},
{
inputs: [],
name: 'totalSupply',
outputs: [
{
internalType: 'uint256',
name: '',
type: 'uint256',
},
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [
{
internalType: 'address',
name: '_from',
type: 'address',
},
{
internalType: 'address',
name: '_to',
type: 'address',
},
{
internalType: 'uint256',
name: '_amount',
type: 'uint256',
},
],
name: 'transferFromTo',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [
{
internalType: 'address',
name: '_l1Receiver',
type: 'address',
},
],
name: 'withdraw',
outputs: [],
stateMutability: 'payable',
type: 'function',
},
{
inputs: [
{
internalType: 'address',
name: '_l1Receiver',
type: 'address',
},
{
internalType: 'bytes',
name: '_additionalData',
type: 'bytes',
},
],
name: 'withdrawWithMessage',
outputs: [],
stateMutability: 'payable',
type: 'function',
},
] as const

export const bridgehubAbi = [
{
anonymous: false,
Expand Down

0 comments on commit aae40b5

Please sign in to comment.