I hereby claim:
- I am jbradach on github.
- I am bradach (https://keybase.io/bradach) on keybase.
- I have a public key whose fingerprint is 5476 E59A F97E 56EE 461C B57F 0670 FA2B A3EC FD49
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
### Keybase proof | |
I hereby claim: | |
* I am jbradach on github. | |
* I am bradach (https://keybase.io/bradach) on keybase. | |
* I have a public key whose fingerprint is 5476 E59A F97E 56EE 461C B57F 0670 FA2B A3EC FD49 | |
To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
did:3:bafyreif6fkr2gj22mmuo4fwiqdeioum5ilniy5hn4ty2s3bzghwuqoibla |
{ | |
"name": "Solidarity Pool for Social Justice", | |
"description": "Single pool operator for Cardano decentralization. Social justice projects receive 25% of our node operator fees. We also reinvest 25% back into the pool pledge. ", | |
"ticker": "SOLID", | |
"homepage": "https://solidarity.finance", | |
"extended": "https://raw.githubusercontent.com/SolidarityDeFi/SolidarityPool/master/extended.json" | |
} |
{ | |
"name": "TestPool", | |
"description": "Test.", | |
"ticker": "TEST", | |
"homepage": "https://test.finance" | |
} |
{ | |
"info": { | |
"url_png_icon_64x64": "https://solidarityfinance.github.io/SolidarityPool/solidarity-64x.png", | |
"url_png_logo": "https://github.com/SolidarityFinance/SolidarityPool/blob/main/solidarity-finance-logo.png?raw=true", | |
"location": "Ohio, USA", | |
"social": { | |
"twitter_handle": "SolidarityDeFi", | |
"telegram_handle": "solidaritydefi", | |
"facebook_handle": "", |
did:3:bafyreif6fkr2gj22mmuo4fwiqdeioum5ilniy5hn4ty2s3bzghwuqoibla |
{ | |
"id": "634dc6c03011232d2793954c965fecf6", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.7", | |
"solcLongVersion": "0.8.7+commit.e28d00a7", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/Greeter.sol": { | |
"content": "//SPDX-License-Identifier: Unlicense\npragma solidity ^0.8.0;\n\nimport \"hardhat/console.sol\";\n\n\ncontract Greeter {\n string greeting;\n\n constructor(string memory _greeting) {\n console.log(\"Deploying a Greeter with greeting:\", _greeting);\n greeting = _greeting;\n }\n\n function greet() public view returns (string memory) {\n return greeting;\n }\n\n function setGreeting(string memory _greeting) public {\n console.log(\"Changing greeting from '%s' to '%s'\", greeting, _greeting);\n greeting = _greeting;\n }\n}\n" |