├── .gitignore ├── README.md ├── backend ├── Procfile ├── README.md ├── package.json ├── src │ ├── PinataKeys.ts │ ├── index.ts │ └── types.ts └── tsconfig.json ├── contract └── NFTS_contract.mligo └── frontend ├── README.md ├── index.html ├── package.json ├── public ├── Roman-SD.ttf ├── Roman-SD.woff └── images │ └── taquito.png ├── src ├── App.svelte ├── main.ts └── styles │ └── index.scss ├── svelte.config.js ├── tsconfig.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/README.md -------------------------------------------------------------------------------- /backend/Procfile: -------------------------------------------------------------------------------- 1 | web: node dist/index.js -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/PinataKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/backend/src/PinataKeys.ts -------------------------------------------------------------------------------- /backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/backend/src/index.ts -------------------------------------------------------------------------------- /backend/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/backend/src/types.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /contract/NFTS_contract.mligo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/contract/NFTS_contract.mligo -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/Roman-SD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/public/Roman-SD.ttf -------------------------------------------------------------------------------- /frontend/public/Roman-SD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/public/Roman-SD.woff -------------------------------------------------------------------------------- /frontend/public/images/taquito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/public/images/taquito.png -------------------------------------------------------------------------------- /frontend/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/src/App.svelte -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/src/styles/index.scss -------------------------------------------------------------------------------- /frontend/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/svelte.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudebarde/taquito-pinata-tezos-nft/HEAD/frontend/vite.config.js --------------------------------------------------------------------------------