├── .gitignore ├── README.md ├── TEMPLATE.md ├── go └── README.MD ├── javascript └── gasless-nft-drop │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── next.config.js │ ├── package.json │ ├── pages │ ├── _app.js │ └── index.js │ ├── public │ └── favicon.ico │ └── styles │ ├── Home.module.css │ └── globals.css ├── python ├── README.MD └── nft-django │ └── create_nft_with_django │ ├── .gitignore │ ├── create_nft_with_django │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── thirdweb_nft │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── nft_collection.py │ ├── static │ └── css │ │ └── thirdweb_nft.css │ ├── templates │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py └── typescript ├── README.md ├── add-connect-wallet ├── .eslintrc.json ├── .gitignore ├── README.md ├── components │ └── ConnectWallet.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── hello.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── vercel.svg └── tsconfig.json ├── auction-button-react ├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── pages │ ├── api │ │ └── hello.js │ └── index.js ├── public │ ├── favicon.ico │ └── vercel.svg └── styles │ ├── Home.module.css │ ├── globals.css │ └── styles.css ├── claim-button-react ├── .eslintrc.json ├── .gitignore ├── README.md ├── components │ └── ClaimButton.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── hello.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── vercel.svg └── tsconfig.json ├── create-a-pack-with-typescript-and-nextjs ├── .eslintrc.json ├── .gitignore ├── README.md ├── components │ ├── connect.tsx │ └── pack.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── pack.ts │ └── index.tsx ├── public │ ├── favicon.ico │ ├── thirdweb_logo.png │ └── vercel.svg ├── styles │ ├── Home.module.css │ └── globals.css └── tsconfig.json ├── dynamic pricing └── claim_condition │ ├── .eslintrc.json │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ ├── _app.tsx │ ├── all_claimed.tsx │ ├── api │ │ └── condition.tsx │ └── index.tsx │ ├── public │ ├── favicon.ico │ ├── pok.jpg │ └── thirdweb.svg │ ├── styles │ ├── globals.css │ └── mystyles.module.css │ └── tsconfig.json ├── dynamic-allowlist-edition ├── .env.example ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ ├── add-to-allowlist.ts │ │ ├── generate-mint-sig.ts │ │ └── set-minted.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── thirdweb.svg ├── styles │ ├── Home.module.css │ └── globals.css ├── tsconfig.json └── utils │ └── Airtable.ts ├── early-access-nft ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── scripts │ ├── createNft.ts │ ├── getContract.ts │ ├── nftConfig.ts │ └── tsconfig.json ├── src │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── components │ │ └── Nft.tsx │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── reportWebVitals.ts │ └── setupTests.ts └── tsconfig.json ├── free-first-mint ├── .env.example ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── generate-mint-sig.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── thirdweb.svg ├── tsconfig.json └── utils │ ├── Airtable.ts │ └── thirdweb.ts ├── gallery-example ├── .eslintrc.json ├── .gitignore ├── Home.module.css ├── LICENSE.md ├── README.md ├── _app.tsx ├── globals.css ├── index.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ └── index.tsx ├── public │ ├── favicon.ico │ └── thirdweb.svg ├── styles │ ├── Home.module.css │ └── globals.css └── tsconfig.json ├── mint-nft-next ├── .env ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── README.md ├── components │ ├── ConnectWallet.tsx │ ├── MintSwordButton.tsx │ ├── SwordList.tsx │ └── Wallet.tsx ├── next-env.d.ts ├── package.json ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ └── mint_sword.ts │ └── index.tsx ├── themes │ └── chakraTheme.ts └── tsconfig.json ├── multi-chain-dapp ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── context │ └── Chain.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ └── index.tsx ├── public │ ├── favicon.ico │ └── thirdweb.svg └── tsconfig.json ├── nft-multiple-currencies ├── .env.example ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── next-env.d.ts ├── next.config.js ├── nft.ts ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── generate-mint-sig.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── thirdweb.svg └── tsconfig.json ├── on-demand-minting ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _document.js ├── components │ └── Layout.tsx ├── docs │ ├── creating-a-signature.svg │ ├── creating-a-signature.txt │ ├── redeeming-a-signature.svg │ └── redeeming-a-signature.txt ├── hooks │ └── useProtectedPage.ts ├── next-env.d.ts ├── package.json ├── pages │ ├── _app.js │ ├── claimer.tsx │ ├── creator.tsx │ ├── home.tsx │ └── index.tsx ├── public │ ├── bg.png │ ├── favicon.ico │ └── vercel.svg └── tsconfig.json ├── on-demand-pass ├── .env.template ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── generate-mint-sig.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── thirdweb.svg └── tsconfig.json ├── optimism-nft-drop ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── consts │ └── addresses.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ └── index.tsx ├── public │ ├── favicon.ico │ └── thirdweb.svg ├── styles │ ├── Home.module.css │ └── globals.css └── tsconfig.json ├── sign-in-with-ethereum ├── .gitignore ├── LICENSE ├── README.md ├── _document.js ├── components │ └── Profile.jsx ├── db │ ├── db.ts │ └── instance.ts ├── docker-compose.yml ├── docs │ ├── sign-in-with-ethereum.sequencediagram.png │ └── sign-in-with-ethereum.sequencediagram.txt ├── next-env.d.ts ├── package.json ├── pages │ ├── _app.js │ ├── api │ │ ├── challenge.ts │ │ ├── jwt.ts │ │ ├── updateProfile.ts │ │ └── user.ts │ └── index.js ├── postcss.config.js ├── public │ ├── bg.png │ ├── favicon.ico │ └── vercel.svg ├── sign-in-with-ethereum.drawio ├── tailwind.config.js └── tsconfig.json ├── simultaneous-allowlists ├── .env.template ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── generate-mint-sig.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── thirdweb.svg └── tsconfig.json ├── token-economy ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ ├── TokenModule │ │ │ └── TokenComponent.tsx │ │ ├── approvemodule │ │ │ ├── ApproveComponent.css │ │ │ └── ApproveComponent.tsx │ │ ├── card │ │ │ ├── Card.css │ │ │ └── Card.tsx │ │ ├── gamemodule │ │ │ ├── GameModule.css │ │ │ ├── GameModule.tsx │ │ │ ├── ModalComponent.css │ │ │ ├── ModalComponent.tsx │ │ │ └── OpenModal.tsx │ │ ├── useModule.tsx │ │ └── userbuttons │ │ │ ├── buttons.css │ │ │ └── buttons.tsx │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ └── react-app-env.d.ts └── tsconfig.json ├── token-minter ├── .env.example ├── .gitignore ├── README.md ├── minter.ts └── package.json └── typescript-sdk ├── .env.example ├── .gitignore ├── README.md ├── package.json └── sdk.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/README.md -------------------------------------------------------------------------------- /TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/TEMPLATE.md -------------------------------------------------------------------------------- /go/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/go/README.MD -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_OPENZEPPELIN_URL= -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/javascript/gasless-nft-drop/.gitignore -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/javascript/gasless-nft-drop/README.md -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/javascript/gasless-nft-drop/next.config.js -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/javascript/gasless-nft-drop/package.json -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/javascript/gasless-nft-drop/pages/_app.js -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/javascript/gasless-nft-drop/pages/index.js -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/javascript/gasless-nft-drop/public/favicon.ico -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/javascript/gasless-nft-drop/styles/Home.module.css -------------------------------------------------------------------------------- /javascript/gasless-nft-drop/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/javascript/gasless-nft-drop/styles/globals.css -------------------------------------------------------------------------------- /python/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/README.MD -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/.gitignore -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/create_nft_with_django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/create_nft_with_django/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/create_nft_with_django/asgi.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/create_nft_with_django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/create_nft_with_django/settings.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/create_nft_with_django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/create_nft_with_django/urls.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/create_nft_with_django/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/create_nft_with_django/wsgi.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/manage.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/thirdweb_nft/admin.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/thirdweb_nft/apps.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/thirdweb_nft/models.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/nft_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/thirdweb_nft/nft_collection.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/static/css/thirdweb_nft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/thirdweb_nft/static/css/thirdweb_nft.css -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/thirdweb_nft/templates/index.html -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/thirdweb_nft/tests.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/thirdweb_nft/urls.py -------------------------------------------------------------------------------- /python/nft-django/create_nft_with_django/thirdweb_nft/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/python/nft-django/create_nft_with_django/thirdweb_nft/views.py -------------------------------------------------------------------------------- /typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/README.md -------------------------------------------------------------------------------- /typescript/add-connect-wallet/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/add-connect-wallet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/.gitignore -------------------------------------------------------------------------------- /typescript/add-connect-wallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/README.md -------------------------------------------------------------------------------- /typescript/add-connect-wallet/components/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/components/ConnectWallet.tsx -------------------------------------------------------------------------------- /typescript/add-connect-wallet/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/next-env.d.ts -------------------------------------------------------------------------------- /typescript/add-connect-wallet/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/next.config.js -------------------------------------------------------------------------------- /typescript/add-connect-wallet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/package.json -------------------------------------------------------------------------------- /typescript/add-connect-wallet/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/add-connect-wallet/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/pages/api/hello.ts -------------------------------------------------------------------------------- /typescript/add-connect-wallet/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/pages/index.tsx -------------------------------------------------------------------------------- /typescript/add-connect-wallet/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/public/favicon.ico -------------------------------------------------------------------------------- /typescript/add-connect-wallet/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/public/vercel.svg -------------------------------------------------------------------------------- /typescript/add-connect-wallet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/add-connect-wallet/tsconfig.json -------------------------------------------------------------------------------- /typescript/auction-button-react/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/auction-button-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/.gitignore -------------------------------------------------------------------------------- /typescript/auction-button-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/README.md -------------------------------------------------------------------------------- /typescript/auction-button-react/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/next.config.js -------------------------------------------------------------------------------- /typescript/auction-button-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/package.json -------------------------------------------------------------------------------- /typescript/auction-button-react/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/pages/api/hello.js -------------------------------------------------------------------------------- /typescript/auction-button-react/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/pages/index.js -------------------------------------------------------------------------------- /typescript/auction-button-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/public/favicon.ico -------------------------------------------------------------------------------- /typescript/auction-button-react/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/public/vercel.svg -------------------------------------------------------------------------------- /typescript/auction-button-react/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/styles/Home.module.css -------------------------------------------------------------------------------- /typescript/auction-button-react/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/styles/globals.css -------------------------------------------------------------------------------- /typescript/auction-button-react/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/auction-button-react/styles/styles.css -------------------------------------------------------------------------------- /typescript/claim-button-react/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/claim-button-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/.gitignore -------------------------------------------------------------------------------- /typescript/claim-button-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/README.md -------------------------------------------------------------------------------- /typescript/claim-button-react/components/ClaimButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/components/ClaimButton.tsx -------------------------------------------------------------------------------- /typescript/claim-button-react/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/next-env.d.ts -------------------------------------------------------------------------------- /typescript/claim-button-react/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/next.config.js -------------------------------------------------------------------------------- /typescript/claim-button-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/package.json -------------------------------------------------------------------------------- /typescript/claim-button-react/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/claim-button-react/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/pages/api/hello.ts -------------------------------------------------------------------------------- /typescript/claim-button-react/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/pages/index.tsx -------------------------------------------------------------------------------- /typescript/claim-button-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/public/favicon.ico -------------------------------------------------------------------------------- /typescript/claim-button-react/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/public/vercel.svg -------------------------------------------------------------------------------- /typescript/claim-button-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/claim-button-react/tsconfig.json -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/.gitignore -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/README.md -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/components/connect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/components/connect.tsx -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/components/pack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/components/pack.tsx -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/next-env.d.ts -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/next.config.js -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/package.json -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/pages/api/pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/pages/api/pack.ts -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/pages/index.tsx -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/public/favicon.ico -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/public/thirdweb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/public/thirdweb_logo.png -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/public/vercel.svg -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/styles/Home.module.css -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/styles/globals.css -------------------------------------------------------------------------------- /typescript/create-a-pack-with-typescript-and-nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/create-a-pack-with-typescript-and-nextjs/tsconfig.json -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/.gitignore -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/LICENSE.md -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/README.md -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/next-env.d.ts -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/next.config.js -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/package.json -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/pages/all_claimed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/pages/all_claimed.tsx -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/pages/api/condition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/pages/api/condition.tsx -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/pages/index.tsx -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/public/favicon.ico -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/public/pok.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/public/pok.jpg -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/public/thirdweb.svg -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/styles/globals.css -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/styles/mystyles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/styles/mystyles.module.css -------------------------------------------------------------------------------- /typescript/dynamic pricing/claim_condition/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic pricing/claim_condition/tsconfig.json -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/.env.example -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/.gitignore -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/LICENSE.md -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/README.md -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/next-env.d.ts -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/next.config.js -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/package.json -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/pages/api/add-to-allowlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/pages/api/add-to-allowlist.ts -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/pages/api/generate-mint-sig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/pages/api/generate-mint-sig.ts -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/pages/api/set-minted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/pages/api/set-minted.ts -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/pages/index.tsx -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/public/favicon.ico -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/public/thirdweb.svg -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/styles/Home.module.css -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/styles/globals.css -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/tsconfig.json -------------------------------------------------------------------------------- /typescript/dynamic-allowlist-edition/utils/Airtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/dynamic-allowlist-edition/utils/Airtable.ts -------------------------------------------------------------------------------- /typescript/early-access-nft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/README.md -------------------------------------------------------------------------------- /typescript/early-access-nft/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/package.json -------------------------------------------------------------------------------- /typescript/early-access-nft/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/public/favicon.ico -------------------------------------------------------------------------------- /typescript/early-access-nft/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/public/index.html -------------------------------------------------------------------------------- /typescript/early-access-nft/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/public/logo192.png -------------------------------------------------------------------------------- /typescript/early-access-nft/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/public/logo512.png -------------------------------------------------------------------------------- /typescript/early-access-nft/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/public/manifest.json -------------------------------------------------------------------------------- /typescript/early-access-nft/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/public/robots.txt -------------------------------------------------------------------------------- /typescript/early-access-nft/scripts/createNft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/scripts/createNft.ts -------------------------------------------------------------------------------- /typescript/early-access-nft/scripts/getContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/scripts/getContract.ts -------------------------------------------------------------------------------- /typescript/early-access-nft/scripts/nftConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/scripts/nftConfig.ts -------------------------------------------------------------------------------- /typescript/early-access-nft/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/scripts/tsconfig.json -------------------------------------------------------------------------------- /typescript/early-access-nft/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/src/App.css -------------------------------------------------------------------------------- /typescript/early-access-nft/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/src/App.test.tsx -------------------------------------------------------------------------------- /typescript/early-access-nft/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/src/App.tsx -------------------------------------------------------------------------------- /typescript/early-access-nft/src/components/Nft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/src/components/Nft.tsx -------------------------------------------------------------------------------- /typescript/early-access-nft/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/src/index.css -------------------------------------------------------------------------------- /typescript/early-access-nft/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/src/index.tsx -------------------------------------------------------------------------------- /typescript/early-access-nft/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/src/logo.svg -------------------------------------------------------------------------------- /typescript/early-access-nft/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/src/reportWebVitals.ts -------------------------------------------------------------------------------- /typescript/early-access-nft/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/src/setupTests.ts -------------------------------------------------------------------------------- /typescript/early-access-nft/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/early-access-nft/tsconfig.json -------------------------------------------------------------------------------- /typescript/free-first-mint/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/.env.example -------------------------------------------------------------------------------- /typescript/free-first-mint/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/free-first-mint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/.gitignore -------------------------------------------------------------------------------- /typescript/free-first-mint/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/LICENSE.md -------------------------------------------------------------------------------- /typescript/free-first-mint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/README.md -------------------------------------------------------------------------------- /typescript/free-first-mint/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/next-env.d.ts -------------------------------------------------------------------------------- /typescript/free-first-mint/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/next.config.js -------------------------------------------------------------------------------- /typescript/free-first-mint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/package.json -------------------------------------------------------------------------------- /typescript/free-first-mint/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/free-first-mint/pages/api/generate-mint-sig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/pages/api/generate-mint-sig.ts -------------------------------------------------------------------------------- /typescript/free-first-mint/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/pages/index.tsx -------------------------------------------------------------------------------- /typescript/free-first-mint/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/public/favicon.ico -------------------------------------------------------------------------------- /typescript/free-first-mint/public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/public/thirdweb.svg -------------------------------------------------------------------------------- /typescript/free-first-mint/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/tsconfig.json -------------------------------------------------------------------------------- /typescript/free-first-mint/utils/Airtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/utils/Airtable.ts -------------------------------------------------------------------------------- /typescript/free-first-mint/utils/thirdweb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/free-first-mint/utils/thirdweb.ts -------------------------------------------------------------------------------- /typescript/gallery-example/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/gallery-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/.gitignore -------------------------------------------------------------------------------- /typescript/gallery-example/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/Home.module.css -------------------------------------------------------------------------------- /typescript/gallery-example/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/LICENSE.md -------------------------------------------------------------------------------- /typescript/gallery-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/README.md -------------------------------------------------------------------------------- /typescript/gallery-example/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/_app.tsx -------------------------------------------------------------------------------- /typescript/gallery-example/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/globals.css -------------------------------------------------------------------------------- /typescript/gallery-example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/index.tsx -------------------------------------------------------------------------------- /typescript/gallery-example/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/next-env.d.ts -------------------------------------------------------------------------------- /typescript/gallery-example/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/next.config.js -------------------------------------------------------------------------------- /typescript/gallery-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/package.json -------------------------------------------------------------------------------- /typescript/gallery-example/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/gallery-example/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/pages/index.tsx -------------------------------------------------------------------------------- /typescript/gallery-example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/public/favicon.ico -------------------------------------------------------------------------------- /typescript/gallery-example/public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/public/thirdweb.svg -------------------------------------------------------------------------------- /typescript/gallery-example/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/styles/Home.module.css -------------------------------------------------------------------------------- /typescript/gallery-example/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/styles/globals.css -------------------------------------------------------------------------------- /typescript/gallery-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/gallery-example/tsconfig.json -------------------------------------------------------------------------------- /typescript/mint-nft-next/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/.env -------------------------------------------------------------------------------- /typescript/mint-nft-next/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/.eslintignore -------------------------------------------------------------------------------- /typescript/mint-nft-next/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/.eslintrc.json -------------------------------------------------------------------------------- /typescript/mint-nft-next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/.gitignore -------------------------------------------------------------------------------- /typescript/mint-nft-next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/README.md -------------------------------------------------------------------------------- /typescript/mint-nft-next/components/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/components/ConnectWallet.tsx -------------------------------------------------------------------------------- /typescript/mint-nft-next/components/MintSwordButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/components/MintSwordButton.tsx -------------------------------------------------------------------------------- /typescript/mint-nft-next/components/SwordList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/components/SwordList.tsx -------------------------------------------------------------------------------- /typescript/mint-nft-next/components/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/components/Wallet.tsx -------------------------------------------------------------------------------- /typescript/mint-nft-next/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/next-env.d.ts -------------------------------------------------------------------------------- /typescript/mint-nft-next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/package.json -------------------------------------------------------------------------------- /typescript/mint-nft-next/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/mint-nft-next/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/pages/_document.tsx -------------------------------------------------------------------------------- /typescript/mint-nft-next/pages/api/mint_sword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/pages/api/mint_sword.ts -------------------------------------------------------------------------------- /typescript/mint-nft-next/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/pages/index.tsx -------------------------------------------------------------------------------- /typescript/mint-nft-next/themes/chakraTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/themes/chakraTheme.ts -------------------------------------------------------------------------------- /typescript/mint-nft-next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/mint-nft-next/tsconfig.json -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/.gitignore -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/LICENSE.md -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/README.md -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/context/Chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/context/Chain.ts -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/next-env.d.ts -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/next.config.js -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/package.json -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/pages/index.tsx -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/public/favicon.ico -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/public/thirdweb.svg -------------------------------------------------------------------------------- /typescript/multi-chain-dapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/multi-chain-dapp/tsconfig.json -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/.env.example: -------------------------------------------------------------------------------- 1 | PRIVATE_KEY= 2 | ALCHEMY_API_URL= -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/.gitignore -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/LICENSE.md -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/README.md -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/next-env.d.ts -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/next.config.js -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/nft.ts -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/package.json -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/pages/api/generate-mint-sig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/pages/api/generate-mint-sig.ts -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/pages/index.tsx -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/public/favicon.ico -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/public/thirdweb.svg -------------------------------------------------------------------------------- /typescript/nft-multiple-currencies/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/nft-multiple-currencies/tsconfig.json -------------------------------------------------------------------------------- /typescript/on-demand-minting/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/.gitattributes -------------------------------------------------------------------------------- /typescript/on-demand-minting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/.gitignore -------------------------------------------------------------------------------- /typescript/on-demand-minting/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/LICENSE -------------------------------------------------------------------------------- /typescript/on-demand-minting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/README.md -------------------------------------------------------------------------------- /typescript/on-demand-minting/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/_document.js -------------------------------------------------------------------------------- /typescript/on-demand-minting/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/components/Layout.tsx -------------------------------------------------------------------------------- /typescript/on-demand-minting/docs/creating-a-signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/docs/creating-a-signature.svg -------------------------------------------------------------------------------- /typescript/on-demand-minting/docs/creating-a-signature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/docs/creating-a-signature.txt -------------------------------------------------------------------------------- /typescript/on-demand-minting/docs/redeeming-a-signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/docs/redeeming-a-signature.svg -------------------------------------------------------------------------------- /typescript/on-demand-minting/docs/redeeming-a-signature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/docs/redeeming-a-signature.txt -------------------------------------------------------------------------------- /typescript/on-demand-minting/hooks/useProtectedPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/hooks/useProtectedPage.ts -------------------------------------------------------------------------------- /typescript/on-demand-minting/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/next-env.d.ts -------------------------------------------------------------------------------- /typescript/on-demand-minting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/package.json -------------------------------------------------------------------------------- /typescript/on-demand-minting/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/pages/_app.js -------------------------------------------------------------------------------- /typescript/on-demand-minting/pages/claimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/pages/claimer.tsx -------------------------------------------------------------------------------- /typescript/on-demand-minting/pages/creator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/pages/creator.tsx -------------------------------------------------------------------------------- /typescript/on-demand-minting/pages/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/pages/home.tsx -------------------------------------------------------------------------------- /typescript/on-demand-minting/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/pages/index.tsx -------------------------------------------------------------------------------- /typescript/on-demand-minting/public/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/public/bg.png -------------------------------------------------------------------------------- /typescript/on-demand-minting/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/public/favicon.ico -------------------------------------------------------------------------------- /typescript/on-demand-minting/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/public/vercel.svg -------------------------------------------------------------------------------- /typescript/on-demand-minting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-minting/tsconfig.json -------------------------------------------------------------------------------- /typescript/on-demand-pass/.env.template: -------------------------------------------------------------------------------- 1 | PRIVATE_KEY= -------------------------------------------------------------------------------- /typescript/on-demand-pass/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/on-demand-pass/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/.gitignore -------------------------------------------------------------------------------- /typescript/on-demand-pass/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/LICENSE.md -------------------------------------------------------------------------------- /typescript/on-demand-pass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/README.md -------------------------------------------------------------------------------- /typescript/on-demand-pass/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/next-env.d.ts -------------------------------------------------------------------------------- /typescript/on-demand-pass/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/next.config.js -------------------------------------------------------------------------------- /typescript/on-demand-pass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/package.json -------------------------------------------------------------------------------- /typescript/on-demand-pass/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/on-demand-pass/pages/api/generate-mint-sig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/pages/api/generate-mint-sig.ts -------------------------------------------------------------------------------- /typescript/on-demand-pass/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/pages/index.tsx -------------------------------------------------------------------------------- /typescript/on-demand-pass/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/public/favicon.ico -------------------------------------------------------------------------------- /typescript/on-demand-pass/public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/public/thirdweb.svg -------------------------------------------------------------------------------- /typescript/on-demand-pass/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/on-demand-pass/tsconfig.json -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/.gitignore -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/LICENSE.md -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/README.md -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/consts/addresses.ts: -------------------------------------------------------------------------------- 1 | export const dropAddress = "0x7BFbcc3E08833EeE173d9320121a9403fB8b67d9"; 2 | -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/next-env.d.ts -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/next.config.js -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/package.json -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/pages/index.tsx -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/public/favicon.ico -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/public/thirdweb.svg -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/styles/Home.module.css -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/styles/globals.css -------------------------------------------------------------------------------- /typescript/optimism-nft-drop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/optimism-nft-drop/tsconfig.json -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/.gitignore -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/LICENSE -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/README.md -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/_document.js -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/components/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/components/Profile.jsx -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/db/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/db/db.ts -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/db/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/db/instance.ts -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/docker-compose.yml -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/docs/sign-in-with-ethereum.sequencediagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/docs/sign-in-with-ethereum.sequencediagram.png -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/docs/sign-in-with-ethereum.sequencediagram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/docs/sign-in-with-ethereum.sequencediagram.txt -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/next-env.d.ts -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/package.json -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/pages/_app.js -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/pages/api/challenge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/pages/api/challenge.ts -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/pages/api/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/pages/api/jwt.ts -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/pages/api/updateProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/pages/api/updateProfile.ts -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/pages/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/pages/api/user.ts -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/pages/index.js -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/postcss.config.js -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/public/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/public/bg.png -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/public/favicon.ico -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/public/vercel.svg -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/sign-in-with-ethereum.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/sign-in-with-ethereum.drawio -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/tailwind.config.js -------------------------------------------------------------------------------- /typescript/sign-in-with-ethereum/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/sign-in-with-ethereum/tsconfig.json -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/.env.template: -------------------------------------------------------------------------------- 1 | PRIVATE_KEY= -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/.gitignore -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/LICENSE.md -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/README.md -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/next-env.d.ts -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/next.config.js -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/package.json -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/pages/_app.tsx -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/pages/api/generate-mint-sig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/pages/api/generate-mint-sig.ts -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/pages/index.tsx -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/public/favicon.ico -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/public/thirdweb.svg -------------------------------------------------------------------------------- /typescript/simultaneous-allowlists/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/simultaneous-allowlists/tsconfig.json -------------------------------------------------------------------------------- /typescript/token-economy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/.gitignore -------------------------------------------------------------------------------- /typescript/token-economy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/README.md -------------------------------------------------------------------------------- /typescript/token-economy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/package.json -------------------------------------------------------------------------------- /typescript/token-economy/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/public/favicon.ico -------------------------------------------------------------------------------- /typescript/token-economy/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/public/index.html -------------------------------------------------------------------------------- /typescript/token-economy/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/public/logo192.png -------------------------------------------------------------------------------- /typescript/token-economy/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/public/logo512.png -------------------------------------------------------------------------------- /typescript/token-economy/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/public/manifest.json -------------------------------------------------------------------------------- /typescript/token-economy/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/public/robots.txt -------------------------------------------------------------------------------- /typescript/token-economy/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/App.css -------------------------------------------------------------------------------- /typescript/token-economy/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/App.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/components/TokenModule/TokenComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/TokenModule/TokenComponent.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/components/approvemodule/ApproveComponent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/approvemodule/ApproveComponent.css -------------------------------------------------------------------------------- /typescript/token-economy/src/components/approvemodule/ApproveComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/approvemodule/ApproveComponent.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/components/card/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/card/Card.css -------------------------------------------------------------------------------- /typescript/token-economy/src/components/card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/card/Card.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/components/gamemodule/GameModule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/gamemodule/GameModule.css -------------------------------------------------------------------------------- /typescript/token-economy/src/components/gamemodule/GameModule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/gamemodule/GameModule.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/components/gamemodule/ModalComponent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/gamemodule/ModalComponent.css -------------------------------------------------------------------------------- /typescript/token-economy/src/components/gamemodule/ModalComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/gamemodule/ModalComponent.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/components/gamemodule/OpenModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/gamemodule/OpenModal.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/components/useModule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/useModule.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/components/userbuttons/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/userbuttons/buttons.css -------------------------------------------------------------------------------- /typescript/token-economy/src/components/userbuttons/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/components/userbuttons/buttons.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/index.css -------------------------------------------------------------------------------- /typescript/token-economy/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/index.tsx -------------------------------------------------------------------------------- /typescript/token-economy/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/src/logo.svg -------------------------------------------------------------------------------- /typescript/token-economy/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /typescript/token-economy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-economy/tsconfig.json -------------------------------------------------------------------------------- /typescript/token-minter/.env.example: -------------------------------------------------------------------------------- 1 | PRIVATE_KEY= 2 | CONTRACT_ADDRESS= -------------------------------------------------------------------------------- /typescript/token-minter/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /typescript/token-minter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-minter/README.md -------------------------------------------------------------------------------- /typescript/token-minter/minter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-minter/minter.ts -------------------------------------------------------------------------------- /typescript/token-minter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/token-minter/package.json -------------------------------------------------------------------------------- /typescript/typescript-sdk/.env.example: -------------------------------------------------------------------------------- 1 | PRIVATE_KEY= -------------------------------------------------------------------------------- /typescript/typescript-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /typescript/typescript-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/typescript-sdk/README.md -------------------------------------------------------------------------------- /typescript/typescript-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/typescript-sdk/package.json -------------------------------------------------------------------------------- /typescript/typescript-sdk/sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-dev/examples/HEAD/typescript/typescript-sdk/sdk.ts --------------------------------------------------------------------------------