Skip to content

Commit

Permalink
Update 84532-andromeda (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
synthetixio-team authored Oct 28, 2024
1 parent 1874483 commit 2abc1dc
Show file tree
Hide file tree
Showing 46 changed files with 33,634 additions and 20,906 deletions.
273 changes: 273 additions & 0 deletions 84532-andromeda/CollateralToken_WETH.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,273 @@
[
{
"type": "error",
"name": "InsufficientAllowance",
"inputs": [
{
"type": "uint256",
"name": "required"
},
{
"type": "uint256",
"name": "existing"
}
]
},
{
"type": "error",
"name": "InsufficientBalance",
"inputs": [
{
"type": "uint256",
"name": "required"
},
{
"type": "uint256",
"name": "existing"
}
]
},
{
"type": "event",
"anonymous": false,
"name": "Approval",
"inputs": [
{
"type": "address",
"name": "owner",
"indexed": true
},
{
"type": "address",
"name": "spender",
"indexed": true
},
{
"type": "uint256",
"name": "amount"
}
]
},
{
"type": "event",
"anonymous": false,
"name": "Transfer",
"inputs": [
{
"type": "address",
"name": "from",
"indexed": true
},
{
"type": "address",
"name": "to",
"indexed": true
},
{
"type": "uint256",
"name": "amount"
}
]
},
{
"type": "function",
"name": "allowance",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [
{
"type": "address",
"name": "owner"
},
{
"type": "address",
"name": "spender"
}
],
"outputs": [
{
"type": "uint256"
}
]
},
{
"type": "function",
"name": "approve",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "spender"
},
{
"type": "uint256",
"name": "amount"
}
],
"outputs": [
{
"type": "bool"
}
]
},
{
"type": "function",
"name": "balanceOf",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [
{
"type": "address",
"name": "owner"
}
],
"outputs": [
{
"type": "uint256"
}
]
},
{
"type": "function",
"name": "decimals",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "uint8"
}
]
},
{
"type": "function",
"name": "decreaseAllowance",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "spender"
},
{
"type": "uint256",
"name": "subtractedValue"
}
],
"outputs": [
{
"type": "bool"
}
]
},
{
"type": "function",
"name": "increaseAllowance",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "spender"
},
{
"type": "uint256",
"name": "addedValue"
}
],
"outputs": [
{
"type": "bool"
}
]
},
{
"type": "function",
"name": "name",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "string"
}
]
},
{
"type": "function",
"name": "symbol",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "string"
}
]
},
{
"type": "function",
"name": "totalSupply",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "uint256"
}
]
},
{
"type": "function",
"name": "transfer",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "to"
},
{
"type": "uint256",
"name": "amount"
}
],
"outputs": [
{
"type": "bool"
}
]
},
{
"type": "function",
"name": "transferFrom",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "from"
},
{
"type": "address",
"name": "to"
},
{
"type": "uint256",
"name": "amount"
}
],
"outputs": [
{
"type": "bool"
}
]
}
]
17 changes: 17 additions & 0 deletions 84532-andromeda/CollateralToken_WETH.readable.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
"error InsufficientAllowance(uint256 required, uint256 existing)",
"error InsufficientBalance(uint256 required, uint256 existing)",
"event Approval(address indexed owner, address indexed spender, uint256 amount)",
"event Transfer(address indexed from, address indexed to, uint256 amount)",
"function allowance(address owner, address spender) view returns (uint256)",
"function approve(address spender, uint256 amount) returns (bool)",
"function balanceOf(address owner) view returns (uint256)",
"function decimals() view returns (uint8)",
"function decreaseAllowance(address spender, uint256 subtractedValue) returns (bool)",
"function increaseAllowance(address spender, uint256 addedValue) returns (bool)",
"function name() view returns (string)",
"function symbol() view returns (string)",
"function totalSupply() view returns (uint256)",
"function transfer(address to, uint256 amount) returns (bool)",
"function transferFrom(address from, address to, uint256 amount) returns (bool)"
]
Loading

0 comments on commit 2abc1dc

Please sign in to comment.