https://github.com/tegridydev/gonedao
GONEdao
https://github.com/tegridydev/gonedao
Last synced: about 2 months ago
JSON representation
GONEdao
- Host: GitHub
- URL: https://github.com/tegridydev/gonedao
- Owner: tegridydev
- Created: 2024-06-18T22:04:09.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-18T22:29:07.000Z (11 months ago)
- Last Synced: 2025-02-01T08:46:45.925Z (4 months ago)
- Language: TypeScript
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GONEDAO Balance Strategy
This strategy calculates the voting power based on the balance of GONE tokens on the Polygon network. Only addresses with a balance of 250,000 or more GONE tokens have voting power.
## Parameters
- **address**: The contract address of the GONE token.
- **symbol**: The symbol of the GONE token.
- **decimals**: The number of decimals used by the GONE token.Example:
```json
{
"address": "0x162539172b53E9a93b7d98Fb6c41682De558a320",
"symbol": "GONE",
"decimals": 18
}
```# GONEDAO NFT Balance Strategy
This strategy calculates the voting power based on the ownership of specific NFTs from the GONE ecosystem. Only addresses holding any of the specified NFTs have voting power.
## Parameters
- **contractAddresses**: An array of contract addresses of the NFTs.
- **symbol**: The symbol of the NFT collection.Example:
```json
{
"name": "Example query",
"strategy": {
"name": "polygon-gone-nft-balance",
"params": {
"contractAddresses": [
"0x93cD9297940d20761Ba4a3d17Eae3da6dc47992A"
],
"symbol": "GONERAT-PUNKS"
}
}
```