├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .parcelrc ├── .postcss.config.js ├── .prettierignore ├── .prettierrc ├── .sassrc.js ├── LICENSE ├── README.md ├── package.json ├── src ├── .DS_Store ├── App.less ├── App.org.js ├── App.test.js ├── App.tsx ├── Boarding │ └── CollectionCapture.tsx ├── DirectMessage │ └── DirectMessage.tsx ├── Featured │ └── Featured.tsx ├── Header │ └── Header.tsx ├── Identity │ ├── BulkBurnClose.tsx │ ├── BulkSend.tsx │ ├── BurnNFT.tsx │ ├── CloseAccount.tsx │ ├── GovernanceEmbed.tsx │ ├── Identity.tsx │ └── plugins │ │ ├── BuyDomain.tsx │ │ ├── Delegation.tsx │ │ ├── Governance.tsx │ │ ├── GovernanceDetails.tsx │ │ ├── IntegratedSwap.tsx │ │ ├── Lending.tsx │ │ ├── ModalSwap.tsx │ │ ├── Staking.tsx │ │ ├── Storage.tsx │ │ ├── StreamingPayments.tsx │ │ ├── Transactions.tsx │ │ ├── TransferDomain.tsx │ │ └── squads │ │ ├── MsRow.tsx │ │ ├── TxGrid.tsx │ │ └── index.tsx ├── Leaderboard │ └── Leaderboard.txt ├── MyCollections │ ├── ApprovedTable.tsx │ ├── MyCollections.tsx │ └── PendingTable.tsx ├── NotificationsTest │ └── NotificationsTest.txt ├── Preview │ ├── HistoryView.tsx │ ├── ItemOffers.tsx │ ├── LoanView.tsx │ ├── Preview.tsx │ ├── Social.tsx │ └── TokenSwap.tsx ├── Profile │ ├── CurationView.tsx │ ├── FeedView.tsx │ ├── GalleryGroupItem.tsx │ ├── GalleryItem.tsx │ ├── GalleryView.tsx │ ├── InboxView.tsx │ ├── MarketplaceView.tsx │ ├── OffersView.tsx │ ├── Profile.tsx │ └── SocialView.tsx ├── Splash │ ├── GlobalView.tsx │ └── Splash.tsx ├── StoreFront │ ├── Activity.tsx │ ├── BackedToken.tsx │ ├── BackedTokenSwap.tsx │ ├── Countdown.tsx │ ├── Governance.tsx │ ├── Holders.tsx │ ├── ListForCollection.tsx │ ├── Members.tsx │ ├── PreviewDialog.tsx │ ├── Send.tsx │ ├── SocialMedia.tsx │ ├── StoreFront.tsx │ ├── StrataSwap.tsx │ ├── Swap.tsx │ ├── Token.tsx │ └── TokenHolders.tsx ├── browser.js ├── components │ └── static │ │ ├── DiscordIcon.tsx │ │ ├── GrapeIcon.tsx │ │ ├── SolCurrencyIcon.tsx │ │ └── SolIcon.tsx ├── dialect.css ├── gql_client.ts ├── grape_font │ ├── Gilroy-ExtraBold.otf │ ├── Gilroy-ExtraBold.ttf │ ├── Gilroy-Light.otf │ └── Gilroy-Light.ttf ├── hooks │ └── useSquads.tsx ├── i18n.js ├── imported.js ├── index.css ├── index.html ├── index.js ├── index.tsx ├── public │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── grape_logo.svg │ ├── grape_white_logo.svg │ ├── grapedex.png │ ├── grapedex_org.png │ ├── grapedex_share.png │ ├── locales │ │ ├── en │ │ │ └── translation.json │ │ └── es │ │ │ └── translation.json │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── solana4ukraine.png ├── react-app-env.d.ts ├── reportWebVitals.js ├── setupTests.js └── utils │ ├── .DS_Store │ ├── auctionHouse │ ├── acceptOffer.ts │ ├── buyNowListing.ts │ ├── cancelListing.ts │ ├── cancelOffer.ts │ ├── cancelWithdrawOffer.ts │ ├── createDAOProposal.ts │ ├── createProposal.ts │ ├── depositInGrapeVine.ts │ ├── gah_acceptOffer.ts │ ├── gah_cancelListing.ts │ ├── gah_cancelListingReceipt.ts │ ├── gah_cancelOffer.ts │ ├── gah_makeListing.ts │ ├── gah_makeOffer.ts │ ├── gah_sellListing.ts │ ├── helpers │ │ ├── accounts.ts │ │ ├── constants.ts │ │ ├── helpers.ts │ │ ├── instructions.ts │ │ ├── schema.ts │ │ ├── transactions.ts │ │ ├── types.ts │ │ └── various.ts │ ├── sellNowListing.ts │ ├── submitOffer.ts │ ├── tsconfig.json.txt │ ├── types.ts │ ├── voteListing.ts │ ├── voteOffer.ts │ ├── voteSell.ts │ └── withdrawOffer.ts │ ├── cache.tsx │ ├── cardinal │ └── helpers.tsx │ ├── config │ └── theme.tsx │ ├── cyberConnect │ ├── helper.ts │ ├── query.ts │ ├── types.ts │ └── web3Context.tsx │ ├── governanceTools │ ├── components │ │ └── instructions │ │ │ ├── account.tsx │ │ │ ├── createVote.ts │ │ │ └── tools.tsx │ ├── connection.ts │ ├── core │ │ ├── pubkey.ts │ │ ├── script.ts │ │ └── strings.ts │ ├── getAccountsByFilter.ts │ ├── getVoteRecords.ts │ ├── helpers.ts │ ├── models │ │ ├── api.ts │ │ ├── registry │ │ │ └── api.ts │ │ └── types.ts │ ├── proposalCreationTypes.ts │ ├── realms │ │ ├── devnet.json │ │ └── mainnet-beta.json │ ├── sdk │ │ └── accounts.ts │ ├── send.tsx │ ├── sendTransactions.tsx │ ├── services │ │ └── token.tsx │ ├── tokens.tsx │ ├── types │ │ └── types.ts │ └── useWalletStore.tsx │ ├── grapeTools │ ├── Explorer.tsx │ ├── GetEscrowName.tsx │ ├── PretifyCommaNumber.tsx │ ├── RegexTextField.jsx │ ├── ShareUrl.tsx │ ├── WalletAddress.tsx │ ├── constants.ts │ ├── github.ts │ ├── helpers.ts │ ├── mintverification.ts │ ├── safe-math.ts │ ├── strataHelpers.tsx │ └── utils.ts │ ├── name-service.tsx │ ├── ui-contants.ts │ ├── walletNotifications │ └── walletNotifications.tsx │ └── web3 │ ├── jabber.tsx.txt │ ├── name-auctioning.tsx │ ├── name-service.tsx │ ├── naming.tsx │ └── program-address.tsx ├── tailwind.config.js ├── tsconfig.json ├── vercel.json ├── yarn.lock └── yarn.org.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .parcel-cache 2 | dist 3 | docs 4 | node_modules 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/.gitignore -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/.parcelrc -------------------------------------------------------------------------------- /.postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/.postcss.config.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .parcel-cache 2 | dist 3 | node_modules 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/.prettierrc -------------------------------------------------------------------------------- /.sassrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/.sassrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/App.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.org.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/App.org.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Boarding/CollectionCapture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Boarding/CollectionCapture.tsx -------------------------------------------------------------------------------- /src/DirectMessage/DirectMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/DirectMessage/DirectMessage.tsx -------------------------------------------------------------------------------- /src/Featured/Featured.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Featured/Featured.tsx -------------------------------------------------------------------------------- /src/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Header/Header.tsx -------------------------------------------------------------------------------- /src/Identity/BulkBurnClose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/BulkBurnClose.tsx -------------------------------------------------------------------------------- /src/Identity/BulkSend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/BulkSend.tsx -------------------------------------------------------------------------------- /src/Identity/BurnNFT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/BurnNFT.tsx -------------------------------------------------------------------------------- /src/Identity/CloseAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/CloseAccount.tsx -------------------------------------------------------------------------------- /src/Identity/GovernanceEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/GovernanceEmbed.tsx -------------------------------------------------------------------------------- /src/Identity/Identity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/Identity.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/BuyDomain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/BuyDomain.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/Delegation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/Delegation.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/Governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/Governance.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/GovernanceDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/GovernanceDetails.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/IntegratedSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/IntegratedSwap.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/Lending.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/Lending.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/ModalSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/ModalSwap.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/Staking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/Staking.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/Storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/Storage.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/StreamingPayments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/StreamingPayments.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/Transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/Transactions.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/TransferDomain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/TransferDomain.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/squads/MsRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/squads/MsRow.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/squads/TxGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/squads/TxGrid.tsx -------------------------------------------------------------------------------- /src/Identity/plugins/squads/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Identity/plugins/squads/index.tsx -------------------------------------------------------------------------------- /src/Leaderboard/Leaderboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Leaderboard/Leaderboard.txt -------------------------------------------------------------------------------- /src/MyCollections/ApprovedTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/MyCollections/ApprovedTable.tsx -------------------------------------------------------------------------------- /src/MyCollections/MyCollections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/MyCollections/MyCollections.tsx -------------------------------------------------------------------------------- /src/MyCollections/PendingTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/MyCollections/PendingTable.tsx -------------------------------------------------------------------------------- /src/NotificationsTest/NotificationsTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/NotificationsTest/NotificationsTest.txt -------------------------------------------------------------------------------- /src/Preview/HistoryView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Preview/HistoryView.tsx -------------------------------------------------------------------------------- /src/Preview/ItemOffers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Preview/ItemOffers.tsx -------------------------------------------------------------------------------- /src/Preview/LoanView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Preview/LoanView.tsx -------------------------------------------------------------------------------- /src/Preview/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Preview/Preview.tsx -------------------------------------------------------------------------------- /src/Preview/Social.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Preview/Social.tsx -------------------------------------------------------------------------------- /src/Preview/TokenSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Preview/TokenSwap.tsx -------------------------------------------------------------------------------- /src/Profile/CurationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/CurationView.tsx -------------------------------------------------------------------------------- /src/Profile/FeedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/FeedView.tsx -------------------------------------------------------------------------------- /src/Profile/GalleryGroupItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/GalleryGroupItem.tsx -------------------------------------------------------------------------------- /src/Profile/GalleryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/GalleryItem.tsx -------------------------------------------------------------------------------- /src/Profile/GalleryView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/GalleryView.tsx -------------------------------------------------------------------------------- /src/Profile/InboxView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/InboxView.tsx -------------------------------------------------------------------------------- /src/Profile/MarketplaceView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/MarketplaceView.tsx -------------------------------------------------------------------------------- /src/Profile/OffersView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/OffersView.tsx -------------------------------------------------------------------------------- /src/Profile/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/Profile.tsx -------------------------------------------------------------------------------- /src/Profile/SocialView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Profile/SocialView.tsx -------------------------------------------------------------------------------- /src/Splash/GlobalView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Splash/GlobalView.tsx -------------------------------------------------------------------------------- /src/Splash/Splash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/Splash/Splash.tsx -------------------------------------------------------------------------------- /src/StoreFront/Activity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/Activity.tsx -------------------------------------------------------------------------------- /src/StoreFront/BackedToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/BackedToken.tsx -------------------------------------------------------------------------------- /src/StoreFront/BackedTokenSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/BackedTokenSwap.tsx -------------------------------------------------------------------------------- /src/StoreFront/Countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/Countdown.tsx -------------------------------------------------------------------------------- /src/StoreFront/Governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/Governance.tsx -------------------------------------------------------------------------------- /src/StoreFront/Holders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/Holders.tsx -------------------------------------------------------------------------------- /src/StoreFront/ListForCollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/ListForCollection.tsx -------------------------------------------------------------------------------- /src/StoreFront/Members.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/Members.tsx -------------------------------------------------------------------------------- /src/StoreFront/PreviewDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/PreviewDialog.tsx -------------------------------------------------------------------------------- /src/StoreFront/Send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/Send.tsx -------------------------------------------------------------------------------- /src/StoreFront/SocialMedia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/SocialMedia.tsx -------------------------------------------------------------------------------- /src/StoreFront/StoreFront.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/StoreFront.tsx -------------------------------------------------------------------------------- /src/StoreFront/StrataSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/StrataSwap.tsx -------------------------------------------------------------------------------- /src/StoreFront/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/Swap.tsx -------------------------------------------------------------------------------- /src/StoreFront/Token.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/Token.tsx -------------------------------------------------------------------------------- /src/StoreFront/TokenHolders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/StoreFront/TokenHolders.tsx -------------------------------------------------------------------------------- /src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/browser.js -------------------------------------------------------------------------------- /src/components/static/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/components/static/DiscordIcon.tsx -------------------------------------------------------------------------------- /src/components/static/GrapeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/components/static/GrapeIcon.tsx -------------------------------------------------------------------------------- /src/components/static/SolCurrencyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/components/static/SolCurrencyIcon.tsx -------------------------------------------------------------------------------- /src/components/static/SolIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/components/static/SolIcon.tsx -------------------------------------------------------------------------------- /src/dialect.css: -------------------------------------------------------------------------------- 1 | @import 'npm:@dialectlabs/react-ui/lib/index.css' -------------------------------------------------------------------------------- /src/gql_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/gql_client.ts -------------------------------------------------------------------------------- /src/grape_font/Gilroy-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/grape_font/Gilroy-ExtraBold.otf -------------------------------------------------------------------------------- /src/grape_font/Gilroy-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/grape_font/Gilroy-ExtraBold.ttf -------------------------------------------------------------------------------- /src/grape_font/Gilroy-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/grape_font/Gilroy-Light.otf -------------------------------------------------------------------------------- /src/grape_font/Gilroy-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/grape_font/Gilroy-Light.ttf -------------------------------------------------------------------------------- /src/hooks/useSquads.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/hooks/useSquads.tsx -------------------------------------------------------------------------------- /src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/i18n.js -------------------------------------------------------------------------------- /src/imported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/imported.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/apple-touch-icon.png -------------------------------------------------------------------------------- /src/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/favicon-16x16.png -------------------------------------------------------------------------------- /src/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/favicon-32x32.png -------------------------------------------------------------------------------- /src/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/favicon.ico -------------------------------------------------------------------------------- /src/public/grape_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/grape_logo.svg -------------------------------------------------------------------------------- /src/public/grape_white_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/grape_white_logo.svg -------------------------------------------------------------------------------- /src/public/grapedex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/grapedex.png -------------------------------------------------------------------------------- /src/public/grapedex_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/grapedex_org.png -------------------------------------------------------------------------------- /src/public/grapedex_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/grapedex_share.png -------------------------------------------------------------------------------- /src/public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/locales/en/translation.json -------------------------------------------------------------------------------- /src/public/locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/locales/es/translation.json -------------------------------------------------------------------------------- /src/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/logo192.png -------------------------------------------------------------------------------- /src/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/logo512.png -------------------------------------------------------------------------------- /src/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/manifest.json -------------------------------------------------------------------------------- /src/public/solana4ukraine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/public/solana4ukraine.png -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/.DS_Store -------------------------------------------------------------------------------- /src/utils/auctionHouse/acceptOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/acceptOffer.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/buyNowListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/buyNowListing.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/cancelListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/cancelListing.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/cancelOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/cancelOffer.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/cancelWithdrawOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/cancelWithdrawOffer.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/createDAOProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/createDAOProposal.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/createProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/createProposal.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/depositInGrapeVine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/depositInGrapeVine.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/gah_acceptOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/gah_acceptOffer.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/gah_cancelListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/gah_cancelListing.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/gah_cancelListingReceipt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/gah_cancelListingReceipt.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/gah_cancelOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/gah_cancelOffer.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/gah_makeListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/gah_makeListing.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/gah_makeOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/gah_makeOffer.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/gah_sellListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/gah_sellListing.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/helpers/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/helpers/accounts.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/helpers/constants.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/helpers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/helpers/helpers.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/helpers/instructions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/helpers/instructions.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/helpers/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/helpers/schema.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/helpers/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/helpers/transactions.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/helpers/types.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/helpers/various.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/helpers/various.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/sellNowListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/sellNowListing.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/submitOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/submitOffer.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/tsconfig.json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/tsconfig.json.txt -------------------------------------------------------------------------------- /src/utils/auctionHouse/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/types.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/voteListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/voteListing.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/voteOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/voteOffer.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/voteSell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/voteSell.ts -------------------------------------------------------------------------------- /src/utils/auctionHouse/withdrawOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/auctionHouse/withdrawOffer.ts -------------------------------------------------------------------------------- /src/utils/cache.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/cache.tsx -------------------------------------------------------------------------------- /src/utils/cardinal/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/cardinal/helpers.tsx -------------------------------------------------------------------------------- /src/utils/config/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/config/theme.tsx -------------------------------------------------------------------------------- /src/utils/cyberConnect/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/cyberConnect/helper.ts -------------------------------------------------------------------------------- /src/utils/cyberConnect/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/cyberConnect/query.ts -------------------------------------------------------------------------------- /src/utils/cyberConnect/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/cyberConnect/types.ts -------------------------------------------------------------------------------- /src/utils/cyberConnect/web3Context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/cyberConnect/web3Context.tsx -------------------------------------------------------------------------------- /src/utils/governanceTools/components/instructions/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/components/instructions/account.tsx -------------------------------------------------------------------------------- /src/utils/governanceTools/components/instructions/createVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/components/instructions/createVote.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/components/instructions/tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/components/instructions/tools.tsx -------------------------------------------------------------------------------- /src/utils/governanceTools/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/connection.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/core/pubkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/core/pubkey.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/core/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/core/script.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/core/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/core/strings.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/getAccountsByFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/getAccountsByFilter.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/getVoteRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/getVoteRecords.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/helpers.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/models/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/models/api.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/models/registry/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/models/registry/api.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/models/types.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/proposalCreationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/proposalCreationTypes.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/realms/devnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/realms/devnet.json -------------------------------------------------------------------------------- /src/utils/governanceTools/realms/mainnet-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/realms/mainnet-beta.json -------------------------------------------------------------------------------- /src/utils/governanceTools/sdk/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/sdk/accounts.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/send.tsx -------------------------------------------------------------------------------- /src/utils/governanceTools/sendTransactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/sendTransactions.tsx -------------------------------------------------------------------------------- /src/utils/governanceTools/services/token.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/services/token.tsx -------------------------------------------------------------------------------- /src/utils/governanceTools/tokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/tokens.tsx -------------------------------------------------------------------------------- /src/utils/governanceTools/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/types/types.ts -------------------------------------------------------------------------------- /src/utils/governanceTools/useWalletStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/governanceTools/useWalletStore.tsx -------------------------------------------------------------------------------- /src/utils/grapeTools/Explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/Explorer.tsx -------------------------------------------------------------------------------- /src/utils/grapeTools/GetEscrowName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/GetEscrowName.tsx -------------------------------------------------------------------------------- /src/utils/grapeTools/PretifyCommaNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/PretifyCommaNumber.tsx -------------------------------------------------------------------------------- /src/utils/grapeTools/RegexTextField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/RegexTextField.jsx -------------------------------------------------------------------------------- /src/utils/grapeTools/ShareUrl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/ShareUrl.tsx -------------------------------------------------------------------------------- /src/utils/grapeTools/WalletAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/WalletAddress.tsx -------------------------------------------------------------------------------- /src/utils/grapeTools/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/constants.ts -------------------------------------------------------------------------------- /src/utils/grapeTools/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/github.ts -------------------------------------------------------------------------------- /src/utils/grapeTools/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/helpers.ts -------------------------------------------------------------------------------- /src/utils/grapeTools/mintverification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/mintverification.ts -------------------------------------------------------------------------------- /src/utils/grapeTools/safe-math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/safe-math.ts -------------------------------------------------------------------------------- /src/utils/grapeTools/strataHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/strataHelpers.tsx -------------------------------------------------------------------------------- /src/utils/grapeTools/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/grapeTools/utils.ts -------------------------------------------------------------------------------- /src/utils/name-service.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/name-service.tsx -------------------------------------------------------------------------------- /src/utils/ui-contants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/ui-contants.ts -------------------------------------------------------------------------------- /src/utils/walletNotifications/walletNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/walletNotifications/walletNotifications.tsx -------------------------------------------------------------------------------- /src/utils/web3/jabber.tsx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/web3/jabber.tsx.txt -------------------------------------------------------------------------------- /src/utils/web3/name-auctioning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/web3/name-auctioning.tsx -------------------------------------------------------------------------------- /src/utils/web3/name-service.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/web3/name-service.tsx -------------------------------------------------------------------------------- /src/utils/web3/naming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/web3/naming.tsx -------------------------------------------------------------------------------- /src/utils/web3/program-address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/src/utils/web3/program-address.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/yarn.lock -------------------------------------------------------------------------------- /yarn.org.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grape-Labs/grape-art/HEAD/yarn.org.lock --------------------------------------------------------------------------------