├── .gitignore ├── README.md ├── cloudFunctions.js ├── config-overrides.js ├── contracts ├── Marketplace.sol └── Monkeys.sol ├── migrations ├── 1_initial_migration.js ├── 2_monkey_migration.js └── 3_marketplace_migration.js ├── package.json ├── public ├── _redirects ├── favicon.ico ├── images │ └── monkeyIcon.png ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.jsx ├── App.test.js ├── Contracts.js ├── abi.js ├── components │ ├── Account │ │ ├── Account.jsx │ │ ├── WalletIcons │ │ │ ├── metamaskWallet.png │ │ │ └── wallet-connect.svg │ │ └── config.js │ ├── Activity │ │ └── Activity.jsx │ ├── Address │ │ └── Address.jsx │ ├── Feedback │ │ └── Feedback.jsx │ ├── Marketplace │ │ ├── Marketplace.jsx │ │ └── styles │ │ │ └── marketplace.css │ ├── MenuItems.jsx │ ├── Mint │ │ ├── Mint.jsx │ │ └── styles │ │ │ └── mint.css │ ├── MonkeyLogo.jsx │ ├── NFTCard │ │ ├── BuySellButtons.jsx │ │ ├── ModalActions.jsx │ │ ├── NFTCard.jsx │ │ └── styles │ │ │ └── nftcard.css │ ├── NativeBalance.jsx │ └── Wallet │ │ ├── Wallet.jsx │ │ └── styles │ │ └── wallet.css ├── helpers │ ├── formatters.js │ └── networks.js ├── hooks │ ├── useSpeedyProvider.jsx │ └── useTokenPrice.js ├── index.css ├── index.js ├── monkeyRanking.js ├── reportWebVitals.js ├── setupTests.js └── traitRarity.js ├── test └── .gitkeep ├── truffle-config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/README.md -------------------------------------------------------------------------------- /cloudFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/cloudFunctions.js -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/config-overrides.js -------------------------------------------------------------------------------- /contracts/Marketplace.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/contracts/Marketplace.sol -------------------------------------------------------------------------------- /contracts/Monkeys.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/contracts/Monkeys.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_monkey_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/migrations/2_monkey_migration.js -------------------------------------------------------------------------------- /migrations/3_marketplace_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/migrations/3_marketplace_migration.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/monkeyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/public/images/monkeyIcon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/Contracts.js -------------------------------------------------------------------------------- /src/abi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/abi.js -------------------------------------------------------------------------------- /src/components/Account/Account.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Account/Account.jsx -------------------------------------------------------------------------------- /src/components/Account/WalletIcons/metamaskWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Account/WalletIcons/metamaskWallet.png -------------------------------------------------------------------------------- /src/components/Account/WalletIcons/wallet-connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Account/WalletIcons/wallet-connect.svg -------------------------------------------------------------------------------- /src/components/Account/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Account/config.js -------------------------------------------------------------------------------- /src/components/Activity/Activity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Activity/Activity.jsx -------------------------------------------------------------------------------- /src/components/Address/Address.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Address/Address.jsx -------------------------------------------------------------------------------- /src/components/Feedback/Feedback.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Feedback/Feedback.jsx -------------------------------------------------------------------------------- /src/components/Marketplace/Marketplace.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Marketplace/Marketplace.jsx -------------------------------------------------------------------------------- /src/components/Marketplace/styles/marketplace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Marketplace/styles/marketplace.css -------------------------------------------------------------------------------- /src/components/MenuItems.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/MenuItems.jsx -------------------------------------------------------------------------------- /src/components/Mint/Mint.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Mint/Mint.jsx -------------------------------------------------------------------------------- /src/components/Mint/styles/mint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Mint/styles/mint.css -------------------------------------------------------------------------------- /src/components/MonkeyLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/MonkeyLogo.jsx -------------------------------------------------------------------------------- /src/components/NFTCard/BuySellButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/NFTCard/BuySellButtons.jsx -------------------------------------------------------------------------------- /src/components/NFTCard/ModalActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/NFTCard/ModalActions.jsx -------------------------------------------------------------------------------- /src/components/NFTCard/NFTCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/NFTCard/NFTCard.jsx -------------------------------------------------------------------------------- /src/components/NFTCard/styles/nftcard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/NFTCard/styles/nftcard.css -------------------------------------------------------------------------------- /src/components/NativeBalance.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/NativeBalance.jsx -------------------------------------------------------------------------------- /src/components/Wallet/Wallet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Wallet/Wallet.jsx -------------------------------------------------------------------------------- /src/components/Wallet/styles/wallet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/components/Wallet/styles/wallet.css -------------------------------------------------------------------------------- /src/helpers/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/helpers/formatters.js -------------------------------------------------------------------------------- /src/helpers/networks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/helpers/networks.js -------------------------------------------------------------------------------- /src/hooks/useSpeedyProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/hooks/useSpeedyProvider.jsx -------------------------------------------------------------------------------- /src/hooks/useTokenPrice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/hooks/useTokenPrice.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/index.js -------------------------------------------------------------------------------- /src/monkeyRanking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/monkeyRanking.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/traitRarity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/src/traitRarity.js -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/truffle-config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ty-Sir/avax-nft-monkeys/HEAD/yarn.lock --------------------------------------------------------------------------------