Commit Graph

4938 Commits

Author SHA1 Message Date
Richard Ramos fff0b7fe08
chore_: reduce filter batch duration to 500ms 2024-08-23 09:49:45 -04:00
frank f95892564a fix_: account address derivation in mobile user upgrade 2024-08-21 13:22:28 +00:00
Andrea Maria Piana 605ceae989 fix_: Don't count error rate for circuit breaker on cancel and handle
not found
2024-08-20 14:24:41 +00:00
Anthony Laibe c08d10b8ab fix_: last command of circuit breaker should always run
When added more command to the circuit breaker, we forget to keep a real fallback mechanism,
the last call should ALWAYS be made.

As such, i am manually skipping to use circuit breaker in that case.
2024-08-20 14:24:41 +00:00
Dario Gabriel Lipicar 90b3d0fdcc fix(wallet)_: set a separate id (and circuit) for the cryptcompare proxy 2024-08-20 13:31:29 +00:00
frank 59b3334f2d chore_:update route error details (#5749) 2024-08-20 14:30:28 +01:00
saledjenic 89662aa300
chore_: cherry-pick: missing statusgo changes for release (#5737)
* fix_: when preparing a balance map skip chains where cannot get the balance, instead of returning the error

* fix_: crash sending collectibles fixed

When mapping `MultipathProcessorTxArgs` to `ProcessorInputParams` setting `FromChain` was missed.

* fix_: crash when selected token cannot be found is fixed
2024-08-19 10:30:20 +01:00
Dario Gabriel Lipicar ab8f1ea709 fix(wallet)_: prevent backwards range in GetHeadersInRange 2024-08-17 14:00:14 +02:00
Andrea Maria Piana c54ba02e3a feat_: Flush hystrix on going back online
When going offline, all the rpc calls fail making hystrix open all the
circuits.
This commit changes the behavior so that when we go back online, we
close all the circuits.
We should also avoid making rpc requests while offline, but this should
work for release.
2024-08-16 18:52:26 +00:00
Samuel Hawksby-Robinson 635632c4aa
feat_: added the status-go version to the rpc-client user agent (#5729) 2024-08-16 15:38:47 +01:00
frank 09f8051238 test_: fix failed test TestScheduler_Enqueue_ValidateOrder 2024-08-16 14:58:29 +01:00
frank d3b1999963 fix_: scheduler panic after quick stop 2024-08-16 14:58:29 +01:00
Andrea Maria Piana da70d6f1b5 feat_: Cache GetWalletToken method and split circuits
This commits does a few things:

1) Adds cache of token amount to the GetWalletToken endpoint, used by
   mobile, in case the user is offline.

2) Split circuits by chain-id (when available) and by host+index when
   not

3) It makes GetWalletToken always refresh, as that's directed from an
   user action and we want to respect that. A cool down of 10s should be
   added in the future to avoid spamming.
