Skip to content

Commit 20e3721

Browse files
committed
update ticker and readme file
1 parent 9ac1a6a commit 20e3721

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

src/NubilaNetwork.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ pragma solidity ^0.8.20;
44
import "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
55

66
contract 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
}

0 commit comments

Comments
 (0)