Monitor your Helium miners' uptime and get notified when they go down!
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
This website aggregates blockchain data from these blockchains:
- Binance Smart Chain
- Ethereum Chain
- Goerli
- Kovan
- Rinkeby
- Ropsten
into a single API endpoint and API key, mitigating the need to generate multiple API keys from different providers.
To get a local copy up and running follow these simple example steps.
- Clone the repository
https://github.com/pippinmole/GetChain.git
- Restore packages
dotnet restore
- Set up user secrets
dotnet user-secrets init dotnet user-secrets set "ApiKeys:BscScanKey" "" dotnet user-secrets set "ApiKeys:EtherScanKey" "" dotnet user-secrets set "ApiKeys:GoerliKey" "" dotnet user-secrets set "ApiKeys:KovanKey" "" dotnet user-secrets set "ApiKeys:RinkebyKey" "" dotnet user-secrets set "ApiKeys:RopstenKey" "" dotnet user-secrets set "ConnectionStrings:DatabaseConnectionString" "<Get this from your MongoDB dashboard>" dotnet user-secrets set "Jwt:Issuer" "" dotnet user-secrets set "Jwt:Secret" "" dotnet user-secrets set "MailSenderOptions:AddressFrom" "<The domain emails will come from>" dotnet user-secrets set "MailSenderOptions:Password" "<Get this from your MailGun dashboard>" dotnet user-secrets set "MailSenderOptions:Port" "<Get this from your MailGun dashboard>" dotnet user-secrets set "MailSenderOptions:SmtpHostAddress" "<Get this from your MailGun dashboard>" dotnet user-secrets set "Serilog:Datadog:ApiKey" "<Get this from your DataDog dashboard>"
- Build the solution
dotnet build
- Finally, run
dotnet run
Once you have executed dotnet run
, a website at https://localhost:7086/ will be available. This site allows you to:
- Create an account and sign in
- Generate multiple API keys
- Perform HTTP requests to the API using the API key as authentication
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
E-mail: jonathan.ruffles03@gmail.com
Project Link: https://github.com/pippinmole/GetChain