2024-08-16 13:01:21 +00:00
Jamie Caprani dd787c982a
fix(wallet)_: pass loop var by value to goroutine (#5710) (#5722)
Co-authored-by: Icaro Motta <icaro.ldm@gmail.com>
2024-08-15 05:46:36 -07:00
Andrea Maria Piana 5bb7c6a8f3 feat!: drive proxy stage name from the client 2024-08-14 19:56:30 +01:00
Anthony Laibe d1d31bd6c0 fix_: Token cache usage
When fetch or cache, always return the cache
Do not save if the token is not being returns
Resolve connection map AFTER making the call
2024-08-14 14:27:44 +02:00
Igor Sirotin ff1df0c492
fix_: publish community periodically (#5709)
* fix_: publish community at app start

* fix_: allow publishing community with same clock

* chore_: increase community publish interval to 24 hours
2024-08-14 10:32:11 +01:00
Igor Sirotin 67cf830097
fix_: cherry pick 5696: block on logout (#5703)
* fix_: block on logout (#5696)

* fix_: check context on processAndPushTelemetry

* fix_: fix waitgroup add/done in Waku

* fix(pendingTracker)_: stop the pending transacitonTracker on logout

* chore_: lint fix

---------

Co-authored-by: Jonathan Rainville <rainville.jonathan@gmail.com>
2024-08-13 20:13:15 +01:00
Samuel Hawksby-Robinson 3187ce57bf
chore_: cherry-pick: RPC User Agent (#5707)
* feat(rpc_user_agent)_: Added User Agent to the authed rpc client

* feat(rpc_user_agent)_: Added OS conditioned agent naming

* feat(rpc-user-agent)_: Added user agent to upstream client
2024-08-13 18:54:36 +01:00
saledjenic f7821cfc3d
fix_: calculating route for erc721 checks one more call if the function doesn't exist on the contract (#5691)
Old ERC721 contracts do not have  `safeTransferFrom` function, because of that we couldn't estimate the gas
and we couldn't resolve the right route. Now we firstly check for `safeTransferFrom` function which is supported
by ERC721A contracts and if the contract doesn't have it then we do `transferFrom` function call.

Example of ERC721A contract:
- https://etherscan.io/address/0x0024bc1035d30ae229a4712189b32131758cb000#code

Example of ERC721 contract:
- https://etherscan.io/address/0x06012c8cf97bead5deae237070f9587f8e7a266d#code
2024-08-13 16:26:20 +01:00
saledjenic c39baa80d2
chore_: cherry-pick #5658: improvements on resolving nonce (#5690)
* chore_: unused `BuildTx` function removed from the processor interface and types that are implement it

Since the `BuildTx` function is not used anywhere, it's removed from the code.

* fix_: resolving nonce improvements

When the app sends more than a single tx from the same account on the same chain, some
chains do not return appropriate nonce (they do not consider pending txs), because of
that we place more tx with the same nonce, where all but the first one fail.

Changes in this PR keep track of nonces being used in the same sending/bridging flow, which means
for the first tx from the multi txs the app asks the chain for the nonce, and every next nonce is resolved
by incrementing the last used nonce by 1.
2024-08-13 11:17:08 +01:00
Prem Chaitanya Prathi a2ec9c2d8b fix_: add ticker to check peers and update connection status 2024-08-13 10:03:26 +01:00
Igor Sirotin f0b6e3d06b
fix(commit_check)_: use proper base branch (#5699) 2024-08-13 00:04:12 +01:00
dlipicar af0be7ec2f feat(wallet): add split onramp url endpoint (#5656)
* feat(wallet)_: add split onramp url endpoint & fix onrmap url
2024-08-12 13:54:05 +01:00
Anthony Laibe 9c9753f12e fix(wallet)_: return balance when available, do not fail all 2024-08-12 14:08:41 +02:00
dlipicar d4c6734a44
feat(wallet)_: handle paraswap price impact error (#5622) (#5680) 2024-08-09 18:52:53 +01:00
Prem Chaitanya Prathi b8ceedec50 chore_: update go-waku with keepalive timer fix 2024-08-09 08:22:18 +05:30
Prem Chaitanya Prathi 66c5316a96 fix_: filter connection change for pubsubTopics 2024-08-09 08:22:18 +05:30
frank 5dfeb130b0 fix_: make lint-fix 2024-08-08 13:46:51 +01:00
Volodymyr Kozieiev 511ac9e26b fix_: remove the restriction to call InitLogging only once 2024-08-08 13:46:42 +01:00
frank b38a447b1b chore_: ignore sensitive fields of WalletConfig when logging 2024-08-08 13:44:14 +01:00
Jonathan Rainville c5e7ca3827
fix(contact_request)_: potential fix to contact request with no saved message (#5665)
Fixes https://github.com/status-im/status-desktop/issues/15930

The issue happened because I received a notification about a contact request, but the request was not associated with a message in the DB. The DB didn't have a message with the required ID in it.

This potential fix moves the creation of the contact request later in the handling code, because the only way this bug can happen as far as I see it is if there is an error later in the handler function and the message is never added to the response, and therefore never saved.
2024-08-08 18:00:16 +05:30
frank f325e95bf1
fix_: enable light client for mobile (#5654)
* fix_: enable light client for mobile

* fix_: rename const name

* fix_: disable store confirmation for mobile v1 by default
2024-08-08 18:00:15 +05:30
Mikhail Rogachev f45dbb3067
feat_: cherry-pick: connector revoke permissions and accounts (#5666)
* feat(connector)_: add `wallet_revokePermissions` endpoint

* feat_: same behavior for `eth_accounts` and `eth_requestAccounts`
2024-08-07 08:32:40 +01:00
richΛrd cea857ed00
chore_: bump go-waku (#5660) 2024-08-06 20:13:07 +01:00
saledjenic c04e0dab4a
feat_: accounts/saved addresses capacity related api endpoints added (#5657)
Added endpoints:
- `RemainingAccountCapacity`
- `RemainingKeypairCapacity`
- `RemainingWatchOnlyAccountCapacity`
- `RmaininngCapacityForSavedAddresses`
2024-08-06 15:40:04 +01:00
Igor Sirotin 8ff95326c4
fix_: conversion from int to string causes code scanning error (#5600) (#5655)
fixes #5599

Co-authored-by: Godfrain Jacques <gkounkou@gmail.com>
2024-08-05 21:06:56 +01:00
Belal Shehab 67373ddbfc
fix(wallet)_: Handle balance fetching errors & fallback to cached values (#5641)
- Return errors from fetchBalancesForChain and GetBalancesAtByChain instead of silently ignoring them.
 - Use cached balances if fetching new data fails, preventing empty wallets and ensuring data consistency.
 - Fixed unit tests that was expecting GetBalancesAtByChain to always return nil error

Closes #15767

Co-authored-by: belalshehab <belal@status.im>
2024-08-05 11:07:54 +01:00
saledjenic bb9f14233c
fix_: the last known route with positive balance returned if no route without balance/bonder error (#5648)
The Router algorithm is checking all the routes in order to find one the user has a balance to execute it
even that one is not the cheapest one. But if the user has some balances, but not enough to execute any
of suggested routes, we we're returning the last route which was checked, with the changes from this commit
we will return the last route for which the user has some balance, but not enough.
2024-08-02 18:57:08 +01:00
saledjenic ca25be4516
fix(wallet)_: fixed error with parsing coingecko response. (#5650)
For tokens that it does not support and some that were listed in mapping
we responded with error

Co-authored-by: Ivan Belyakov <ivan.belyakov.job@gmail.com>
2024-08-02 18:56:16 +01:00
Mikhail Rogachev 7e87fd0d05
fix(connector)_: connector response structure to valid json (#5625) 2024-08-02 09:43:53 +01:00
Icaro Motta a57055f43b
fix(wallet)_: fix provider down event happening too often (#5595) (#5649)
* fix(wallet)_: fix provider down event happening too often

- handle context cancelled error
- do not count expected errors when calling tokenURI as providers
  errors
- use archival not for optimism (was silently added by Grove makeing the
  old URL non-archival)

Closes #5555

* test(wallet)_: add test for collectibles manager to verify that main
circuit is not tripped calling by tokenURI method

Co-authored-by: IvanBelyakoff <ivan.belyakov.job@gmail.com>
2024-08-01 19:29:05 -03:00
IvanBelyakoff e16d820ecd
chore_: CHERRY-PICK Proxy URLs for blockchain providers (#5644)
* feat(wallet)_: add basic auth for cryptocompare proxy (#5536)

* feat(wallet)_: add basic auth for cryptocompare proxy

* test(wallet)_: add a test for httpclient used in market clients

* feat(wallet)_: add status proxy RPC urls for blockchain providers

Replace the status proxy URL for cryptocompare.
2024-08-01 10:06:34 +01:00
saledjenic 8dcaf21576
chore_: endpoint for checking address checksum validity added to wallet api (#5632)
- added `IsChecksumValidForAddress` function to `wallet` api
2024-07-31 17:25:13 -03:00
saledjenic a827dee54c
fix_: removes incorrectly added keycards (#5635) 2024-07-31 19:12:02 +01:00
saledjenic dca591f39a
feat_: added new error which will be returned in case bonder fee is higher than the amount being sent (#5637) 2024-07-31 18:25:07 +01:00
Jonathan Rainville 003058915e
fix_: add missing message verification flag when creating an account (#5570) (#5631) 2024-07-30 19:05:22 +01:00
Icaro Motta 919277be38
feat(pairing)_: Fallback pairing seed (#5614) (#5627)
* feat(pairing)!: Add extra parameters and remove v2 compatibility

This commit includes the following changes:

I have added a flag to maintain 2.29 compatibility.

Breaking change in connection string

The local pairing code that was parsing the connection string had a few non-upgradable features:

It was strictly checking the number of parameters, throwing an error if the number was different. This made it impossible to add parameters to it without breaking.
It was strictly checking the version number. This made increasing the version number impossible as older client would just refuse to connect.
The code has been changed so that:

Two parameters have been added, installation-id and key-uid. Those are needed for the fallback flow.
I have also removed version from the payload, since it wasn't used.

This means that we don't support v1 anymore. V2 parsing is supported . Going forward there's a clear strategy on how to update the protocol (append parameters, don't change existing one).

https://www.youtube.com/watch?v=oyLBGkS5ICk Is a must watch video for understanding the strategy

Changed MessengerResponse to use internally a map of installations rather than an array (minor)
Just moving towards maps as arrays tend to lead to subtle bugs.

Moved pairing methods to messenger_pairing.go
Just moved some methods

Added 2 new methods for the fallback flow
FinishPairingThroughSeedPhraseProcess
https://github.com/status-im/status-go/pull/5567/files#diff-1ad620b07fa3bd5fbc96c9f459d88829938a162bf1aaf41c61dea6e38b488d54R29

EnableAndSyncInstallation

https://github.com/status-im/status-go/pull/5567/files#diff-1ad620b07fa3bd5fbc96c9f459d88829938a162bf1aaf41c61dea6e38b488d54R18

Flow for clients
Client A1 is logged in
Client A2 is logged out

Client A1 shows a QR code
Client A2 scans a QR code
If connection fails on A2, the user will be prompted to enter a seed phrase.
If the generated account matches the key-uid from the QR code, A2 should call FinishPairingThroughSeedPhraseProcess with the installation id passed in the QR code. This will send installation information over waku. The user should be shown its own installation id and prompted to check the other device.
Client A1 will receive new installation data through waku, if they are still on the qr code page, they should show a popup to the user showing the received installation id, and a way to Enable and Sync, which should call the EnableAndSyncInstallation endpoint. This should finish the fallback syncing flow.
Current issues
Currently I haven't tested that all the data is synced after finishing the flow. I see that the two devices are paired correctly, but for example the DisplayName is not changed on the receiving device. I haven't had time to look into it further.

* test_: add more test for connection string parser

* fix_: fix panic when parse old connection string

* test_: add comments for TestMessengerPairAfterSeedPhrase

* fix_: correct error description

* feat_:rename FinishPairingThroughSeedPhraseProcess to EnableInstallationAndPair

* fix_: delete leftover

* fix_: add UniqueKey method

* fix_: unify the response for InputConnectionStringForBootstrapping

* fix_: remove fields installationID and keyUID in GethStatusBackend

* fix_: rename messenger_pairing to messenger_pairing_and_syncing

---------

Co-authored-by: frank <lovefree103@gmail.com>
Co-authored-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2024-07-30 13:03:43 -03:00
Icaro Motta 9570cd2a27
fix(wallet)_: update default wallet account's color to blue for old mobile user (#5621)
Authored-by: qfrank
2024-07-29 15:22:37 -03:00
Andrey Bocharnikov 5dcff278d2
fix(mailservers)_: Do not add backoff if user action triggered store node disconnection (#5602)
fix(mailservers)_: ToggleUseMailservers should connect/disconnect from active store node

fixes status-im/status-desktop#15032
2024-07-29 18:56:42 +01:00