This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Please stop using the OpenSea API to load all of my NFTs. | |
// It's getting terribly unwieldy the more NFTs I own, and | |
// I don't want to sift through a needle in a haystack to | |
// find the NFT I want to select for display etc. You're | |
// also contributing to the idea that NFTs are centralized, | |
// plus putting unnecessary load on OS servers. | |
// Most users though aren't technical enough to understand | |
// contract addresses and token IDs. So instead of asking | |
// for those directly, use an input like this where a user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Easily resolve addresses in a Google sheet to ENS names via @frolic's ENS resolution API - https://ensideas.com/about | |
// 1. In a Google sheet, select the menu item Extensions > Apps Script. | |
// 2. Replace the example code in the editor with the below function: | |
function LOOKUP_ENS(input) { | |
var endpoint = "https://api.ensideas.com/ens/resolve/" + input; | |
var response = UrlFetchApp.fetch(endpoint); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useAccount, useContractRead } from 'wagmi'; | |
import { abi, address as delegateCashAddress } from '~abis/delegateCash'; | |
import { env } from '~env/client.mjs'; | |
export function useDelegatedAccount() { | |
const { address, isConnected, ...account } = useAccount(); | |
const txConfig = { | |
address: delegateCashAddress, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A,111111010011111 | |
B,111111010101110 | |
C,111111000110001 | |
D,111111000101110 | |
E,111111010110101 | |
F,111111010010000 | |
G,011101010110010 | |
H,111110010011111 | |
I,100011111110001 | |
J,100111111110000 |
OlderNewer