You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,13 +27,15 @@ After creating the project using the `flow setup` you should then start the emul
27
27
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](https://developers.flow.com/tools/flow-cli/super-commands)
28
28
29
29
**Importing Contracts**
30
+
30
31
When you want to import the contracts you've just created you can simply do so by writing the import statement:
31
32
```
32
33
import "Foo"
33
34
```
34
35
We will automatically find your project contract named `Foo` and handle the importing for you.
35
36
36
37
**Deploying to specific accounts**
38
+
37
39
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.
0 commit comments