Mainnet contract: link
Testnet contract: link
The main idea of the ArtKDevSale contract is to sell ArtKDev ERC-20 tokens.
npm install
truffle run coverage
truffle dashboard
truffle migrate --network dashboard
ATTENTION! You can set a new token price only if you are an owner.
If you want to set a new token price for sale, you should use a changeTokenPrice() function.
function changeTokenPrice(uint256 _newPrice) external;
Testnet tx: link
ATTENTION! You can end a sale only if you are an owner.
If you want to end a token sale, you should use a endSale() function.
function endSale() external payable;
Testnet tx: link
ATTENTION! You can buy some tokens if contract has a concrete amount and if you provide enough value.
If you want to buy some tokens, you should use a buyTokens() function.
function buyTokens(uint256 _numberOfTokens) external payable;
Testnet tx: link
ArtKDev's contracts is released under the MIT License.