-
Notifications
You must be signed in to change notification settings - Fork 149
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
Add support for ABI types #1883
Merged
Merged
Conversation
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
…mantics into dynamic-types
Status of this PR:
Location(60,126,60,132)
60 | rule ( CounterTest . testArray ( V0_numbers : uint256[] ) =>
#abiCallData ( "testArray" , #array ( V0_numbers , ?SIZE , ?ARRAY ) ,
.TypedArgs ) )
.
^~~~~~
[Error] Compiler: Cannot encode equations with existential variables to KORE.
If this is desired, please use #Exists with regular variables.
Offending variables: [?SIZE, ?ARRAY] So what was done instead:
We still need to support:
|
3 tasks
iFrostizz
added a commit
that referenced
this pull request
Aug 28, 2023
* add static bytes * support dynamic arrays * anticipate fixed point type * Set Version: 1.0.195 * kevm-pyk/: sync poetry files * support fixed len array * bytes equivalent to string * forgotten import * merge master * Set Version: 1.0.202 * back out changes * Set Version: 1.0.205 * deps/: back out changes * deps/: back out changes * Set Version: 1.0.210 * ci passes * Set Version: 1.0.211 * use macos-13 and format * start array support * update kvariable array * Add signed integer support beyond int256 * Set Version: 1.0.215 * update array exception * Set Version: 1.0.216 * Set Version: 1.0.217 * Set Version: 1.0.219 * Set Version: 1.0.220 * Set Version: 1.0.242 * deps/: back out changes * only suppport static types * filter out dynamic arrays * only support static type *minus* static arrays * remove redundant test * Set Version: 1.0.243 * Set Version: 1.0.244 * remove unused function * Set Version: 1.0.245 * update uint to bytes * Set Version: 1.0.246 * Set Version: 1.0.246 * better comparison * Set Version: 1.0.256 * add range_predicate tests * Set Version: 1.0.257 * add solc_to_k unit test * add uint24 variant * Set Version: 1.0.257 * update int types test * Set Version: 1.0.261 * back out poetry * deps/: back out changes * back out * Set Version: 1.0.261 * merge master * add int sort * update expected kompiled * update int and new bytes<M> variants * format * Set Version: 1.0.262 * update import * back out * add SInt variants * write all min/max SInt variants * add Word for SInt variants * make minSInt aliases * Set Version: 1.0.263 * Set Version: 1.0.263 * update expected output --------- Co-authored-by: François Guyot <[email protected]> Co-authored-by: devops <[email protected]> Co-authored-by: Noah Watson <[email protected]> Co-authored-by: Noah Watson <[email protected]> Co-authored-by: Andrei Văcaru <[email protected]> Co-authored-by: Andrei <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Advances towards a fix for: runtimeverification/kontrol#55
ref: https://solidity-fr.readthedocs.io/fr/latest/abi-spec.html#types
bytes<M>
support