This file contains hidden or 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
pragma solidity ^ 0.5.13; | |
/* | |
Hopefully color token can help people see the potentials of resolve tokens. | |
*/ | |
contract ColorToken{ | |
uint8 constant REDBONDS = 0; | |
uint8 constant GREENBONDS = 1; | |
uint8 constant BLUEBONDS = 2; |
This file contains hidden or 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
contract Pyramid{ | |
// scaleFactor is used to convert Ether into bonds and vice-versa: they're of different | |
// orders of magnitude, hence the need to bridge between the two. | |
uint256 constant scaleFactor = 0x10000000000000000; | |
int constant crr_n = 1; | |
int constant crr_d = 2; | |
// 1 Configuration. The slope of the Pyramid. |
This file contains hidden or 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
pragma solidity ^ 0.5.12; | |
contract ColorToken{ | |
uint8 constant REDBONDS = 0; | |
uint8 constant GREENBONDS = 1; | |
uint8 constant BLUEBONDS = 2; | |
uint8 constant REDRESOLVES = 3; | |
uint8 constant GREENRESOLVES = 4; | |
uint8 constant BLUERESOLVES = 5; | |
uint8 constant VOTES_FOR_CR = 6; | |
uint8 constant VOTING_FOR_MR = 7; |
This file contains hidden or 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
pragma solidity ^ 0.5.12; | |
contract Pyramid{ | |
// scaleFactor is used to convert Ether into bonds and vice-versa: they're of different | |
// orders of magnitude, hence the need to bridge between the two. | |
uint256 constant scaleFactor = 0x10000000000000000; | |
int constant crr_n = 1; | |
int constant crr_d = 2; | |
int constant public price_coeff = -0x1337FA66607BADA55; |
This file contains hidden or 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
pragma solidity ^ 0.5.12; | |
contract ColorToken{ | |
address THIS = address(this); | |
address constant nulf = 0x0000000000000000000000000000000000000000; | |
string public name = "Color Token"; | |
string public symbol = "RGB"; | |
uint8 constant public decimals = 18; | |
uint _totalSupply/*===*/; |
This file contains hidden or 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
pragma solidity ^ 0.5.1; | |
contract ColorToken{ | |
BondContract public bondContract; | |
ResolveContract public resolveContract; | |
address lastGateway; | |
address communityResolve; | |
address THIS = address(this); | |
string public name = "Color Token"; | |
string public symbol = "RGB"; |
This file contains hidden or 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
pragma solidity ^ 0.5.1; | |
contract PoWHr{ | |
// scaleFactor is used to convert Ether into bonds and vice-versa: they're of different | |
// orders of magnitude, hence the need to bridge between the two. | |
uint256 constant scaleFactor = 0x10000000000000000; | |
int constant crr_n = 1; | |
int constant crr_d = 2; | |
int constant public price_coeff = -0x1337FA66607BADA55; |
This file contains hidden or 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
pragma solidity ^ 0.5.1; | |
contract PoWHr{ | |
// scaleFactor is used to convert Ether into bonds and vice-versa: they're of different | |
// orders of magnitude, hence the need to bridge between the two. | |
uint256 constant scaleFactor = 0x10000000000000000; | |
int constant crr_n = 1; | |
int constant crr_d = 2; | |
int constant public price_coeff = -0x1337FA66607BADA55; |
This file contains hidden or 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
pragma solidity ^ 0.5.1; | |
contract ColorToken{ | |
BondContract public bondContract; | |
ResolveContract public resolveContract; | |
address lastGateway; | |
address communityResolve; | |
address THIS = address(this); | |
string public name = "Color Token"; | |
string public symbol = "RGB"; |
This file contains hidden or 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
pragma solidity ^ 0.5.1; | |
contract ColorToken{ | |
BondContract public bondContract; | |
ResolveContract public resolveContract; | |
address lastGateway; | |
address communityResolve; | |
string public name = "Color Token"; | |
string public symbol = "RGB"; | |
uint8 constant public decimals = 18; |