Skip to content

FelipeRibeiroLabs/flow-nft-scaffold

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

👋 Welcome Flow Developer!

This repository was created using https://github.com/sideninja/flow-basic-scaffold as a template!

Welcome to your new Flow project. We've created the NFT-Standards folder structure you will need to develop your NFT project and provided some examples of contracts and transactions you can modify.

You will find the ExampleNFT contract and some basic transactions and scripts. You can use these as an example and create your own NFT contract from them.

In order to execute the transactions contained in this scaffold in the transaction and script folder, README.md files with explanations and commands have been added.

To mint an ExampleNFT, make sure that you:

  • Run the setupSwitchboardAccount transaction located in the cadence/transactions/royalty-receiver folder
  • Run the setupAccount transaction located in the cadence/transactions/exampleNFT folder

🔨 Getting started

Getting started can feel overwhelming, but we are here for you. Depending on how accustomed you are to Flow here's a list of resources you might find useful:

  • Cadence documentation: here you will find language reference for Cadence, which will be the language in which you develop your smart contracts,
  • Visual Studio Code and Cadence extension: we suggest using Visual Studio Code IDE for writing Cadence with the Cadence extension installed, that will give you nice syntax highlitning and additional smart features,
  • SDKs: here you will find a list of SDKs you can use to ease the interaction with Flow network (sending transactions, fetching accounts etc),
  • Tools: development tools you can use to make your development easier, Flowser can be super handy to see what's going on the blockchain while you develop

📦 Project Structure

Your project comes with some standard folders which have a special purpose:

  • /cadence inside here is where your Cadence smart contracts code lives
  • /web put your web client if needed inside this folder, remove if not needed
  • /api put your backend code if needed inside this folder, remove if not needed
  • flow.json configuration file for your project, you can think of it as package.json, but you don't need to worry, flow dev command will configure it for you

Inside cadence folder you will find:

  • /contracts location for Cadence contracts go in this folder
  • /scripts location for Cadence scripts goes here
  • /transactions location for Cadence transactions goes in this folder
  • /tests all the integration tests for your dapp and Cadence tests go into this folder

Inside contracts folder you will find:

  • /nft-standards It will be the account that contains the default contracts NonFungibleToken and MetadataViews
  • /exampleNFT-deployer It will be the account that contains the ExampleNFT contract

👨‍💻 Start Developing

After creating the project using the flow setup you should then start the emulator by running flow emulator and start the development command by running:

> flow dev

After the command is started it will automatically watch any changes you make to Cadence files and make sure to continiously sync those changes on the emulator network. If you make any mistakes it will report the errors as well. Read more about the command here

Importing Contracts

When you want to import the contracts you've just created you can simply do so by writing the import statement:

import "Foo"

We will automatically find your project contract named Foo and handle the importing for you.

Deploying to specific accounts

By default all contracts are deployed to a default account. If you want to seperate contracts to different accounts you can easily do so by creating a folder inside the contracts folder and we will create the account for you which will have the same name as the folder you just created. All the contracts inside that folder will be deployed automatically to the newly created account.

Example deploying to charlie account:

folder structure

/contracts
    Bar.cdc
    /charlie
        Foo.cdc

You can then import the Foo contract in Bar contract the same way as any other contract:

import "Foo"

Further Reading

About

Flow NFT scaffold contains all the content for you to use starting a new Flow NFT project.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published