https://github.com/dev-protocol/dynamic-s-tokens-simple-tiers
https://github.com/dev-protocol/dynamic-s-tokens-simple-tiers
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dev-protocol/dynamic-s-tokens-simple-tiers
- Owner: dev-protocol
- License: mpl-2.0
- Created: 2022-06-05T00:49:53.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-04-01T21:58:51.000Z (7 days ago)
- Last Synced: 2026-04-02T09:28:59.904Z (6 days ago)
- Language: TypeScript
- Size: 415 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dynamic-s-tokens-simple-tiers
# Installation
```bash
yarn
```
# Verifying a deployed contracts
## For a contract with no constructor arguments
Run hardhat-etherscan
```bash
yarn hardhat verify --network
```
## For a contract with constructor arguments
1. Create an arguments declaration file
```js
// cat ./scripts/arguments.js
module.exports = [
'arguments 1',
'arguments 2',
'arguments 3',
...
]
```
2. Run hardhat-etherscan
```bash
yarn hardhat verify --network --contract : --constructor-args ./scripts/arguments.js
```