Skip to content

Commit

Permalink
add placeholder image
Browse files Browse the repository at this point in the history
  • Loading branch information
hskang9 committed Nov 5, 2024
1 parent 907f806 commit 723be89
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 20 deletions.
Binary file added assets/placeholder_token.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 30 additions & 18 deletions src/abis/MatchingEngineABI.json
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@
{ "name": "base", "type": "address", "internalType": "address" },
{ "name": "isMaker", "type": "bool", "internalType": "bool" },
{ "name": "n", "type": "uint32", "internalType": "uint32" },
{ "name": "recipient", "type": "address", "internalType": "address" }
{ "name": "recipient", "type": "address", "internalType": "address" },
{ "name": "slippageLimit", "type": "uint32", "internalType": "uint32" }
],
"outputs": [
{ "name": "makePrice", "type": "uint256", "internalType": "uint256" },
Expand Down Expand Up @@ -539,7 +540,8 @@
{ "name": "quote", "type": "address", "internalType": "address" },
{ "name": "isMaker", "type": "bool", "internalType": "bool" },
{ "name": "n", "type": "uint32", "internalType": "uint32" },
{ "name": "recipient", "type": "address", "internalType": "address" }
{ "name": "recipient", "type": "address", "internalType": "address" },
{ "name": "slippageLimit", "type": "uint32", "internalType": "uint32" }
],
"outputs": [
{ "name": "makePrice", "type": "uint256", "internalType": "uint256" },
Expand Down Expand Up @@ -886,15 +888,37 @@
},
{
"name": "base",
"type": "address",
"type": "tuple",
"indexed": false,
"internalType": "address"
"internalType": "struct TransferHelper.TokenInfo",
"components": [
{ "name": "token", "type": "address", "internalType": "address" },
{ "name": "decimals", "type": "uint8", "internalType": "uint8" },
{ "name": "name", "type": "string", "internalType": "string" },
{ "name": "symbol", "type": "string", "internalType": "string" },
{
"name": "totalSupply",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "quote",
"type": "address",
"type": "tuple",
"indexed": false,
"internalType": "address"
"internalType": "struct TransferHelper.TokenInfo",
"components": [
{ "name": "token", "type": "address", "internalType": "address" },
{ "name": "decimals", "type": "uint8", "internalType": "uint8" },
{ "name": "name", "type": "string", "internalType": "string" },
{ "name": "symbol", "type": "string", "internalType": "string" },
{
"name": "totalSupply",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "listingPrice",
Expand All @@ -907,18 +931,6 @@
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "bDecimal",
"type": "uint8",
"indexed": false,
"internalType": "uint8"
},
{
"name": "qDecimal",
"type": "uint8",
"indexed": false,
"internalType": "uint8"
}
],
"anonymous": false
Expand Down
4 changes: 2 additions & 2 deletions src/buildList.js
Original file line number Diff line number Diff line change
Expand Up @@ -523,8 +523,8 @@ module.exports = function buildList() {
startBlock: 15349021,
},
"Morph Holesky": {
address: "0xDFE6c31633e33e11624bb8b0154dd1E2551Fb5bD",
startBlock: 12533953,
address: "0x231dAc5283dc34D27926621a835C5Afd86EcBc9C",
startBlock: 12798196,
},
Mode: {
address: "0x959245EA66ac26caF38B8Eb9d48418c6B7Aa621D",
Expand Down

0 comments on commit 723be89

Please sign in to comment.