Skip to content

Commit aae40b5

Browse files
committed
chore: rm unused
1 parent e742ce5 commit aae40b5

File tree

1 file changed

+0
-246
lines changed

1 file changed

+0
-246
lines changed

src/zksync/constants/abis.ts

-246
Original file line numberDiff line numberDiff line change
@@ -647,252 +647,6 @@ export const l2SharedBridgeAbi = [
647647
},
648648
] as const
649649

650-
export const ethTokenAbi = [
651-
{
652-
anonymous: false,
653-
inputs: [
654-
{
655-
indexed: true,
656-
internalType: 'address',
657-
name: 'account',
658-
type: 'address',
659-
},
660-
{
661-
indexed: false,
662-
internalType: 'uint256',
663-
name: 'amount',
664-
type: 'uint256',
665-
},
666-
],
667-
name: 'Mint',
668-
type: 'event',
669-
},
670-
{
671-
anonymous: false,
672-
inputs: [
673-
{
674-
indexed: true,
675-
internalType: 'address',
676-
name: 'from',
677-
type: 'address',
678-
},
679-
{
680-
indexed: true,
681-
internalType: 'address',
682-
name: 'to',
683-
type: 'address',
684-
},
685-
{
686-
indexed: false,
687-
internalType: 'uint256',
688-
name: 'value',
689-
type: 'uint256',
690-
},
691-
],
692-
name: 'Transfer',
693-
type: 'event',
694-
},
695-
{
696-
anonymous: false,
697-
inputs: [
698-
{
699-
indexed: true,
700-
internalType: 'address',
701-
name: '_l2Sender',
702-
type: 'address',
703-
},
704-
{
705-
indexed: true,
706-
internalType: 'address',
707-
name: '_l1Receiver',
708-
type: 'address',
709-
},
710-
{
711-
indexed: false,
712-
internalType: 'uint256',
713-
name: '_amount',
714-
type: 'uint256',
715-
},
716-
],
717-
name: 'Withdrawal',
718-
type: 'event',
719-
},
720-
{
721-
anonymous: false,
722-
inputs: [
723-
{
724-
indexed: true,
725-
internalType: 'address',
726-
name: '_l2Sender',
727-
type: 'address',
728-
},
729-
{
730-
indexed: true,
731-
internalType: 'address',
732-
name: '_l1Receiver',
733-
type: 'address',
734-
},
735-
{
736-
indexed: false,
737-
internalType: 'uint256',
738-
name: '_amount',
739-
type: 'uint256',
740-
},
741-
{
742-
indexed: false,
743-
internalType: 'bytes',
744-
name: '_additionalData',
745-
type: 'bytes',
746-
},
747-
],
748-
name: 'WithdrawalWithMessage',
749-
type: 'event',
750-
},
751-
{
752-
inputs: [
753-
{
754-
internalType: 'uint256',
755-
name: '',
756-
type: 'uint256',
757-
},
758-
],
759-
name: 'balanceOf',
760-
outputs: [
761-
{
762-
internalType: 'uint256',
763-
name: '',
764-
type: 'uint256',
765-
},
766-
],
767-
stateMutability: 'view',
768-
type: 'function',
769-
},
770-
{
771-
inputs: [],
772-
name: 'decimals',
773-
outputs: [
774-
{
775-
internalType: 'uint8',
776-
name: '',
777-
type: 'uint8',
778-
},
779-
],
780-
stateMutability: 'pure',
781-
type: 'function',
782-
},
783-
{
784-
inputs: [
785-
{
786-
internalType: 'address',
787-
name: '_account',
788-
type: 'address',
789-
},
790-
{
791-
internalType: 'uint256',
792-
name: '_amount',
793-
type: 'uint256',
794-
},
795-
],
796-
name: 'mint',
797-
outputs: [],
798-
stateMutability: 'nonpayable',
799-
type: 'function',
800-
},
801-
{
802-
inputs: [],
803-
name: 'name',
804-
outputs: [
805-
{
806-
internalType: 'string',
807-
name: '',
808-
type: 'string',
809-
},
810-
],
811-
stateMutability: 'pure',
812-
type: 'function',
813-
},
814-
{
815-
inputs: [],
816-
name: 'symbol',
817-
outputs: [
818-
{
819-
internalType: 'string',
820-
name: '',
821-
type: 'string',
822-
},
823-
],
824-
stateMutability: 'pure',
825-
type: 'function',
826-
},
827-
{
828-
inputs: [],
829-
name: 'totalSupply',
830-
outputs: [
831-
{
832-
internalType: 'uint256',
833-
name: '',
834-
type: 'uint256',
835-
},
836-
],
837-
stateMutability: 'view',
838-
type: 'function',
839-
},
840-
{
841-
inputs: [
842-
{
843-
internalType: 'address',
844-
name: '_from',
845-
type: 'address',
846-
},
847-
{
848-
internalType: 'address',
849-
name: '_to',
850-
type: 'address',
851-
},
852-
{
853-
internalType: 'uint256',
854-
name: '_amount',
855-
type: 'uint256',
856-
},
857-
],
858-
name: 'transferFromTo',
859-
outputs: [],
860-
stateMutability: 'nonpayable',
861-
type: 'function',
862-
},
863-
{
864-
inputs: [
865-
{
866-
internalType: 'address',
867-
name: '_l1Receiver',
868-
type: 'address',
869-
},
870-
],
871-
name: 'withdraw',
872-
outputs: [],
873-
stateMutability: 'payable',
874-
type: 'function',
875-
},
876-
{
877-
inputs: [
878-
{
879-
internalType: 'address',
880-
name: '_l1Receiver',
881-
type: 'address',
882-
},
883-
{
884-
internalType: 'bytes',
885-
name: '_additionalData',
886-
type: 'bytes',
887-
},
888-
],
889-
name: 'withdrawWithMessage',
890-
outputs: [],
891-
stateMutability: 'payable',
892-
type: 'function',
893-
},
894-
] as const
895-
896650
export const bridgehubAbi = [
897651
{
898652
anonymous: false,

0 commit comments

Comments
 (0)