• Stars
    star
    116
  • Rank 303,894 (Top 6 %)
  • Language
    TypeScript
  • License
    GNU Affero Genera...
  • Created over 2 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Token-gated repositories via GitHub API.

GateRepo

About | Implementation | License

About

Simple implementation of ERC20 token-gating GitHub repositories.

Fueled by Mike's tweet.

Implementation

  1. Users login with GitHub OAuth, we store their access token to take actions on their behalf.
  2. Users can create new Gates for their repositories, specifying contract address, number of tokens needed, and number of invites to open. In the back-end, token name + decimals, and current latest block number is stored.
  3. Users can share links to Gates.
  4. Upon accessing a Gate invitation, users can sign-in with GitHub (again giving us their access token). Then, they connect their wallet and sign a message to verify ownership for our back-end.
  5. Finally, in /api/gates/access we run a multi-step process:
    1. Check that requesting user is authenticated
    2. Check that all parameters have been posted (address, signature, gated repo ID)
    3. Verify address ownership by matching address to signature
    4. Check if gated repo by ID exists
    5. Check if gated repo has available open invitations
    6. Check if address held necessary balance at block number
    7. Check if we have access token for requesting user
    8. Check if requesting user is not already a collaborator on private repo
    9. Check if we have access token for private repo owner
    10. Send invite from owner to requesting user to join private repo
    11. Accept invite from owner via requesting user to join private repo
    12. Increment number of used invites (decreasing available slots)

Build and run locally

# Collect repo
git clone https://github.com/anish-agnihotri/GateRepo
cd GateRepo

# Install dependencies
npm install

# Update environment variables
cp .env.sample .env
vim .env

# Run application
npm run dev

Environment variables

  1. NEXTAUTH_URL: Site link, http://localhost:3000 if developing locally, https://gaterepo.com for this deployed instance
  2. NEXTAUTH_SECRET: Any randomly generated string as a secret, e.g.: NpUFdWakhCjbuIIogCvj
  3. GITHUB_CLIENT_ID and GITHUB_CLIENT_SECRET: Follow the instructions here for spinning up a new GitHub OAuth application. When asked, the authorization callback URL is http://localhost:3000/api/auth/callback/github (local) or https://your_domain.com/api/auth/callback/github (deployed). Once setup, your OAuth applications Client ID is your GITHUB_CLIENT_ID and your Client Secret is your GITHUB_CLIENT_SECRET
  4. DATABASE_URL: Postgres database connection URL
  5. RPC_API: Any Ethereum Mainnet JSON-RPC endpoint

Limitations

  1. GitHub API has a rate-limit of sending a maximum of 50 invitations for a repository per 24 hour period.
  2. Application does not run a scheduled job to check continuing token ownership (to remove users who transfer their tokens). This is deferred to the user if desired functionality.
  3. Application currently only supports ERC20 tokens but is easily extensible to other token formats by updating the snapshot strategy in /pages/api/gates/access.ts.
  4. Allows a single address to verify token ownership on behalf of multiple GitHub users (not a one-to-one between GitHub users and addresses). Easily changeable should user require uniqueness by tracking address-to-gateId in database in /pages/api/gates/access.ts.
  5. GitHub OAuth scopes are fairly invasive (repo,read:user,user:email). If you are privacy-aware, I'd recommended running your own fork or migrating to an app-based system?

License

GNU Affero GPL v3.0

More Repositories

1

merkle-airdrop-starter

Frontend, contracts, and merkle tree generator for use in quickly scaffolding ERC20 token airdrops.
TypeScript
702
star
2

flashside

Long-tail MEV contracts to claim Otherside land NFTs
Solidity
567
star
3

pool-sniper

Uniswap V2-styled router new pool sniping in under 250 LOC.
TypeScript
434
star
4

MultiRaffle

NFT distribution with (1) randomized, multi-winner raffles and (2) bulk on-chain metadata generation.
Solidity
269
star
5

punk-nftx-meebit-arb

Quick & dirty NFTX arbitrage contracts, via flash loan, to exploit Meebit redemption.
Solidity
246
star
6

goblinmode

Long-tail NFT MEV via NFTX flashloans (McGoblinBurger NFTs)
Solidity
237
star
7

dhof-loot

Scripts to collect statistics about Loot + derivative projects.
JavaScript
228
star
8

MultiFaucet

MultiFaucet drips ETH, tokens, and NFTs across many testnet networks, at once.
TypeScript
166
star
9

tweetdrop

Generate dispersable airdrops from Twitter threads.
TypeScript
150
star
10

mevboost.org

Aggregates statistics about mev-boost relays and block builders
TypeScript
147
star
11

Hyperbitcoinization

$1 Million USDC vs 1 Wrapped Bitcoin 90-day term bet, inspired by Balaji's tweet
Solidity
119
star
12

partybid

PartyBid is a collector DAO that lets individuals pool capital, bid on Mirror's reserve auctions, and resell NFTs.
Solidity
119
star
13

