ubi icon indicating copy to clipboard operation
ubi copied to clipboard

Universal Basic Income token.

Results 2 ubi issues
Sort by recently updated
recently updated
newest added

instead of having: ``` mapping (address => uint256) private ubiBalance; (...) mapping(address => uint256) public accruedSince; ``` you can do this: ``` struct UbiAccount { uint224 balance; uint32 timestamp; }...

### Steps to reproduce Following the `readme.md` instrctions: 1. Clone Repository ```sh $ git clone https://github.com/DemocracyEarth/ubi.git $ cd ubi ``` 2. Install Dependencies ```sh $ npm install ``` 3. Run...