forked from onflow/flip-fest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
submissions/issue-21/milestone-1/squidplay/flip-21-ms1-squidplay.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# UI for multiple contracts | ||
|
||
Contracts are proposed to be put as horizontal tabs above the Cadence editor following familiar UX of various code editors such as VS Code. It is also to overloading links on the sidebar along with accounts, transaction templates and script templates. | ||
|
||
- Initial mockup: https://user-images.githubusercontent.com/81572453/139025502-7b69fe75-8be4-4255-95c5-a8efa6f2f0de.png | ||
- Prototype: https://youtu.be/Od1YxuHA0iA | ||
|
||
# Backend changes | ||
|
||
New contract schema will be introduced and relevant code changes will be made. | ||
|
||
''' | ||
type Contract { | ||
id: UUID! | ||
accountId: UUID | ||
index: Int! | ||
title: String! | ||
script: String! | ||
deployedScript: String | ||
} | ||
''' |