DAPP代幣合約做市流程系統(tǒng)開發(fā)功能
2023-03-13 23:49 作者:V_kaifa873 | 我要投稿
//Contract to sell and distribute VEN tokens
contract VENSale is Owned{
///chart of stage transition
///deploy initialize startTime endTime finalize
///|<-earlyStageLasts->||<-closedStageLasts->|
///Created Initialized Early Normal Closed Finalized
enum Stage{
NotCreated,
Created,
Initialized,
Early,
Normal,
Closed,
Finalized
}功能及邏輯技術(shù)I59系統(tǒng)2O92開發(fā)9783
using SafeMath for uint256;
uint256 public constant totalSupply=(10**9)*(10**18);//1 billion VEN,decimals set to 18
uint256 constant privateSupply=totalSupply*9/100;//9%for private ICO?
標(biāo)簽: