Skip to content

Commit

Permalink
Merge pull request #37 from sector-3/prepare-for-v1
Browse files Browse the repository at this point in the history
Prepare UI for protocol v1
  • Loading branch information
aahna-ashina authored Mar 12, 2023
2 parents 842d06b + 4bc2437 commit ace9a61
Show file tree
Hide file tree
Showing 11 changed files with 2,335 additions and 4 deletions.
169 changes: 169 additions & 0 deletions abis/v1/Sector3DAO.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
{
"abi": [{
"inputs": [{
"internalType": "string",
"name": "name_",
"type": "string"
}, {
"internalType": "string",
"name": "purpose_",
"type": "string"
}, {
"internalType": "address",
"name": "token_",
"type": "address"
}],
"stateMutability": "nonpayable",
"type": "constructor"
}, {
"inputs": [{
"internalType": "string",
"name": "title",
"type": "string"
}, {
"internalType": "address",
"name": "rewardToken",
"type": "address"
}, {
"internalType": "uint16",
"name": "epochDurationInDays",
"type": "uint16"
}, {
"internalType": "uint256",
"name": "epochBudget",
"type": "uint256"
}],
"name": "deployPriority",
"outputs": [{
"internalType": "contract Sector3DAOPriority",
"name": "",
"type": "address"
}],
"stateMutability": "nonpayable",
"type": "function"
}, {
"inputs": [],
"name": "getPriorities",
"outputs": [{
"internalType": "contract Sector3DAOPriority[]",
"name": "",
"type": "address[]"
}],
"stateMutability": "view",
"type": "function"
}, {
"inputs": [],
"name": "getPriorityCount",
"outputs": [{
"internalType": "uint16",
"name": "",
"type": "uint16"
}],
"stateMutability": "view",
"type": "function"
}, {
"inputs": [],
"name": "name",
"outputs": [{
"internalType": "string",
"name": "",
"type": "string"
}],
"stateMutability": "view",
"type": "function"
}, {
"inputs": [],
"name": "owner",
"outputs": [{
"internalType": "address",
"name": "",
"type": "address"
}],
"stateMutability": "view",
"type": "function"
}, {
"inputs": [{
"internalType": "uint256",
"name": "",
"type": "uint256"
}],
"name": "priorities",
"outputs": [{
"internalType": "contract Sector3DAOPriority",
"name": "",
"type": "address"
}],
"stateMutability": "view",
"type": "function"
}, {
"inputs": [],
"name": "purpose",
"outputs": [{
"internalType": "string",
"name": "",
"type": "string"
}],
"stateMutability": "view",
"type": "function"
}, {
"inputs": [{
"internalType": "contract Sector3DAOPriority",
"name": "priority",
"type": "address"
}],
"name": "removePriority",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}, {
"inputs": [{
"internalType": "string",
"name": "name_",
"type": "string"
}],
"name": "setName",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}, {
"inputs": [{
"internalType": "string",
"name": "purpose_",
"type": "string"
}],
"name": "setPurpose",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}, {
"inputs": [{
"internalType": "address",
"name": "token_",
"type": "address"
}],
"name": "setToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}, {
"inputs": [],
"name": "token",
"outputs": [{
"internalType": "address",
"name": "",
"type": "address"
}],
"stateMutability": "view",
"type": "function"
}, {
"inputs": [],
"name": "version",
"outputs": [{
"internalType": "uint8",
"name": "",
"type": "uint8"
}],
"stateMutability": "view",
"type": "function"
}]
}
Loading

0 comments on commit ace9a61

Please sign in to comment.