This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christophe Le Bars
committed
Jul 20, 2018
1 parent
65adb76
commit 52b2a69
Showing
8 changed files
with
87 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
Abstract contract for Rouge Factory contracts | ||
*/ | ||
|
||
pragma solidity ^0.4.23; | ||
|
||
import "./RGETokenInterface.sol"; | ||
|
||
contract RougeFactoryInterface { | ||
|
||
// The Rouge Token contract address | ||
RGETokenInterface public rge; | ||
|
||
// Price in RGE of the tare deposit (per token) | ||
uint256 public tare; | ||
|
||
// owner of the factory | ||
address owner; | ||
|
||
// owner can (re)set tare price or RGE contract address | ||
function setParams (address _rge, uint256 _tare) public; | ||
|
||
event NewRougeCampaign(address issuer, address campaign, uint32 _issuance); | ||
|
||
function createCampaign(address _issuer, uint32 _issuance, uint256 _tokens) public; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters