Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 42161-main #95

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
332 changes: 332 additions & 0 deletions 42161-main/ARBToken.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,332 @@
[
{
"type": "constructor",
"stateMutability": "payable",
"payable": true,
"inputs": [
{
"type": "string",
"name": "name"
},
{
"type": "string",
"name": "symbol"
},
{
"type": "uint256",
"name": "initialSupply"
}
]
},
{
"type": "event",
"anonymous": false,
"name": "Approval",
"inputs": [
{
"type": "address",
"name": "owner",
"indexed": true
},
{
"type": "address",
"name": "spender",
"indexed": true
},
{
"type": "uint256",
"name": "value"
}
]
},
{
"type": "event",
"anonymous": false,
"name": "OwnershipTransferred",
"inputs": [
{
"type": "address",
"name": "previousOwner",
"indexed": true
},
{
"type": "address",
"name": "newOwner",
"indexed": true
}
]
},
{
"type": "event",
"anonymous": false,
"name": "Transfer",
"inputs": [
{
"type": "address",
"name": "from",
"indexed": true
},
{
"type": "address",
"name": "to",
"indexed": true
},
{
"type": "uint256",
"name": "value"
}
]
},
{
"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": "account"
}
],
"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": "mint",
"constant": false,
"payable": false,
"inputs": [
{
"type": "uint256",
"name": "amount"
},
{
"type": "address",
"name": "to"
}
],
"outputs": []
},
{
"type": "function",
"name": "name",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "string"
}
]
},
{
"type": "function",
"name": "owner",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "address"
}
]
},
{
"type": "function",
"name": "renounceOwnership",
"constant": false,
"payable": false,
"inputs": [],
"outputs": []
},
{
"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"
}
]
},
{
"type": "function",
"name": "transferOwnership",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "newOwner"
}
],
"outputs": []
}
]
21 changes: 21 additions & 0 deletions 42161-main/ARBToken.readable.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[
"constructor(string name, string symbol, uint256 initialSupply) payable",
"event Approval(address indexed owner, address indexed spender, uint256 value)",
"event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)",
"event Transfer(address indexed from, address indexed to, uint256 value)",
"function allowance(address owner, address spender) view returns (uint256)",
"function approve(address spender, uint256 amount) returns (bool)",
"function balanceOf(address account) 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 mint(uint256 amount, address to)",
"function name() view returns (string)",
"function owner() view returns (address)",
"function renounceOwnership()",
"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)",
"function transferOwnership(address newOwner)"
]
Loading