Michał Iskierko
Michał Iskierko
If the application is opened with a deep link: /c/community_key and the user is not a member of community he should start to observe a community.
The purpose of this task is to move transaction listening logic from client code to status-go. _Background_ All operations in community tokens service consist of 2 steps: 1. contract interaction,...
Adjust EditMessage() to handle bridge messages (will be used by the bridge). Adjust applyEditMessage() to handle bridge messages. Closes [#14044](https://github.com/status-im/status-desktop/issues/14044)
WIP
A short summary which serves as a squashed-commit message. A description to understand introduced changes without reading the code. Important changes: - [x] Something worth noting for reviewers. Closes #
Community contracts has been upgraded recently. Changes can be found [here](https://github.com/status-im/communities-contracts/blob/main/CHANGELOG.md#100-2024-02-28) ToDo: - generate Go API for new contracts and use them in community tokens service - if the API...
Compute deployment fees dynamically instead of hardcode. Closes [#13646](https://github.com/status-im/status-desktop/issues/13646)
# Problem In services/community_tokens gas estimation for contract deployment is hardcoded. It should be computed dynamically by EstimateGas function or similar one. Unfortunately EstimateGas returns too low gas amount. This...
* [x] https://github.com/status-im/status-desktop/issues/12710 * [x] https://github.com/status-im/status-desktop/issues/13098 * [x] https://github.com/status-im/status-desktop/issues/13257 * [x] https://github.com/status-im/status-desktop/issues/13353 * [x] https://github.com/status-im/status-desktop/issues/13736 * [ ] https://github.com/status-im/status-desktop/issues/13251 * [x] https://github.com/status-im/status-desktop/issues/13258 Matterbridge branch: https://github.com/status-im/matterbridge/tree/waku2
Displaying edited bridge messages correctly. ### Screenshot of functionality (including design for comparison) https://github.com/status-im/status-desktop/assets/61889657/daec4e84-e82a-4231-bba6-0a986068bc38
### What does the PR do Move community tokens logic to status-go. Nim part is only responsible for catching the signal about handled transaction and update UI. Added CommunityTokenTransactionStatusChangedSignal. Issue...