-
Notifications
You must be signed in to change notification settings - Fork 4
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
[Promote] new version with mobile bindings and new networks #54
Conversation
* add memo to options * new send options * TRX memo field * KDA fee * KLV memo request * easy options with models * update dependencies * fix skip deny check prost build
* Add wasm constructor for send options * lint && clippy
* fix KLV transfer request KDA * migrate KLV test to new file and implement KDA send test * validate asset id and fees with klv send test
* Update README.md
* set compressed default for BTC from bytes * update deps && remove cargo outdated check * fix broken tests * btc fix serde default height * HTTP basic auth * basic auth for BTC && switch test address
* chore: get trx legacy path * chore: use general option for getPath * chore: update demo * fix: lint checks
* add eth decode tx * remove idea * add unity test * update format * remove .to_vec() from data * add from json method * update tests
Bumps [h2](https://github.com/hyperium/h2) from 0.3.22 to 0.3.24. - [Release notes](https://github.com/hyperium/h2/releases) - [Changelog](https://github.com/hyperium/h2/blob/v0.3.24/CHANGELOG.md) - [Commits](hyperium/h2@v0.3.22...v0.3.24) --- updated-dependencies: - dependency-name: h2 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matheus Cysneiros <[email protected]>
* feat: send trc20 token * fix: contract_address parse & trc20 transfer abi * fix: set triggersmartcontract fee_limit * fix: send trc20 test * create a evm20Abi and break trx send in multiple functions * doing a cargo fix * change the function as terminal sugested * change formatting * change function for transfer asset * add fee-limit fron sendOptions to transfer options on trc20 transfer * fix clippy * chore: rename trigger_smartcontract function & ContractOptions * chore: reorganize imports --------- Co-authored-by: MCysneiros <[email protected]>
* update klever protos * ignore CVE-2024-0727
* change transferFrom to transfer on send ETH * fix evm20 abi * fix transferFrom abi
* feat: add method to serialize tron tx to raw hex * update dependencies (#41) * feat: serialize btc raw tx * fix: cargo lock * changed required due lint alerts * cleaning deny messages due web dependy tree * improve code clean * fix eth and matic tests * fix default node in tests --------- Co-authored-by: Fernando Sobreira <[email protected]> Co-authored-by: Bruno Campos <[email protected]>
* initial coderabbitai config file and readme updated * added single end file to the readme * fix stale action params
clear erros and warns from cargo tools
Generate binds to Android and iOS
Update README.md
WalkthroughThe changes encompass the introduction of new configuration files, enhancements to existing workflows, updates to dependency management, and the addition of scripts for building mobile applications. Key modifications include the establishment of GitHub Actions for Android and iOS publishing, updates to the Rust toolchain installation process, and the integration of new libraries and dependencies in the Rust project. The overall structure is refined to support mobile development more effectively. Changes
Sequence Diagram(s)sequenceDiagram
participant Developer
participant GitHub Actions
participant Android Build System
participant iOS Build System
Developer->>GitHub Actions: Create Release
GitHub Actions->>Android Build System: Trigger Android Build
Android Build System->>GitHub Actions: Build Successful
GitHub Actions->>Developer: Notify Android Build Success
Developer->>GitHub Actions: Create Release
GitHub Actions->>iOS Build System: Trigger iOS Build
iOS Build System->>GitHub Actions: Build Successful
GitHub Actions->>Developer: Notify iOS Build Success
TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add Documentation and Community
|
@coderabbitai summary |
Actions performedSummary regeneration triggered. |
Summary by CodeRabbit
New Features
Bug Fixes
Documentation
.gitignore
files to exclude unnecessary files from version control for both Android and iOS projects.Chores