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
const DevCoinAbstraction = artifacts.require('DevCoin') | |
const ExchangeAbstraction = artifacts.require('Exchange') | |
const BigNumber = require('bignumber.js') | |
const expect = require('chai').expect | |
contract('Exchange', function (accounts) { | |
let tokenContract | |
let exchangeContract | |
const creatorAccount = accounts[0] | |
const userAccount = accounts[1] |
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
/** | |
* Smart contract enabling funding and exchanging of DevCoin. | |
* The rate is defined by the owner of the contract, but it will never be less than ICO price. | |
* The price of token in ETH is 1/rate. Eg for 1 Eth the sender will get rate number of tokens. | |
*/ | |
contract Exchange { | |
using SafeMath for uint256; | |
address public owner; | |
uint public creationTime = now; |