Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jossduff on github.
  • I am jossduff (https://keybase.io/jossduff) on keybase.
  • I have a public key ASDhFnYoJeRzAv6U9QaOs3cT04MZVT8FJYz2B2LUqcIplQo

To claim this, I am signing this object:

@JossDuff
JossDuff / hyperfuel_query.py
Last active June 11, 2024 19:09
Comparison of hypersync and fuel graphql receipts at transaction 0x9d65154b185851dabe344f7b07afc8df45c9170a4ad66b0795fffade9336bea2
import hyperfuel
from hyperfuel import ReceiptField
import asyncio
async def main():
client = hyperfuel.HyperfuelClient()
tx_id = "0x9d65154b185851dabe344f7b07afc8df45c9170a4ad66b0795fffade9336bea2"
@JossDuff
JossDuff / jossToken.sol
Last active October 17, 2021 16:00
erc20 token jossToken designed to interact with my personal website jossduff.com
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/// @title
/// @author Joss Duff
/// @notice this is a personal project to set up a token for interacting with
/// and displaying messages on my website jossduff.com. jossToken isn't intended
/// to hold any monetary value. This is for fun.