-
Notifications
You must be signed in to change notification settings - Fork 984
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
[Fixes #8066] Added native ENS registration #8248
Commits on May 22, 2019
-
Configuration menu - View commit details
-
Copy full SHA for a6bd0fc - Browse repository at this point
Copy the full SHA a6bd0fcView commit details
Commits on May 29, 2019
-
[#8239] App crash when submit cryptokitties with different than it's …
…valid domain Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for aa49c7e - Browse repository at this point
Copy the full SHA aa49c7eView commit details -
[feature] use subscriptions for tokens
- removes fetching of last 100000 blocks of token transfers from the wallet pull loop - fetches the last 100000 blocks of token transfers at startup - replaces pulling by subscriptions to ethlogs for token transfers
Configuration menu - View commit details
-
Copy full SHA for c5a6204 - Browse repository at this point
Copy the full SHA c5a6204View commit details -
[feature] use new block signal to get new transactions
- remove the transaction fetching loop entirely to rely only on subscription for live transactions and token transfer updates - fetch token transfers history via etherscan API to lift the 100000 blocks limit on token transfers history - inbound token transfers are catched via a filter on ethlogs - outbound token transfers and other transactions are catched by filtering transaction in current block that have the wallet address as to or from field
Configuration menu - View commit details
-
Copy full SHA for 9435641 - Browse repository at this point
Copy the full SHA 9435641View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e95003 - Browse repository at this point
Copy the full SHA 0e95003View commit details -
Configuration menu - View commit details
-
Copy full SHA for d755296 - Browse repository at this point
Copy the full SHA d755296View commit details -
[performance] improve wallet update performances
`wallet-autoconfig-token` is a very expensive call on mainnet because it checks the balance of every known token. it is called: - when wallet is refreshed by pulling - when user goes on any wallet screen this PR changes that by: - calling it only when the wallet is initialized and there is no visible-token configuration it only calls update-wallet when a new transaction arrives
Configuration menu - View commit details
-
Copy full SHA for 85ed5cf - Browse repository at this point
Copy the full SHA 85ed5cfView commit details -
[refactoring] remove web3, clean up wallet effects
- introduce json-rpc namespace, which provides `call` and `eth-call`, a generic way of calling a json-rpc method taking care of conversions and error handling - remove web3 usage from wallet - clean up effects, reducing the amount of computations when login in
Configuration menu - View commit details
-
Copy full SHA for 143c9f5 - Browse repository at this point
Copy the full SHA 143c9f5View commit details -
[refactor] remove ethereum
call
andcall-params
- use `json-rpc/eth-call` and `json-rpc/eth-transaction-call` everywhere - move all conversions to abi-spec
Configuration menu - View commit details
-
Copy full SHA for d519ab5 - Browse repository at this point
Copy the full SHA d519ab5View commit details -
[fix] always show tokens that have a balance
- temporary fix before visible assets are fixed - the problem is that you can't hide an asset with the way it currently works, it will come back every time as long as there is a balance for it Signed-off-by: yenda <eric@status.im>
Configuration menu - View commit details
-
Copy full SHA for a26bfaf - Browse repository at this point
Copy the full SHA a26bfafView commit details -
Signed-off-by: Anton Danchenko <ant.danchenko@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5cd64e2 - Browse repository at this point
Copy the full SHA 5cd64e2View commit details -
[fix] remove duplicates of :hardwallet/verify-pin event
Signed-off-by: yenda <eric@status.im>
Configuration menu - View commit details
-
Copy full SHA for eeb1343 - Browse repository at this point
Copy the full SHA eeb1343View commit details -
add MOBILE_UI_FOR_DESKTOP=0 to other env files
Signed-off-by: Jakub Sokołowski <jakub@status.im>
Configuration menu - View commit details
-
Copy full SHA for c63c65e - Browse repository at this point
Copy the full SHA c63c65eView commit details -
[refactor] use
ethereum
current-address
andchain-keyword
in many places in the codebase, we are doing various destructuring and function calls to get the normalized current address and the chain keyword for the current network this PR replace all usages by utility functions introduced recently Signed-off-by: yenda <eric@status.im>
Configuration menu - View commit details
-
Copy full SHA for 6090642 - Browse repository at this point
Copy the full SHA 6090642View commit details -
[refactor] move utils.ethereum to ethereum
move utils.ethereum.tokens to ethereum.tokens move utils.ethereum.abi-spec to ethereum.abi-spec move utils.ethereum.core to ethereum.core move utils.ethereum.eip165 to ethereum.eip165 move utils.ethereum.eip55 to ethereum.eip55 move utils.ethereum.eip681 to ethereum.eip681 move utils.ethereum.ens to ethereum.ens move utils.ethereum.erc721 to ethereum.erc721 move utils.ethereum.mnemonics to ethereum.mnemonics move utils.ethereum.resolver to ethereum.resolver move utils.ethereum.macros to ethereum.macros Signed-off-by: yenda <eric@status.im>
Configuration menu - View commit details
-
Copy full SHA for b546fb2 - Browse repository at this point
Copy the full SHA b546fb2View commit details -
[nix] patch realm as a nodePackage for linux and darwin and use it fr…
…om nix store, add to default nix-shell buildDependencies, regenerate nodePackages with node2nix 1.6.1
Configuration menu - View commit details
-
Copy full SHA for 6420e8c - Browse repository at this point
Copy the full SHA 6420e8cView commit details -
nix: Move debug realm into desktop folder and use RN cli from node_mo…
…dulesSigned-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d546396 - Browse repository at this point
Copy the full SHA d546396View commit details -
Configuration menu - View commit details
-
Copy full SHA for d25b617 - Browse repository at this point
Copy the full SHA d25b617View commit details -
Configuration menu - View commit details
-
Copy full SHA for a105346 - Browse repository at this point
Copy the full SHA a105346View commit details -
[#8256] do not call getApplicationInfo every time card connected
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6b9684c - Browse repository at this point
Copy the full SHA 6b9684cView commit details -
Signed-off-by: Jakub Sokołowski <jakub@status.im>
Configuration menu - View commit details
-
Copy full SHA for 44fd9b4 - Browse repository at this point
Copy the full SHA 44fd9b4View commit details -
[dev feature] extend the defn macro
the defn macro knows register the function as an events under the keywords provided in the :events key of the attributes map. It also adds the interceptors provided in the :interceptors map exemple: ```clojure (fx/defn hello4 {:doc "this function is useless as well" :events [:test/valid1 :test/valid2]} [{:keys [db]} b] {:db (assoc db :a b) :b (:a db)}) ``` Signed-off-by: yenda <eric@status.im>
Configuration menu - View commit details
-
Copy full SHA for 025210c - Browse repository at this point
Copy the full SHA 025210cView commit details -
Configuration menu - View commit details
-
Copy full SHA for d0733d5 - Browse repository at this point
Copy the full SHA d0733d5View commit details -
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 756636e - Browse repository at this point
Copy the full SHA 756636eView commit details -
Enable asset in Wallet before usage
Signed-off-by: Serhy <sergii@status.im>
Configuration menu - View commit details
-
Copy full SHA for 4294281 - Browse repository at this point
Copy the full SHA 4294281View commit details -
Signed-off-by: yenda <eric@status.im>
Configuration menu - View commit details
-
Copy full SHA for 32bcd4a - Browse repository at this point
Copy the full SHA 32bcd4aView commit details -
save keycard key-uid to account and use it to login
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for cab3629 - Browse repository at this point
Copy the full SHA cab3629View commit details -
Signed-off-by: Churikova Tetiana <churikova.tm@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2ad1c3f - Browse repository at this point
Copy the full SHA 2ad1c3fView commit details -
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
Configuration menu - View commit details
-
Copy full SHA for ce3a5e3 - Browse repository at this point
Copy the full SHA ce3a5e3View commit details -
[fix] on-result event for in app transactions
Signed-off-by: yenda <eric@status.im>
Configuration menu - View commit details
-
Copy full SHA for f9138e3 - Browse repository at this point
Copy the full SHA f9138e3View commit details -
Prepare to use status-go based protocol: 1-1 and public chat manageme…
…nt APIs. Connect to stubs of status-go protocol API, behind the flag. Since status-go isn't updated yet, setting this flag will break the app. What needs to be tested is no regressions in a normal mode. Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
Configuration menu - View commit details
-
Copy full SHA for d267d5b - Browse repository at this point
Copy the full SHA d267d5bView commit details -
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
Configuration menu - View commit details
-
Copy full SHA for 75ed78d - Browse repository at this point
Copy the full SHA 75ed78dView commit details -
Update Play Store phone screenshots
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
Configuration menu - View commit details
-
Copy full SHA for 23eae3c - Browse repository at this point
Copy the full SHA 23eae3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f11c319 - Browse repository at this point
Copy the full SHA f11c319View commit details -
Configuration menu - View commit details
-
Copy full SHA for 733c87b - Browse repository at this point
Copy the full SHA 733c87bView commit details -
[performance] improve wallet update performances
`wallet-autoconfig-token` is a very expensive call on mainnet because it checks the balance of every known token. it is called: - when wallet is refreshed by pulling - when user goes on any wallet screen this PR changes that by: - calling it only when the wallet is initialized and there is no visible-token configuration it only calls update-wallet when a new transaction arrives
Configuration menu - View commit details
-
Copy full SHA for 7fe060d - Browse repository at this point
Copy the full SHA 7fe060dView commit details -
[refactor] remove ethereum
call
andcall-params
- use `json-rpc/eth-call` and `json-rpc/eth-transaction-call` everywhere - move all conversions to abi-spec
Configuration menu - View commit details
-
Copy full SHA for 862b1d6 - Browse repository at this point
Copy the full SHA 862b1d6View commit details -
[refactor] move utils.ethereum to ethereum
move utils.ethereum.tokens to ethereum.tokens move utils.ethereum.abi-spec to ethereum.abi-spec move utils.ethereum.core to ethereum.core move utils.ethereum.eip165 to ethereum.eip165 move utils.ethereum.eip55 to ethereum.eip55 move utils.ethereum.eip681 to ethereum.eip681 move utils.ethereum.ens to ethereum.ens move utils.ethereum.erc721 to ethereum.erc721 move utils.ethereum.mnemonics to ethereum.mnemonics move utils.ethereum.resolver to ethereum.resolver move utils.ethereum.macros to ethereum.macros Signed-off-by: yenda <eric@status.im>
Configuration menu - View commit details
-
Copy full SHA for 8addae6 - Browse repository at this point
Copy the full SHA 8addae6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a8f46f - Browse repository at this point
Copy the full SHA 2a8f46fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1dd84fa - Browse repository at this point
Copy the full SHA 1dd84faView commit details