Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anataliocs/etherscan-spheron-gov-create
https://github.com/anataliocs/etherscan-spheron-gov-create
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/anataliocs/etherscan-spheron-gov-create
- Owner: anataliocs
- License: mit
- Created: 2024-02-12T07:46:52.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-13T12:46:05.000Z (9 months ago)
- Last Synced: 2024-04-14T02:02:48.515Z (7 months ago)
- Language: TypeScript
- Size: 166 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About
Reference application demonstrating polling the Etherscan API for events emitted from a gov contract built with NestJS.
If you don't already have one, (Create a Spheron account )[https://app.spheron.network/#/signup]
Check out the [Spheron Browser Upload SDK docs](https://docs.spheron.network/sdk/browser/) for more info!
After creating an account, you need to create an [Etherscan Access Token](https://etherscan.com)
### SpheronDevsDAO Contract deployed on Sepolia
- Etherscan: https://sepolia.etherscan.io/address/0x3cb304483fa3d946ABe8dCa89e92760a112b6a59
- Deployed Address: 0x3cb304483fa3d946ABe8dCa89e92760a112b6a59
- Contract: https://github.com/anataliocs/dao-tutorial/blob/master/backend/contracts/SpheronDevsDAO.solThis contract emits a `DeployEvent` upon successful vote of a proposal. DAO members must have a `SpheronDevs NFT`
### SpheronDevsNFT Contract deployed on Sepolia
- Etherscan: https://sepolia.etherscan.io/address/0xa30AeCeFb798591EB422a841f85A88626CC41204
- Deployed Address: 0xa30AeCeFb798591EB422a841f85A88626CC41204
- Contract: https://github.com/anataliocs/nft-ipfs/blob/master/hardhat/contracts/SpheronDevs.solThis contract is a NFT that gates access to the `SpheronDevsDAO` for voting.
## Local Build(MacOS)
Install dependencies:
```
npm install
```Create your own env file:
```
cp .env.example .env
```Then add your Access token to your `.env` file:
```
SPHERON_ACCESS_TOKEN=
ETHERSCAN_API_TOKEN=
```Spin up local environment (hot reloading included):
_Port set to 3001_
```
# for nest app
npm run start:dev```
Example cURL to query endpoint locally:
```
curl --location 'localhost:3001/uploadToken/test-bucket'
```Build Docker Container for running locally on MacOS:
```
docker build --platform linux/arm64 -t nestjs-spheron-uploadtoken-server .
```## Spheron Build
Build Docker Container for running on a [Spheron Compute Cluster](https://docs.spheron.network/compute/)
```
docker build --platform linux/amd64 -t nestjs-spheron-uploadtoken-server .
```Push to DockerHub
```
docker tag nestjs-spheron-uploadtoken-serverlatest chrisaspheron/nestjs-spheron-uploadtoken-server:latest
docker push chrisaspheron/nestjs-spheron-uploadtoken-server:latest
```## Support
Contact [email protected] for questions!