-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates to mint with trait and various minor changes #206
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
I'll fix those tests. I imagine they should just need some updates to match the changes I made. |
Ok, I went through and resolved the remaining issues, and fixed the tests. Now I am going through the NFT use case demo and making any changes necessary to the readme or scripts. |
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## master #206 +/- ##
==========================================
+ Coverage 91.19% 92.04% +0.85%
==========================================
Files 6 6
Lines 284 327 +43
==========================================
+ Hits 259 301 +42
- Misses 25 26 +1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
5c91e8a
to
6e3aff3
Compare
- Change allowed-contracts map to hold the principal of the L2 contract instead of the name of the deposit function. This is thanks to the use of a trait for deposits instead, which simplifies things. - Pass contract as first arg for deposit/withdrawal methods - Reformat clarity contracts - Update unit tests - Reformat unit tests
Use "deposit-from-burnchain" always, because it will be validated by a trait.
These should have been included in the previous commits.
These will be used by clarinet to deploy the contracts to devnet.
5a927ed
to
2e40b5d
Compare
2e40b5d
to
4a629c5
Compare
instead of the name of the deposit function. This is thanks to the use
of a trait for deposits instead, which simplifies things.