-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
83 changed files
with
32,057 additions
and
33,368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
services/decoder/fallbacks/approval-for-all/abis/approval-for-all.abi.json
This file was deleted.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
services/decoder/fallbacks/approval-for-all/abis/approval-for-all.abi.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
export const approvalForAllABI = [ | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: "address", | ||
name: "owner", | ||
type: "address", | ||
}, | ||
{ | ||
indexed: true, | ||
internalType: "address", | ||
name: "operator", | ||
type: "address", | ||
}, | ||
{ | ||
indexed: false, | ||
internalType: "bool", | ||
name: "approved", | ||
type: "bool", | ||
}, | ||
], | ||
name: "ApprovalForAll", | ||
type: "event", | ||
}, | ||
] as const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
services/decoder/fallbacks/approval/abis/approval-erc20.abi.json
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
services/decoder/fallbacks/approval/abis/approval-erc20.abi.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
export const approvalERC20ABI = [ | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
name: "owner", | ||
type: "address", | ||
}, | ||
{ | ||
indexed: true, | ||
name: "spender", | ||
type: "address", | ||
}, | ||
{ | ||
indexed: false, | ||
name: "value", | ||
type: "uint256", | ||
}, | ||
], | ||
name: "Approval", | ||
type: "event", | ||
}, | ||
] as const; |
24 changes: 0 additions & 24 deletions
24
services/decoder/fallbacks/approval/abis/approval-erc721.abi.json
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
services/decoder/fallbacks/approval/abis/approval-erc721.abi.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
export const approvalERC721ABI = [ | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
name: "owner", | ||
type: "address", | ||
}, | ||
{ | ||
indexed: true, | ||
name: "spender", | ||
type: "address", | ||
}, | ||
{ | ||
indexed: true, | ||
name: "tokenId", | ||
type: "uint256", | ||
}, | ||
], | ||
name: "Approval", | ||
type: "event", | ||
}, | ||
] as const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
services/decoder/fallbacks/transfer/abis/transfer-erc20.abi.json
This file was deleted.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
services/decoder/fallbacks/transfer/abis/transfer-erc20.abi.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
export const transferERC20ABI = [ | ||
{ | ||
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", | ||
}, | ||
] as const; |
27 changes: 0 additions & 27 deletions
27
services/decoder/fallbacks/transfer/abis/transfer-erc721.abi.json
This file was deleted.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
services/decoder/fallbacks/transfer/abis/transfer-erc721.abi.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
export const transferERC721ABI = [ | ||
{ | ||
anonymous: false, | ||
inputs: [ | ||
{ | ||
indexed: true, | ||
internalType: "address", | ||
name: "from", | ||
type: "address", | ||
}, | ||
{ | ||
indexed: true, | ||
internalType: "address", | ||
name: "to", | ||
type: "address", | ||
}, | ||
{ | ||
indexed: true, | ||
internalType: "uint256", | ||
name: "tokenId", | ||
type: "uint256", | ||
}, | ||
], | ||
name: "Transfer", | ||
type: "event", | ||
}, | ||
] as const; |
Oops, something went wrong.