File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,9 @@ $ anvil
5050``` shell
5151$ TGE=$timestamp forge script script/NubilaNetwork.s.sol:NubilaNetworkScript --rpc-url < your_rpc_url> --private-key < your_private_key>
5252```
53+ * ` timestamp ` is the moment when tokens are officially distributed to public.
54+ * The beneficiaries are set to be the owner of VestingManager contract, which could be updated later.
55+ * Eventually, the ownership of the VestingManager contract should be transferred to a MultiSig wallet for security purpose.
5356
5457### Cast
5558
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ pragma solidity ^0.8.20;
44import "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol " ;
55
66contract NubilaNetwork is ERC20 {
7- constructor (address owner ) ERC20 ("Nubila Network " , "NUBI " ) {
8- require (owner != address (0 ), "owner address is zero " );
9- _mint (owner , 1_000_000_000 ether);
7+ constructor (address init ) ERC20 ("Nubila Network " , "NB " ) {
8+ require (init != address (0 ), "init address is zero " );
9+ _mint (init , 1_000_000_000 ether);
1010 }
1111}
You can’t perform that action at this time.
0 commit comments