├── .github └── workflows │ ├── main.yml │ ├── mumbai.yml │ └── pinata.yml ├── .gitignore ├── .mocharc.json ├── LICENSE ├── Mission2.md ├── README.md ├── contracts ├── Airdrop.sol ├── AuctionBidder.sol ├── AuctionHouse.sol ├── BidTokens.sol ├── DegenDog.sol ├── Dog.sol ├── DogsAuctionHouse.sol ├── ERC20PoolManager.sol ├── ERC721PoolManager.sol ├── PoolStreamer.sol ├── StakedToken.sol ├── Streamonomics.sol ├── base │ ├── ERC721.sol │ ├── ERC721Checkpointable.sol │ └── ERC721Enumerable.sol ├── external │ └── opensea │ │ └── IProxyRegistry.sol ├── governance │ ├── DegenDAOExecutor.sol │ ├── DegenDAOInterfaces.sol │ ├── DegenDAOLogicV1.sol │ └── DegenDAOProxy.sol ├── interfaces │ ├── IDogsAuctionHouse.sol │ ├── IDogsToken.sol │ ├── IERC721Drop.sol │ ├── IERC721GeneralMint.sol │ ├── IInflator.sol │ ├── INounsArt.sol │ ├── INounsAuctionHouse.sol │ ├── INounsDescriptor.sol │ ├── INounsDescriptorMinimal.sol │ ├── INounsDescriptorV2.sol │ ├── INounsSeeder.sol │ ├── INounsToken.sol │ ├── ISVGRenderer.sol │ ├── ISwapper.sol │ ├── IUniswapV3Pool.sol │ ├── IUniswapV3SwapCallback.sol │ └── IWETH.sol ├── libs │ ├── Inflate.sol │ ├── MultiPartRLEToSVG.sol │ ├── NFTDescriptor.sol │ ├── NFTDescriptorV2.sol │ └── SSTORE2.sol └── mocks │ └── idleWETH.sol ├── dapp ├── contract.json ├── css │ ├── bs.css │ ├── bulky-pixels.regular.ttf │ └── styles.css ├── img │ ├── 0.png │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 14canvas.png │ ├── 15.png │ ├── 16.png │ ├── 16canvas.png │ ├── 17.png │ ├── 18.png │ ├── 192x192.png │ ├── 2.png │ ├── 20canvas.png │ ├── 21canvas.png │ ├── 256x256.png │ ├── 26canvas.png │ ├── 27canvas.png │ ├── 28canvas.png │ ├── 29canvas.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 512x512.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── BSCT.png │ ├── BSCTcanvas.png │ ├── IDLE.svg │ ├── WETH.svg │ ├── Waldocanvas.png │ ├── add-idlewethx-to-metamask.png │ ├── add-to-metamask.png │ ├── cdai.png │ ├── claim-streeam.png │ ├── degen-dogs-animated.gif │ ├── degen-dogs-card-canvas.gif │ ├── degen-dogs-card.gif │ ├── dog-pi.png │ ├── dog336.png │ ├── gm-dogs.png │ ├── idleWETH.png │ ├── idleWETH.svg │ ├── idleWETH3.svg │ ├── sf-console.gif │ ├── slide1.png │ ├── slide2.png │ ├── slide3.png │ ├── stream-to-dog.gif │ ├── ukraine-dog-canvas.png │ ├── woof-bw.png │ ├── woof-chart-bw.png │ ├── woof-chart.png │ ├── woof-coin-sq.png │ ├── woof-wide.png │ └── woof.png ├── index.html ├── js │ ├── abis.js │ └── dapp.js ├── manifest.json ├── meta-old │ ├── 0 │ ├── 1 │ ├── 2 │ ├── 3 │ ├── 4 │ ├── 5 │ ├── 6 │ ├── 7 │ ├── 8 │ ├── 9 │ ├── 10 │ ├── 11 │ ├── 12 │ ├── 13 │ ├── 14 │ ├── 15 │ ├── 16 │ ├── 17 │ └── 18 └── static │ └── fonts │ └── Londrina_Solid │ ├── LondrinaSolid-Black.ttf │ ├── LondrinaSolid-Light.ttf │ ├── LondrinaSolid-Regular.ttf │ ├── LondrinaSolid-Thin.ttf │ └── OFL.txt ├── hardhat.config.js ├── package.json ├── scripts ├── auction.js ├── bid.js ├── deploy.js ├── deploy2.js ├── gov.js └── mint.js ├── server └── index.js └── test ├── airdrop.js ├── bidder.js ├── contracts.js ├── depart.js └── deploy-token.js /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/mumbai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/.github/workflows/mumbai.yml -------------------------------------------------------------------------------- /.github/workflows/pinata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/.github/workflows/pinata.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/.mocharc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/LICENSE -------------------------------------------------------------------------------- /Mission2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/Mission2.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Airdrop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/Airdrop.sol -------------------------------------------------------------------------------- /contracts/AuctionBidder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/AuctionBidder.sol -------------------------------------------------------------------------------- /contracts/AuctionHouse.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/AuctionHouse.sol -------------------------------------------------------------------------------- /contracts/BidTokens.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/BidTokens.sol -------------------------------------------------------------------------------- /contracts/DegenDog.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/DegenDog.sol -------------------------------------------------------------------------------- /contracts/Dog.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/Dog.sol -------------------------------------------------------------------------------- /contracts/DogsAuctionHouse.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/DogsAuctionHouse.sol -------------------------------------------------------------------------------- /contracts/ERC20PoolManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/ERC20PoolManager.sol -------------------------------------------------------------------------------- /contracts/ERC721PoolManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/ERC721PoolManager.sol -------------------------------------------------------------------------------- /contracts/PoolStreamer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/PoolStreamer.sol -------------------------------------------------------------------------------- /contracts/StakedToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/StakedToken.sol -------------------------------------------------------------------------------- /contracts/Streamonomics.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/Streamonomics.sol -------------------------------------------------------------------------------- /contracts/base/ERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/base/ERC721.sol -------------------------------------------------------------------------------- /contracts/base/ERC721Checkpointable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/base/ERC721Checkpointable.sol -------------------------------------------------------------------------------- /contracts/base/ERC721Enumerable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/base/ERC721Enumerable.sol -------------------------------------------------------------------------------- /contracts/external/opensea/IProxyRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/external/opensea/IProxyRegistry.sol -------------------------------------------------------------------------------- /contracts/governance/DegenDAOExecutor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/governance/DegenDAOExecutor.sol -------------------------------------------------------------------------------- /contracts/governance/DegenDAOInterfaces.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/governance/DegenDAOInterfaces.sol -------------------------------------------------------------------------------- /contracts/governance/DegenDAOLogicV1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/governance/DegenDAOLogicV1.sol -------------------------------------------------------------------------------- /contracts/governance/DegenDAOProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/governance/DegenDAOProxy.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDogsAuctionHouse.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/IDogsAuctionHouse.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDogsToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/IDogsToken.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC721Drop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/IERC721Drop.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC721GeneralMint.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/IERC721GeneralMint.sol -------------------------------------------------------------------------------- /contracts/interfaces/IInflator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/IInflator.sol -------------------------------------------------------------------------------- /contracts/interfaces/INounsArt.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/INounsArt.sol -------------------------------------------------------------------------------- /contracts/interfaces/INounsAuctionHouse.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/INounsAuctionHouse.sol -------------------------------------------------------------------------------- /contracts/interfaces/INounsDescriptor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/INounsDescriptor.sol -------------------------------------------------------------------------------- /contracts/interfaces/INounsDescriptorMinimal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/INounsDescriptorMinimal.sol -------------------------------------------------------------------------------- /contracts/interfaces/INounsDescriptorV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/INounsDescriptorV2.sol -------------------------------------------------------------------------------- /contracts/interfaces/INounsSeeder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/INounsSeeder.sol -------------------------------------------------------------------------------- /contracts/interfaces/INounsToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/INounsToken.sol -------------------------------------------------------------------------------- /contracts/interfaces/ISVGRenderer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/ISVGRenderer.sol -------------------------------------------------------------------------------- /contracts/interfaces/ISwapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/ISwapper.sol -------------------------------------------------------------------------------- /contracts/interfaces/IUniswapV3Pool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/IUniswapV3Pool.sol -------------------------------------------------------------------------------- /contracts/interfaces/IUniswapV3SwapCallback.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/IUniswapV3SwapCallback.sol -------------------------------------------------------------------------------- /contracts/interfaces/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/interfaces/IWETH.sol -------------------------------------------------------------------------------- /contracts/libs/Inflate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/libs/Inflate.sol -------------------------------------------------------------------------------- /contracts/libs/MultiPartRLEToSVG.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/libs/MultiPartRLEToSVG.sol -------------------------------------------------------------------------------- /contracts/libs/NFTDescriptor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/libs/NFTDescriptor.sol -------------------------------------------------------------------------------- /contracts/libs/NFTDescriptorV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/libs/NFTDescriptorV2.sol -------------------------------------------------------------------------------- /contracts/libs/SSTORE2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/libs/SSTORE2.sol -------------------------------------------------------------------------------- /contracts/mocks/idleWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/contracts/mocks/idleWETH.sol -------------------------------------------------------------------------------- /dapp/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/contract.json -------------------------------------------------------------------------------- /dapp/css/bs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/css/bs.css -------------------------------------------------------------------------------- /dapp/css/bulky-pixels.regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/css/bulky-pixels.regular.ttf -------------------------------------------------------------------------------- /dapp/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/css/styles.css -------------------------------------------------------------------------------- /dapp/img/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/0.png -------------------------------------------------------------------------------- /dapp/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/1.png -------------------------------------------------------------------------------- /dapp/img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/10.png -------------------------------------------------------------------------------- /dapp/img/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/11.png -------------------------------------------------------------------------------- /dapp/img/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/12.png -------------------------------------------------------------------------------- /dapp/img/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/13.png -------------------------------------------------------------------------------- /dapp/img/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/14.png -------------------------------------------------------------------------------- /dapp/img/14canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/14canvas.png -------------------------------------------------------------------------------- /dapp/img/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/15.png -------------------------------------------------------------------------------- /dapp/img/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/16.png -------------------------------------------------------------------------------- /dapp/img/16canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/16canvas.png -------------------------------------------------------------------------------- /dapp/img/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/17.png -------------------------------------------------------------------------------- /dapp/img/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/18.png -------------------------------------------------------------------------------- /dapp/img/192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/192x192.png -------------------------------------------------------------------------------- /dapp/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/2.png -------------------------------------------------------------------------------- /dapp/img/20canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/20canvas.png -------------------------------------------------------------------------------- /dapp/img/21canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/21canvas.png -------------------------------------------------------------------------------- /dapp/img/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/256x256.png -------------------------------------------------------------------------------- /dapp/img/26canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/26canvas.png -------------------------------------------------------------------------------- /dapp/img/27canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/27canvas.png -------------------------------------------------------------------------------- /dapp/img/28canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/28canvas.png -------------------------------------------------------------------------------- /dapp/img/29canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/29canvas.png -------------------------------------------------------------------------------- /dapp/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/3.png -------------------------------------------------------------------------------- /dapp/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/4.png -------------------------------------------------------------------------------- /dapp/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/5.png -------------------------------------------------------------------------------- /dapp/img/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/512x512.png -------------------------------------------------------------------------------- /dapp/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/6.png -------------------------------------------------------------------------------- /dapp/img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/7.png -------------------------------------------------------------------------------- /dapp/img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/8.png -------------------------------------------------------------------------------- /dapp/img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/9.png -------------------------------------------------------------------------------- /dapp/img/BSCT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/BSCT.png -------------------------------------------------------------------------------- /dapp/img/BSCTcanvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/BSCTcanvas.png -------------------------------------------------------------------------------- /dapp/img/IDLE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/IDLE.svg -------------------------------------------------------------------------------- /dapp/img/WETH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/WETH.svg -------------------------------------------------------------------------------- /dapp/img/Waldocanvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/Waldocanvas.png -------------------------------------------------------------------------------- /dapp/img/add-idlewethx-to-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/add-idlewethx-to-metamask.png -------------------------------------------------------------------------------- /dapp/img/add-to-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/add-to-metamask.png -------------------------------------------------------------------------------- /dapp/img/cdai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/cdai.png -------------------------------------------------------------------------------- /dapp/img/claim-streeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/claim-streeam.png -------------------------------------------------------------------------------- /dapp/img/degen-dogs-animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/degen-dogs-animated.gif -------------------------------------------------------------------------------- /dapp/img/degen-dogs-card-canvas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/degen-dogs-card-canvas.gif -------------------------------------------------------------------------------- /dapp/img/degen-dogs-card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/degen-dogs-card.gif -------------------------------------------------------------------------------- /dapp/img/dog-pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/dog-pi.png -------------------------------------------------------------------------------- /dapp/img/dog336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/dog336.png -------------------------------------------------------------------------------- /dapp/img/gm-dogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/gm-dogs.png -------------------------------------------------------------------------------- /dapp/img/idleWETH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/idleWETH.png -------------------------------------------------------------------------------- /dapp/img/idleWETH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/idleWETH.svg -------------------------------------------------------------------------------- /dapp/img/idleWETH3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/idleWETH3.svg -------------------------------------------------------------------------------- /dapp/img/sf-console.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/sf-console.gif -------------------------------------------------------------------------------- /dapp/img/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/slide1.png -------------------------------------------------------------------------------- /dapp/img/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/slide2.png -------------------------------------------------------------------------------- /dapp/img/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/slide3.png -------------------------------------------------------------------------------- /dapp/img/stream-to-dog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/stream-to-dog.gif -------------------------------------------------------------------------------- /dapp/img/ukraine-dog-canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/ukraine-dog-canvas.png -------------------------------------------------------------------------------- /dapp/img/woof-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/woof-bw.png -------------------------------------------------------------------------------- /dapp/img/woof-chart-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/woof-chart-bw.png -------------------------------------------------------------------------------- /dapp/img/woof-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/woof-chart.png -------------------------------------------------------------------------------- /dapp/img/woof-coin-sq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/woof-coin-sq.png -------------------------------------------------------------------------------- /dapp/img/woof-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/woof-wide.png -------------------------------------------------------------------------------- /dapp/img/woof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/img/woof.png -------------------------------------------------------------------------------- /dapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/index.html -------------------------------------------------------------------------------- /dapp/js/abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/js/abis.js -------------------------------------------------------------------------------- /dapp/js/dapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/js/dapp.js -------------------------------------------------------------------------------- /dapp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/manifest.json -------------------------------------------------------------------------------- /dapp/meta-old/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/0 -------------------------------------------------------------------------------- /dapp/meta-old/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/1 -------------------------------------------------------------------------------- /dapp/meta-old/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/10 -------------------------------------------------------------------------------- /dapp/meta-old/11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/11 -------------------------------------------------------------------------------- /dapp/meta-old/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/12 -------------------------------------------------------------------------------- /dapp/meta-old/13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/13 -------------------------------------------------------------------------------- /dapp/meta-old/14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/14 -------------------------------------------------------------------------------- /dapp/meta-old/15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/15 -------------------------------------------------------------------------------- /dapp/meta-old/16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/16 -------------------------------------------------------------------------------- /dapp/meta-old/17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/17 -------------------------------------------------------------------------------- /dapp/meta-old/18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/18 -------------------------------------------------------------------------------- /dapp/meta-old/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/2 -------------------------------------------------------------------------------- /dapp/meta-old/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/3 -------------------------------------------------------------------------------- /dapp/meta-old/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/4 -------------------------------------------------------------------------------- /dapp/meta-old/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/5 -------------------------------------------------------------------------------- /dapp/meta-old/6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/6 -------------------------------------------------------------------------------- /dapp/meta-old/7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/7 -------------------------------------------------------------------------------- /dapp/meta-old/8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/8 -------------------------------------------------------------------------------- /dapp/meta-old/9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/meta-old/9 -------------------------------------------------------------------------------- /dapp/static/fonts/Londrina_Solid/LondrinaSolid-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/static/fonts/Londrina_Solid/LondrinaSolid-Black.ttf -------------------------------------------------------------------------------- /dapp/static/fonts/Londrina_Solid/LondrinaSolid-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/static/fonts/Londrina_Solid/LondrinaSolid-Light.ttf -------------------------------------------------------------------------------- /dapp/static/fonts/Londrina_Solid/LondrinaSolid-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/static/fonts/Londrina_Solid/LondrinaSolid-Regular.ttf -------------------------------------------------------------------------------- /dapp/static/fonts/Londrina_Solid/LondrinaSolid-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/static/fonts/Londrina_Solid/LondrinaSolid-Thin.ttf -------------------------------------------------------------------------------- /dapp/static/fonts/Londrina_Solid/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/dapp/static/fonts/Londrina_Solid/OFL.txt -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/package.json -------------------------------------------------------------------------------- /scripts/auction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/scripts/auction.js -------------------------------------------------------------------------------- /scripts/bid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/scripts/bid.js -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /scripts/deploy2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/scripts/deploy2.js -------------------------------------------------------------------------------- /scripts/gov.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/scripts/gov.js -------------------------------------------------------------------------------- /scripts/mint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/scripts/mint.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/server/index.js -------------------------------------------------------------------------------- /test/airdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/test/airdrop.js -------------------------------------------------------------------------------- /test/bidder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/test/bidder.js -------------------------------------------------------------------------------- /test/contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/test/contracts.js -------------------------------------------------------------------------------- /test/depart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/test/depart.js -------------------------------------------------------------------------------- /test/deploy-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markcarey/degendogs/HEAD/test/deploy-token.js --------------------------------------------------------------------------------