Skip to content

Instantly share code, notes, and snippets.

View jbradach's full-sized avatar
🦦

James Bradach jbradach

🦦
View GitHub Profile
@jbradach
jbradach / contracts...artifacts...build-info...634dc6c03011232d2793954c965fecf6.json
Created July 1, 2022 20:46
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
This file has been truncated, but you can view the full file.
{
"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"
did:3:bafyreif6fkr2gj22mmuo4fwiqdeioum5ilniy5hn4ty2s3bzghwuqoibla
{
"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": "",
{
"name": "TestPool",
"description": "Test.",
"ticker": "TEST",
"homepage": "https://test.finance"
}
{
"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"
}
@jbradach
jbradach / gist:e5122d52dbc2c0f9aa25baa26fc916c2
Created February 16, 2021 18:25
Linking 3Box profile to my Github account
did:3:bafyreif6fkr2gj22mmuo4fwiqdeioum5ilniy5hn4ty2s3bzghwuqoibla

Keybase proof

I hereby claim:

  • I am jbradach on github.
  • I am bradach (https://keybase.io/bradach) on keybase.
  • I have a public key ASBeUujczT35R3FFcaYHslHiAySW5hxUo8q9xZR73HD_ZQo

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:

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:

@jbradach
jbradach / Nginx Config for WordPress Over SSL
Last active August 29, 2015 14:09
Nginx server block config for WordPress over SSL
# https://gist.github.com/jbradach/e0da911b02cd2c3fbd8b
server {
listen [::]:80;
listen 80;
server_name rudeotter.foo www.rudeotter.foo;
return 301 https://rudeotter.foo$request_uri;
}