quadratic-voting

Real-time Quadratic Voting dashboard to encourage mathematically optimal voting in democratic communities.
JavaScript
93
star
14

sushiswap-exploit

SushiSwap RouteProcessor2 exploit repro + supporting data useful for whitehats.
Solidity
84
star
15

flipper

Scrape ERC721 metadata, flip images, test creative permissiveness.
TypeScript
80
star
16

pawnft

NFT-collateralized lending primitive, via active auctions.
TypeScript
78
star
17

blog-effective-nft-launches-data

Data+code for NFT launch guide blogpost.
Jupyter Notebook
70
star
18

weve

A Weavemail client implementation—private, decentralized and open source mail, built on Arweave.
JavaScript
65
star
19

quadratic-funding

Quadratic Funding is the mathematically optimal way to fund public goods in a democratic community.
JavaScript
54
star
20

zora.gallery

Open protocols demand open access. Community-operated interface to the Zora Protocol.
JavaScript
51
star
21

waffle

NFT raffles via Chainlink VRF.
Solidity
46
star
22

lootloose.com

LootLoose lets you unbundle your Loot Bags into individual item NFTs or rebundle items into their original Loot Bags.
TypeScript
34
star
23

flashbots-connect-rpc

Website to enable users to add the Flashbots Protect RPC endpoint to MetaMask.
TypeScript
28
star
24

Just-Law

Legal document search engine to provide new insight into document representation and retrieval. Built with Java, JavaScript, SMMRY API + NLP.
HTML
23
star
25

tubby-cats-data

Statistics from Tubby Cats NFT minting
JavaScript
22
star
26

stat.farm

Stat.Farm is a @compound-finance dashboard and COMP governance token distribution calculator.
JavaScript
21
star
27

daochess.org

daochess pits governance systems against each other in real-time games of Chess, testing mechanisms and coordination.
JavaScript
21
star
28

uniswap-lp-nfts

Solidity -> JavaScript translation of Uniswap's NFTSVG library.
JavaScript
20
star
29

ens-lootbox

Bounty/Lootbox system for incentivizing donations of celebrity ENS names.
JavaScript
20
star
30

algosearch

Algorand (ALGO) Blockchain Explorer and Analytics platform.
JavaScript
14
star
31

lootrng.com

Community-operated website for the Loot project.
TypeScript
13
star
32

wineft

It's like Wine, but as a fungible token, and it ages.
JavaScript
12
star
33

purse-app

Open-source blockchain explorer and automatic wallet tracker built with React Native.
JavaScript
11
star
34

Encrypton

Trusted document sharing on a trustless ledger. Using IPFS + Ethereum.
JavaScript
11
star
35

filstats.com

Explore Filecoin's storage market and analyze the cost of storing your files.
JavaScript
10
star
36

Memory

Enter, track, cherish. Look back at your best moments with Memory. iOS-first mood tracker & diary app built using React Native, React Navigation, and Realm. 📦 Available on the iOS App Store!
JavaScript
9
star
37

ukraine-donation-roots

Merkle root of Ukraine donators
8
star
38

yield-liquidator

TypeScript
6
star
39

SignRecord

Publicly verifiable document records and credentialization platform backed by a distributed blockchain, de-centralized IPFS host, and with an outbound REST API.
JavaScript
5
star
40

comp.vote

JavaScript
5
star
41

arbitrage-uniswap

JavaScript
3
star
42

anish-agnihotri.github.io

Personal portfolio website. Updated before changes are pushed to deployed version.
HTML
3
star
43

venti

The hip browser-only Ethereum IDE and runtime environment.
JavaScript
3
star
44

solidity_playground

Just a quick and easy playground to store some solidity code that I've been practicing.
JavaScript
2
star
45

touchCoin

touchCoin was a development of a blockchain focused around ease of use, and increased block-times. By developing two GUI clients, one Command line interface, and one Android application, and a website we made it as easy as possible for the average user to use our technologies.
C++
2
star
46

anishagnihotri.com

TypeScript
1
star
47

cryptoeconomics

1
star
48

Gitcoin-Exemplars

Easy to copy formatting exemplars for running effective Gitcoin bounties.
1
star
49

dancefest-redo

JavaScript
1
star
50

UEscrow

UEscrow is a platform built for the UCash ERC-20 token at BlockHackTO 2018. It was built as being a simple, dynamic solution to easy escrow for transactions and cross+off-chain exchanges.
JavaScript
1
star
51

golearn

Go
1
star
52

Portfolio

Creative Agency portfolio template developed in HTML, SASS, and Javascript. Free to use under the MIT license for anyone as long as credit is provided to Anish Agnihotri.
CSS
1
star
53

patreaion

Decentralized subscriptions platform built on Aion.
Vue
1
star
54

toronto-waste-wizard

Simple web app to search the Toronto Waste Wizard database. Developed as a part of my application to the Shopify Summer 2019 Internship program.
CSS
1
star