Skip to content

Commit

Permalink
Merge commit 'eb708859df03977906ca03cd83610111b627d4a0' into liquid-s…
Browse files Browse the repository at this point in the history
…taking-tests
  • Loading branch information
naddison36 committed Aug 16, 2021
2 parents 9c1f248 + eb70885 commit a7f6d78
Show file tree
Hide file tree
Showing 10 changed files with 1,892 additions and 3 deletions.
271 changes: 271 additions & 0 deletions contracts/peripheral/ENS/EnsEthRegistrarController.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,271 @@
[
{
"inputs": [
{ "internalType": "contract BaseRegistrar", "name": "_base", "type": "address" },
{ "internalType": "contract PriceOracle", "name": "_prices", "type": "address" },
{ "internalType": "uint256", "name": "_minCommitmentAge", "type": "uint256" },
{ "internalType": "uint256", "name": "_maxCommitmentAge", "type": "uint256" }
],
"payable": false,
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{ "indexed": false, "internalType": "string", "name": "name", "type": "string" },
{ "indexed": true, "internalType": "bytes32", "name": "label", "type": "bytes32" },
{ "indexed": true, "internalType": "address", "name": "owner", "type": "address" },
{ "indexed": false, "internalType": "uint256", "name": "cost", "type": "uint256" },
{ "indexed": false, "internalType": "uint256", "name": "expires", "type": "uint256" }
],
"name": "NameRegistered",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{ "indexed": false, "internalType": "string", "name": "name", "type": "string" },
{ "indexed": true, "internalType": "bytes32", "name": "label", "type": "bytes32" },
{ "indexed": false, "internalType": "uint256", "name": "cost", "type": "uint256" },
{ "indexed": false, "internalType": "uint256", "name": "expires", "type": "uint256" }
],
"name": "NameRenewed",
"type": "event"
},
{
"anonymous": false,
"inputs": [{ "indexed": true, "internalType": "address", "name": "oracle", "type": "address" }],
"name": "NewPriceOracle",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{ "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
{ "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"constant": true,
"inputs": [],
"name": "MIN_REGISTRATION_DURATION",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [{ "internalType": "string", "name": "name", "type": "string" }],
"name": "available",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [{ "internalType": "bytes32", "name": "commitment", "type": "bytes32" }],
"name": "commit",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
"name": "commitments",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "isOwner",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{ "internalType": "string", "name": "name", "type": "string" },
{ "internalType": "address", "name": "owner", "type": "address" },
{ "internalType": "bytes32", "name": "secret", "type": "bytes32" }
],
"name": "makeCommitment",
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
"payable": false,
"stateMutability": "pure",
"type": "function"
},
{
"constant": true,
"inputs": [
{ "internalType": "string", "name": "name", "type": "string" },
{ "internalType": "address", "name": "owner", "type": "address" },
{ "internalType": "bytes32", "name": "secret", "type": "bytes32" },
{ "internalType": "address", "name": "resolver", "type": "address" },
{ "internalType": "address", "name": "addr", "type": "address" }
],
"name": "makeCommitmentWithConfig",
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
"payable": false,
"stateMutability": "pure",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "maxCommitmentAge",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "minCommitmentAge",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "owner",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{ "internalType": "string", "name": "name", "type": "string" },
{ "internalType": "address", "name": "owner", "type": "address" },
{ "internalType": "uint256", "name": "duration", "type": "uint256" },
{ "internalType": "bytes32", "name": "secret", "type": "bytes32" }
],
"name": "register",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": false,
"inputs": [
{ "internalType": "string", "name": "name", "type": "string" },
{ "internalType": "address", "name": "owner", "type": "address" },
{ "internalType": "uint256", "name": "duration", "type": "uint256" },
{ "internalType": "bytes32", "name": "secret", "type": "bytes32" },
{ "internalType": "address", "name": "resolver", "type": "address" },
{ "internalType": "address", "name": "addr", "type": "address" }
],
"name": "registerWithConfig",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": false,
"inputs": [
{ "internalType": "string", "name": "name", "type": "string" },
{ "internalType": "uint256", "name": "duration", "type": "uint256" }
],
"name": "renew",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [
{ "internalType": "string", "name": "name", "type": "string" },
{ "internalType": "uint256", "name": "duration", "type": "uint256" }
],
"name": "rentPrice",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{ "internalType": "uint256", "name": "_minCommitmentAge", "type": "uint256" },
{ "internalType": "uint256", "name": "_maxCommitmentAge", "type": "uint256" }
],
"name": "setCommitmentAges",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [{ "internalType": "contract PriceOracle", "name": "_prices", "type": "address" }],
"name": "setPriceOracle",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [{ "internalType": "bytes4", "name": "interfaceID", "type": "bytes4" }],
"name": "supportsInterface",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"payable": false,
"stateMutability": "pure",
"type": "function"
},
{
"constant": false,
"inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }],
"name": "transferOwnership",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [{ "internalType": "string", "name": "name", "type": "string" }],
"name": "valid",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"payable": false,
"stateMutability": "pure",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "withdraw",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
]
1 change: 1 addition & 0 deletions tasks-fork.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ import "./tasks/rewards"
import "./tasks/SaveWrapper"
import "./tasks/token"
import "./tasks/weekly"
import "./tasks/ens"

export default config
1 change: 1 addition & 0 deletions tasks.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ import "./tasks/rewards"
import "./tasks/SaveWrapper"
import "./tasks/token"
import "./tasks/weekly"
import "./tasks/ens"

export default config
File renamed without changes.
Loading

0 comments on commit a7f6d78

Please sign in to comment.