-
-
Notifications
You must be signed in to change notification settings - Fork 774
Grants - v0.2 soft launch #3239
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
Conversation
…o ks_miner_fixes
…rong with cancel_grant_tx_id
Ks approve fix
Codecov Report
@@ Coverage Diff @@
## master #3239 +/- ##
=========================================
- Coverage 30.13% 30.1% -0.04%
=========================================
Files 193 193
Lines 14533 14568 +35
Branches 1900 1906 +6
=========================================
+ Hits 4380 4386 +6
- Misses 10015 10044 +29
Partials 138 138
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #3239 +/- ##
=========================================
- Coverage 30.13% 30.1% -0.03%
=========================================
Files 193 193
Lines 14533 14570 +37
Branches 1900 1907 +7
=========================================
+ Hits 4380 4387 +7
- Misses 10015 10045 +30
Partials 138 138
Continue to review full report at Codecov.
|
…o single quote in comiledSubscriptionToken
…token_symbol changes
…token_symbol changes
Grants/details: Add gas settings on cancel grants
…o grantz-cleanup
contract_owner_address | ||
).send({ | ||
from: accounts[0], | ||
gasPrice: 8000000000 |
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.
gas price should not be hardcoded -- why not web3.utils.toHex($('#gasPrice').val() * Math.pow(10, 9)
?
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.
Need to add gasSettings to owner change as well.
@@ -22,6 +22,12 @@ var gas_amount = function(page_url) { | |||
gasLimitEstimate = 21000; | |||
} else if (page_url.indexOf('tip/receive') != -1) { // tip | |||
gasLimitEstimate = 21000; | |||
} else if (page_url.indexOf('/fund') != -1) { // grant contribution | |||
gasLimitEstimate = 318730; |
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.
funding / creating a new subscription cost the same gas-wise? that doesnt seem right
<script src="{% static "v2/js/abi.js" %}"></script> | ||
<script src="/dynamic/js/tokens_dynamic.js"></script> | ||
<script src="{% static "v2/js/tokens.js" %}"></script> | ||
<script src="{% static "v2/js/shared.js" %}"></script> | ||
<script src="{% static "v2/js/ipfs-api.js" %}"></script> | ||
<script src="{% static "v2/js/ipfs.js" %}"></script> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/momentjs/latest/moment.min.js"></script> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.min.js"></script> |
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.
can we host these locally instead of using an external CDN?
<div class="progressbar"> | ||
<div class="progress-completed" style="width: {{ grant.percentage_done|floatformat:0 }}%;"> | ||
</div> | ||
<!-- #TODO - Change object that takes the percentage value of removed contribution. --> |
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.
still a TODO?
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.
left a few comments.. afre that feel free to
Looks like we missed this: #3239 (comment) |
Description
The goal of this PR is to get grants closer to being ready for public consumption.
Checklist
Affected core subsystem(s)
Refers/Fixes
Testing and Sign-off
Contributor
make test
and everything passed!Reviewer
Funder