Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oli8/soliv
Smart contract library
https://github.com/oli8/soliv
smart-contracts solidity
Last synced: 2 months ago
JSON representation
Smart contract library
- Host: GitHub
- URL: https://github.com/oli8/soliv
- Owner: Oli8
- License: mit
- Created: 2022-09-23T08:11:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-14T11:51:17.000Z (over 1 year ago)
- Last Synced: 2024-10-11T12:51:50.006Z (3 months ago)
- Topics: smart-contracts, solidity
- Language: Solidity
- Homepage:
- Size: 198 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# soliv
**Smart contract library**
## Installation
```console
$ npm install soliv
```## Usage
Once installed, you can use the contracts by importing them:
```solidity
pragma solidity ^0.8.18;import {TimeLock} "soliv/contracts/access/TimeLock.sol";
contract MyDapp is TimeLock {
constructor() TimeLock(3 days) {}
}
```## Contracts
### [Access](contracts/access/)
- [TimeLock](contracts/access/TimeLock.sol)
- [TimeLockGroups](contracts/access/TimeLockGroups.sol)## Security
This software is provided on an "as is" basis.\
We do not give any warranties and will not be liable for any loss incurred through any use of this codebase.## Donate
Any donation is greatly appreciated :heart:
| Source | Link / Address |
| :-------------- | :------------------------------------------|
| Github Sponsor | https://github.com/sponsors/Oli8 |
| PayPal | https://paypal.me/OliCrt |
| Bitcoin | 1Ez3Ts2WShUcbeGCjhZapdxVDK77DbYjdU |
| Ethereum | 0xc4364cafac87fd8085dc26af4a4a8c3bbad1bd3e |## Contribute
Contributions are welcome!\
Feel free to get in touch if you have any suggestions## License
Soliv is released under the [MIT License](LICENSE).