Compare commits

..

No commits in common. "c17976a491931e587ee9acdd2cb1c8cbe9ebb5b8" and "461b1dd9f6af8885c19f88dba0fa20f8d7769cf2" have entirely different histories.

2 changed files with 12 additions and 8 deletions

View File

@ -1,4 +1,10 @@
# Project costs reimbursement proposal # Proposal title
### Changes / effect description
- 1
- 2
- ...
### Requirements ### Requirements
@ -9,8 +15,8 @@
### Installation ### Installation
```text ```text
git clone --recurse-submodules https://git.tornado.ws/Theo/proposal-24-costs-reimbursement git clone --recurse-submodules <proposal-repo-link>
cd proposal-24-costs-reimbursement cd <proposal-name>
npm install npm install
``` ```
@ -19,7 +25,3 @@ npm install
```text ```text
npm run test npm run test
``` ```
#### Deployed contracts
Proposal contract: [0xF24ac7677771707a05Df028D7f96f078d6c696e5](https://etherscan.io/address/0xf24ac7677771707a05df028d7f96f078d6c696e5#code)

View File

@ -2,10 +2,12 @@
pragma solidity ^0.8.19; pragma solidity ^0.8.19;
import { IGovernance } from "@interfaces/IGovernance.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract ReimbursementProposal { contract ReimbursementProposal {
address constant tornTokenAddress = 0x77777FeDdddFfC19Ff86DB637967013e6C6A116C; address constant tornTokenAddress = 0x77777FeDdddFfC19Ff86DB637967013e6C6A116C;
address constant governanceAddress = 0x5efda50f22d34F262c29268506C5Fa42cB56A1Ce;
function executeProposal() public { function executeProposal() public {
address developerAddress = 0x9Ff3C1Bea9ffB56a78824FE29f457F066257DD58; address developerAddress = 0x9Ff3C1Bea9ffB56a78824FE29f457F066257DD58;