-
Notifications
You must be signed in to change notification settings - Fork 0
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
Development >> Master #40
Commits on Jun 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b80693f - Browse repository at this point
Copy the full SHA b80693fView commit details -
Configuration menu - View commit details
-
Copy full SHA for d445a1f - Browse repository at this point
Copy the full SHA d445a1fView commit details
Commits on Jun 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a3b3ade - Browse repository at this point
Copy the full SHA a3b3adeView commit details
Commits on Jul 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ad801ce - Browse repository at this point
Copy the full SHA ad801ceView commit details
Commits on Jul 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6977b8b - Browse repository at this point
Copy the full SHA 6977b8bView commit details
Commits on Aug 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b8e104e - Browse repository at this point
Copy the full SHA b8e104eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 57fbdb7 - Browse repository at this point
Copy the full SHA 57fbdb7View commit details -
Configuration menu - View commit details
-
Copy full SHA for a1ad141 - Browse repository at this point
Copy the full SHA a1ad141View commit details -
Configuration menu - View commit details
-
Copy full SHA for c8d60b2 - Browse repository at this point
Copy the full SHA c8d60b2View commit details
Commits on Sep 10, 2024
-
Partially revert "Switch endian order for Checksum256 index, only wor…
…ks for rscdk compiled contracts" This reverts commit 6977b8b, in particular the endianness of Checksum256. This is needed to be compatible with the C++ smart contracts compiler, while rscdk (Rust WASM compiler) needs the commit that here is being reverted. This means that going on antelope-rs will be compatible with the C++ smart contracts compiler and not with the Rust compiler.
Configuration menu - View commit details
-
Copy full SHA for 02d0e7e - Browse repository at this point
Copy the full SHA 02d0e7eView commit details
Commits on Sep 11, 2024
-
The test was meant to check the consistency of the Checksum256 encoding with the SNARKtor contracts and the WASM-compiled smart contracts in general. However, given that the `rscdk` compiler treats the encoding of Checksum256 with a different encoding compared to the C++ compiler, the test has been removed. It could be restored once the `rscdk` issue is fixed.
Configuration menu - View commit details
-
Copy full SHA for 598dd54 - Browse repository at this point
Copy the full SHA 598dd54View commit details -
Configuration menu - View commit details
-
Copy full SHA for feb151b - Browse repository at this point
Copy the full SHA feb151bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 59f7e5c - Browse repository at this point
Copy the full SHA 59f7e5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c98aac - Browse repository at this point
Copy the full SHA 4c98aacView commit details -
Refactored v1/struct unit tests
- Added the conditional configuration of tests - Split the account deserialization test into 3 smaller tests - Switched to raw strings to keep JSON formatting and make the content more readable
Configuration menu - View commit details
-
Copy full SHA for 7a4fc47 - Browse repository at this point
Copy the full SHA 7a4fc47View commit details -
Fixed the deserialization of
get_account
responsesThe deserialization of the `core_liquid_balance` wasn't taking into account that such field could be omitted.
Configuration menu - View commit details
-
Copy full SHA for f483c55 - Browse repository at this point
Copy the full SHA f483c55View commit details -
Merge pull request #33 from telosnetwork/mo/json_fix
Fix the deserialization of some `get_account` responses This PR includes some fixes to prevent the crash of antelope-rs during the deserialization of some get_account responses. The affected fields are: - AccountVoterInfo/last_stake - AccountResourceLimit/available - AccountResourceLimit/max - AccountObject/core_liquid_balance Some unit tests have been added to cover these edge cases.
Configuration menu - View commit details
-
Copy full SHA for c1760e6 - Browse repository at this point
Copy the full SHA c1760e6View commit details
Commits on Sep 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 69a95fe - Browse repository at this point
Copy the full SHA 69a95feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2587e09 - Browse repository at this point
Copy the full SHA 2587e09View commit details
Commits on Sep 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d06e040 - Browse repository at this point
Copy the full SHA d06e040View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5035d14 - Browse repository at this point
Copy the full SHA 5035d14View commit details -
Merge pull request #36 from telosnetwork/webauthn_sig_type
Support for encode/decode of Webauthn (WA) type signatures
Configuration menu - View commit details
-
Copy full SHA for fd547fd - Browse repository at this point
Copy the full SHA fd547fdView commit details
Commits on Oct 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 79fa958 - Browse repository at this point
Copy the full SHA 79fa958View commit details -
Configuration menu - View commit details
-
Copy full SHA for ce3b026 - Browse repository at this point
Copy the full SHA ce3b026View commit details -
Merge pull request #38 from telosnetwork/response_decoding
Response decoding fix for inconsistent types
Configuration menu - View commit details
-
Copy full SHA for ed53c75 - Browse repository at this point
Copy the full SHA ed53c75View commit details
Commits on Oct 14, 2024
-
In order to avoid duplicate runs, the trigger has now been set to activate when a new push within a PR targeting the `development` branch is detected.
Configuration menu - View commit details
-
Copy full SHA for bdf2c31 - Browse repository at this point
Copy the full SHA bdf2c31View commit details -
Configuration menu - View commit details
-
Copy full SHA for b82ec08 - Browse repository at this point
Copy the full SHA b82ec08View commit details -
Configuration menu - View commit details
-
Copy full SHA for c0b7ab2 - Browse repository at this point
Copy the full SHA c0b7ab2View commit details -
Merge pull request #39 from telosnetwork/clippy_all_targets
[CI] Added `--all-targets` as parameter of `cargo clippy`
Configuration menu - View commit details
-
Copy full SHA for fd3ee8f - Browse repository at this point
Copy the full SHA fd3ee8fView commit details
Commits on Oct 15, 2024
-
Finish table rows params fix logging (#37)
* Changes for ship reading * Adding support for other index types on next_key * Fix ABI encoding, better handle secondary index table queries * WIP - Complete GetTableRowsParams to_json functionality * Switch endian order for Checksum256 index, only works for rscdk compiled contracts * Some changes to deseralize blocks * Disable TrxVarient on get block response for now * Fix mock provider data * formatter and clippy pass * Partially revert "Switch endian order for Checksum256 index, only works for rscdk compiled contracts" This reverts commit 6977b8b, in particular the endianness of Checksum256. This is needed to be compatible with the C++ smart contracts compiler, while rscdk (Rust WASM compiler) needs the commit that here is being reverted. This means that going on antelope-rs will be compatible with the C++ smart contracts compiler and not with the Rust compiler. * Removed `secondary_index` test The test was meant to check the consistency of the Checksum256 encoding with the SNARKtor contracts and the WASM-compiled smart contracts in general. However, given that the `rscdk` compiler treats the encoding of Checksum256 with a different encoding compared to the C++ compiler, the test has been removed. It could be restored once the `rscdk` issue is fixed. * Removed commented code * Add tracing logging instead of println. * Remove debug flag. * fmt. * Rollback default provided implementation. * Remove prints for the tests. * Fix compile after merge. --------- Co-authored-by: Jesse Schulman <[email protected]> Co-authored-by: Guillermo Rodriguez <[email protected]> Co-authored-by: Paolo Tagliaferri <[email protected]> Co-authored-by: lesa-telos <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 84ef224 - Browse repository at this point
Copy the full SHA 84ef224View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ea9bf1 - Browse repository at this point
Copy the full SHA 4ea9bf1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2aabfab - Browse repository at this point
Copy the full SHA 2aabfabView commit details