-
Notifications
You must be signed in to change notification settings - Fork 228
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
Substrate: Support contracts node v0.22 #1080
Substrate: Support contracts node v0.22 #1080
Conversation
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
Signed-off-by: xermicus <cyrill@parity.io>
Signed-off-by: xermicus <cyrill@parity.io>
Signed-off-by: xermicus <cyrill@parity.io>
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
Signed-off-by: xermicus <cyrill@parity.io>
Signed-off-by: xermicus <cyrill@parity.io>
Signed-off-by: xermicus <cyrill@parity.io>
Signed-off-by: xermicus <cyrill@parity.io>
Signed-off-by: xermicus <cyrill@parity.io>
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
Signed-off-by: xermicus <cyrill@parity.io>
Signed-off-by: xermicus <cyrill@parity.io>
@@ -5,7 +5,7 @@ | |||
"main": "index.js", | |||
"scripts": { | |||
"test": "tsc; ts-mocha -t 20000 *.spec.ts", | |||
"build": "solang compile *.sol test/*.sol --target substrate -v" | |||
"build": "parallel solang compile -v --target substrate ::: *.sol test/*.sol" |
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.
We should make solang parallel at some point
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.
Good idea, I imagine compiling all contracts in parallel should be easy to do
integration/substrate/package.json
Outdated
@@ -5,7 +5,7 @@ | |||
"main": "index.js", | |||
"scripts": { | |||
"test": "tsc; ts-mocha -t 20000 *.spec.ts", | |||
"build": "solang compile *.sol test/*.sol --target substrate -v" | |||
"build": "parallel solang compile -v --target substrate ::: *.sol test/*.sol" | |||
}, | |||
"author": "Sean Young <sean@mess.org>", |
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.
This really needs updating, you could add your name here (I think it has to be contributors
rather than author
.
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
__unstable__
query
APIWeightV2
for gas limitslatest
contracts CI image for pallet contracts v0.22.1. I'm aware that this is not ideal but it's what's available right now. There shouldn't be a breaking release soon, we can switch toproduction
as soon as its here.