yenda
7b8bf647e2
[fix] superfluous keyword
...
Signed-off-by: yenda <eric@status.im>
2019-05-28 18:21:52 +02:00
Andrey Shovkoplyas
5382cad5ec
fix custom tokens
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-28 09:21:45 +02:00
Roman Volosovskyi
c7c7b50281
RAM bundle basic setup
2019-05-27 17:34:17 +03:00
yenda
9b04dc6530
[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>
2019-05-27 13:50:46 +02:00
Roman Volosovskyi
64afaf5eb3
[ #8277 ] Report a bug template
...
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-05-24 12:14:11 -04:00
Dmitry Novotochinov
1341965a0f
[ #8256 ] do not call getApplicationInfo every time card connected
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-05-24 15:36:32 +03:00
Roman Volosovskyi
9394dc2bfe
App version and more detail in logs email
2019-05-24 13:37:55 +03:00
Roman Volosovskyi
b0be9ee976
Send logs on shaking device
2019-05-24 13:35:04 +03:00
yenda
b13864d052
[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>
2019-05-23 15:11:48 +02:00
yenda
ded207ead2
[refactor] use `ethereum` `current-address` and `chain-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>
2019-05-23 14:48:43 +02:00
yenda
291c413848
[fix] remove duplicates of :hardwallet/verify-pin event
...
Signed-off-by: yenda <eric@status.im>
2019-05-23 13:52:03 +02:00
yenda
4103591fe1
[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>
2019-05-23 10:56:35 +02:00
yenda
b6fecd4e1c
[refactor] remove ethereum `call` and `call-params`
...
- use `json-rpc/eth-call` and `json-rpc/eth-transaction-call`
everywhere
- move all conversions to abi-spec
2019-05-23 10:44:15 +02:00
yenda
fc4c772c0b
[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
2019-05-23 10:44:15 +02:00
yenda
89680f4861
[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
2019-05-23 10:44:15 +02:00
yenda
2cd26c585d
[refactor] transaction history and filters
2019-05-23 10:30:33 +02:00
yenda
f1b8ba8764
[refactor] transaction details
2019-05-23 10:30:33 +02:00
yenda
b274ed9fa9
[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
2019-05-23 10:30:32 +02:00
yenda
f5c18ae7a9
[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
2019-05-23 10:30:32 +02:00
Andrey Shovkoplyas
8c349a3038
[ #8239 ] App crash when submit cryptokitties with different than it's valid domain
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-22 17:52:20 +02:00
Andrey Shovkoplyas
7a1cb54b2a
[ #8236 ] [Wallet] Custom token details and remove
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-22 16:50:05 +02:00
Edvard
0ac53000f6
Add Bloom token
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-22 16:42:20 +02:00
Roman Volosovskyi
932ef27ee8
[performance] limit number of rendered messages when open a chat
2019-05-22 16:59:13 +03:00
bitsikka
d640b4c87c
[7947] Feature: Blank out app preview screen when switching apps on mobile
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-22 15:31:50 +02:00
Churikova Tetiana
6b1c42ffcb
added accessibility-labels
...
Signed-off-by: Churikova Tetiana <churikova.tm@gmail.com>
2019-05-22 10:04:39 +02:00
Andrey Shovkoplyas
df2a9a0297
[ #8249 ] "" when grant access to ens dapp shown, it prevents the name to be registered
...
Signed-off-by: yenda <eric@status.im>
2019-05-22 09:56:40 +02:00
Volodymyr Kozieiev
add759711a
Optimized ScrollView instead of FlatList for desktop chat
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-21 10:51:36 +02:00
bitsikka
4f8399a8fd
[7715] Feature: Contextual bottom sheet on long press
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-20 17:04:21 +02:00
Andrey Shovkoplyas
23b04288f1
[ #7983 ] Basic user added ERC-20 support
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-20 14:29:38 +02:00
Roman Volosovskyi
543ccb69e8
Add send logs button to exception dialog
2019-05-20 15:25:27 +03:00
Dmitry Novotochinov
89643b425e
[ #8187 ] fix keyboard pop-up when logout after keycard setup finished
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-05-20 11:55:32 +03:00
yenda
70e889a03a
[performance] replace reduce by reduce-kv
...
For associative collections, using reduce-kv should
give a small performance gain over reduce as there is
no allocation of tuples for key/value pairs
Signed-off-by: yenda <eric@status.im>
2019-05-17 19:44:26 +02:00
Roman Volosovskyi
3226309bab
Add js logs to archive
2019-05-15 17:40:41 +03:00
yenda
b0449f3416
[fix] ipfs CID
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-14 13:44:08 +02:00
tbenr
1ff0a937ac
fixes #7371
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-14 13:42:28 +02:00
Roman Volosovskyi
74093f6843
[iOS] Allow to send email with logs on iOS
2019-05-14 12:57:05 +03:00
yenda
65f05933bc
[feature] use status-go signal subscriptions for current block
...
- use signal subscriptions to get latest block signals
- compute confirmations in transaction details from current block
dynamically
Signed-off-by: yenda <eric@status.im>
2019-05-13 15:36:58 +02:00
yenda
9b18f1d261
[feature] add varint encoding/decoding
...
Signed-off-by: yenda <eric@status.im>
2019-05-13 13:53:06 +02:00
Andrey Shovkoplyas
26390296b1
[ #8160 ] "this.props.onPress is not a function" on tapping back from transaction details screen
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-13 09:53:19 +02:00
Dmitry Novotochinov
5d6d549511
[ #7927 ] import keycard account to new device
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-05-11 23:10:02 +03:00
Dmitry Novotochinov
5762967a44
[ #7887 ] handle tag lost errors
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-05-11 23:05:33 +03:00
Dmitry Novotochinov
1f24f1c4f6
[ #7897 ] fix navigation bug on keycard tx sign
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-05-11 15:27:30 +03:00
Roman Volosovskyi
ff39426e56
[android] send logs to error-reports@status.im
2019-05-10 17:02:58 +03:00
Andrey Shovkoplyas
eaf3e8d7bd
[ #8082 ] Some dapps don't work in status when privacy mode is enabled
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-09 10:55:30 +02:00
Andrey Shovkoplyas
f3b6f98079
[ #8107 ] Wallet balance is not updated when transaction is received
...
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2019-05-08 16:40:47 +02:00
Vitaliy Vlasov
fae604b31f
Fix group chat info labels
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-08 14:45:38 +02:00
Julien Eluard
99172607d5
[ Fixes #7325 ] Add EIP681 deeplink support
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-08 14:44:24 +02:00
Dmitry Novotochinov
99e00898f9
[ #7911 #7894 ] delete account and logout after keycard reset
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-05-08 14:35:10 +03:00
Andrey Shovkoplyas
5926c2bb55
[ #8121 ] Resolved ENS address is not checksummed
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-08 11:54:53 +02:00
Julien Eluard
7b0ebf75e9
Fixed broken EIP15777 support
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-05-07 15:38:55 +02:00
Roman Volosovskyi
aaaa625e9a
[ #1442 ] Allow only decimal number in send command
2019-05-07 12:37:29 +03:00
Roman Volosovskyi
6b99225e06
[ #8123 ] Show fetch more messages only after sync
2019-05-06 17:28:22 +03:00
Roman Volosovskyi
148d43fdab
[ #7871 ] Handle multiple opened screens with qr code readers
2019-05-06 17:25:02 +03:00
Roman Volosovskyi
33621aec7c
Fix crash on switching to Ropsten (dev mode)
2019-05-06 12:55:54 +03:00
Serhy
545eb513ff
Share checksum address in wallet
...
Signed-off-by: Serhy <sergii@status.im>
2019-05-06 12:00:39 +03:00
Dmitry Novotochinov
32620e7f5b
[ #7898 ] remove pin from alert message
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-05-06 11:28:32 +03:00
Volodymyr Kozieiev
32f7f91e32
Mobile UI on desktop can be enabled in .env file
...
Signed-off-by: Volodymyr Kozieiev <vkjr.sp@gmail.com>
2019-05-03 18:11:09 +03:00
Alexandre Magno
e6bd5c5016
adding error property on input component for extension
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-05-03 10:00:48 +02:00
tbenr
3095701ec0
fixes #7355
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-05-02 18:28:23 +02:00
Julien Eluard
25b17a85e3
[ Fixed #7948 ] Do not navigate back to chat when in a DApp
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-05-02 18:27:20 +02:00
Roman Volosovskyi
f0a55dda3d
[ #8080 ] Prevent extra gap in 1:1 chats on adding group chat
2019-05-02 17:05:00 +03:00
Goran Jovic
d326148ad6
feature #4959 - eip-55 in wallet send and request
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-02 14:49:19 +02:00
Roman Volosovskyi
62e94ed4d4
[ #7848 ] Fix crash on logout with opened transactions details
2019-05-02 14:06:50 +03:00
Andrey Shovkoplyas
082188eea9
small changes in subscriptions
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-02 12:13:37 +02:00
Roman Volosovskyi
70b95a3a4d
[ #8072 ] Fix crash on deleting group chat
2019-05-02 12:09:14 +03:00
Andrey Shovkoplyas
a8bfa12da2
make contacts round again
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-02 10:52:15 +02:00
Roman Volosovskyi
3b90be2477
[ #7859 ] Allow to select chat item below plus button
2019-05-02 11:18:57 +03:00
Roman Volosovskyi
8dc7c8986e
[ #8064 ] Fix deletion of a custom mailserver
2019-05-01 20:41:11 +03:00
bitsikka
f9e5101426
[ #7819 ] fix - avoid unnecessary effects when joining/syncing already active public chat
...
Signed-off-by: yenda <eric@status.im>
2019-05-01 15:04:15 +02:00
Andrey Shovkoplyas
428464df07
re-frame subscriptions optimization
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-05-01 12:49:31 +02:00
Roman Volosovskyi
b90f1e5324
Gaps on desktop
2019-05-01 11:17:33 +03:00
Vitaliy Vlasov
e725fffe22
Move block contact related code
...
- this will avoid circular dependencies in future Tribute to Talk commits
Signed-off-by: yenda <eric@status.im>
2019-04-30 16:57:34 +02:00
Vitaliy Vlasov
1ca9294af7
[MVP TTT] Contract support for settings
...
- settings are stored in a manifest that is pointed at by the contract
- during login the contract is checked to fetch the settings
Signed-off-by: yenda <eric@status.im>
2019-04-30 14:52:33 +02:00
Roman Volosovskyi
0b32ded791
Loading indicator animation with useNativeDriver
2019-04-29 07:50:32 +03:00
Roman Volosovskyi
e8ef7a4c33
update :network with proper value
2019-04-27 19:01:01 +03:00
yenda
d383051737
[fix 8054] network in app-db is not always correct
...
- when login in after a different account using a different network
the new account inherited the network from the previous one
- this fixes it by using the account network when initializing app-db
instead of reusing current network
Signed-off-by: yenda <eric@status.im>
2019-04-27 12:03:47 +02:00
Andrey Shovkoplyas
4b62490e80
[ #8051 ] TypeError (evaluating 'a.replace') when logging out with wallet is on 'Send transaction' screen
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-26 15:46:47 +02:00
Dmitry Novotochinov
ebccb8e020
[ #7908 ] [ #7909 ] handle wrong pairing password
...
* show 'invalid pairing password' on failed pairing
* wrap view into scroll view
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-04-26 15:57:06 +03:00
Dmitry Novotochinov
08d7db80af
[ #7890 ] handle wrong keycard when signing
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-04-26 15:55:03 +03:00
Roman Volosovskyi
9b9eefbf0e
Allow to fetch more history in public chats (up to 30 days)
2019-04-26 15:53:26 +03:00
Julien Eluard
f6fce850b2
Revert "After dismissing error, no redirect to home and new qr can be"
...
This reverts commit 386c678caf
.
2019-04-26 15:27:44 +03:00
Anton Danchenko
43ac92b9b0
enable stickers in e2e builds and added accessibility labels
...
Signed-off-by: Serhy <sergii@status.im>
2019-04-26 14:32:33 +03:00
yenda
c4f719352e
[fix] wallet on-error dispatch
...
the code to dispatch an event on transaction error was not working
this fixes it
Signed-off-by: yenda <eric@status.im>
2019-04-25 17:42:34 +02:00
Roman Volosovskyi
3a2d70273e
Maintain scroll postion after fetching gap
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-25 16:01:03 +02:00
Andrea Maria Piana
494772a35d
Fix broken contact syncing
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-25 12:45:20 +02:00
Julien Eluard
bdb672e131
[ Fixes #8001 ] Fixes white flash on Android
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-25 08:59:00 +02:00
Roman Volosovskyi
c98f547349
Multiple messages gaps per chat
2019-04-24 22:33:08 +03:00
yenda
60225995b7
fix token transactions
...
Signed-off-by: yenda <eric@status.im>
2019-04-24 19:52:58 +02:00
Dmitry Novotochinov
072ab5c487
ensure card has applet installed before starting setup
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-04-24 16:37:40 +03:00
Brandon Wissmann
701773608c
remove ability to change values while signing transaction
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-04-24 12:00:00 +02:00
Andrey Shovkoplyas
722fd67938
[ #8008 ] Error "No protocol method IDeref.-deref defined for type undefined:" and crash if open DApp permissions
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-04-24 11:58:17 +02:00
Andrey Shovkoplyas
0d2be79452
react switch warnings fix
...
Signed-off-by: yenda <eric@status.im>
2019-04-23 22:36:55 +02:00
yenda
3134d1dfce
[fix] fetch wallet token transactions
...
- previously wallet transaction fetching was quite hazardous
- most of the time the `:wallet/all-tokens` map was nil so no token
was recognized
- the query for transfers was made accross 100000 blocks, now it
only checks that the first time, then from latest block checked minus
12 to follow progress of unconfirmed transactions
Signed-off-by: yenda <eric@status.im>
2019-04-23 14:24:41 +02:00
yenda
9d84ef3ad1
[feature] implement erc20 get-transaction for SNT and STT
...
- change `ethereum/get-transaction` to use call-private-rpc instead
of web3 object
- implement a version for erc20 tokens SNT and STT that provides enriches
result of get-transaction with `:recipient` and `:snt-amount`
Signed-off-by: yenda <eric@status.im>
2019-04-23 14:23:44 +02:00
yenda
2c028a474b
[refactor] send-transaction-message fx/defn
...
- turn :send-transaction-message event into an fx producing function
- allow transaction with defined on-result event to also send transaction
message
Signed-off-by: yenda <eric@status.im>
2019-04-23 14:23:00 +02:00
bitsikka
8482ea5b5a
[ #7933 ] fix - joining public chat with messages throws error
...
[#7933 ] fix - joining public chat with messages throws error
2019-04-19 13:00:23 +03:00
Andrey Shovkoplyas
6f16ccf416
[ #6457 ] Implement extension data persistence
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-04-18 15:53:22 +02:00
Andrey Shovkoplyas
159199a1b3
removed dapps list and introduced simple Dapp store dapp
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-04-18 15:49:06 +02:00
bitsikka
cd1dfb67f4
[ #7917 ] fix - Contacts are not synced between 0.11.0 and current nightly
...
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-04-16 21:33:46 +02:00
Roman Volosovskyi
5bd25515e4
Fix endless spinner on Fetch messages
2019-04-16 22:10:39 +03:00
Roman Volosovskyi
2753b0ef60
Skip fetching 24h of discovery topics on a new account
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-16 11:55:17 +02:00
Andrey Shovkoplyas
0fb9cabcfc
new profile hook and capacities
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-04-15 16:45:47 +02:00
Andrey Shovkoplyas
b721f4810f
fixes and improvements for chat command
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-04-15 16:44:42 +02:00
Kris Calabio
a06ca37de5
Emoji-only messages can be long-pressed
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-15 10:25:13 +02:00
Roman Volosovskyi
a4d8f57b09
Fetch missed range of messages
2019-04-12 16:22:44 +03:00
Emilio Silva Schlenker
64b63d5593
[ #7598 ] Beta alert on upgrading
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-11 20:50:10 +02:00
bitsikka
316a50b032
[ #7930 ] fix - No label is shown for empty chat screen if you open public chat via deep link after opening another public chat via deep link
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-11 19:35:29 +02:00
Dmitry Novotochinov
14f3b43090
[ #7892 ] generate mnemonic offline
...
pass bip39 words list to keycard sdk, instead of fetch it from github
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-04-10 14:38:30 +03:00
Jakub Sokołowski
1d00e9bb3d
change App ID for PRs on Android to avoid replacing release
...
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-04-10 11:49:40 +02:00
bitsikka
be2b2a112e
[ #7931 ] fix - Text for chat name for empty public chat is not centered if contains > 1 row
...
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2019-04-08 19:27:37 +02:00
bitsikka
234a51c97e
[ #4158 ] Fix New messages counter being shown for already seen messages
...
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2019-04-08 19:26:57 +02:00
Kris Calabio
386c678caf
After dismissing error, no redirect to home and new qr can be
...
scanned.
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2019-04-08 19:26:24 +02:00
bitsikka
22bd2f1761
[ #7799 ] fix chat does not scroll if touch starts on top of datemark
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-05 17:08:04 +02:00
Julien Eluard
7dae2ecaf6
Fixed incorrect wallet on-open payload
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-04-05 16:00:01 +02:00
Dmitry Novotochinov
4decedf5f6
Revert "Revert "[ #7133 ] sign tx with keycard""
...
This reverts commit 4ccb1ea52d
.
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-04-05 15:49:47 +03:00
Andrea Maria Piana
f8674c0ee1
Add reading nodes from contract
...
This PR is part of network incentivisation. It adds a way for a client
to pull nodes from a contract.
This is done by selecting the `eth.contract` fleet. If that is selected
on login it will fetch nodes from a contract and pass them to status-go.
If these can't be fetched, it will default to `eth.beta`.
Currently contract information are hard-coded, but eventually the user
will be able to add their own (probably).
Toggled off in release.
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2019-04-05 14:32:15 +02:00
yenda
9b47275249
[fix] don't lose big number precision above 53 bits in abi-spec
...
- convert to string instead of numbers in hex-to-number
- remove usage of full web3 lib
Signed-off-by: yenda <eric@status.im>
2019-04-04 13:53:15 +02:00
bitsikka
6aae0b76b9
[ #7454 ] fix add basic copy to public chat empty screen state + related issues/feature regarding chat message-views intro screens for all chats types
...
[#7454 ] fix add basic copy to public chat empty screen state + chat messages-views intro screens for all chats
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-04-04 12:34:37 +02:00
yenda
c9a8fb2684
[fix] contract call effect should destructure keys not vector
...
- return params decoding should return nil and not "0x"
Signed-off-by: yenda <eric@status.im>
2019-04-04 10:04:29 +02:00
yenda
06f72e749e
[fix] missing cofx for ipfs/cat call in contenthash/cat
...
Signed-off-by: yenda <eric@status.im>
2019-04-04 10:01:50 +02:00
tbenr
38fc712f07
fixes #7667
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-04-03 11:50:56 +02:00
yenda
e690dbdf89
[feature] contracts namespace
...
* `open-sign-transaction-flow` cleaner version of
`open-modal-wallet-for-transaction`
* The contract namespace provides the `call` effect:
- takes contract identifier from contracts, method, params and callback
- select the correct contract address based on current network
- encode params, decodes results
- start wallet transaction flow for write calls
Signed-off-by: yenda <eric@status.im>
2019-04-03 10:26:26 +02:00
Dmitry Novotochinov
4ccb1ea52d
Revert "[ #7133 ] sign tx with keycard"
...
This reverts commit feffcaf33d
.
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-04-02 20:12:40 +03:00
Dmitry Novotochinov
feffcaf33d
[ #7133 ] sign tx with keycard
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-04-02 18:07:41 +03:00
Julien Eluard
e66452ba4b
Fixed missing parameter usage
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-04-02 14:35:03 +02:00
Julien Eluard
fb27e13a31
[ Fixed #7864 ] Removed now irrelevant dapps
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-04-02 13:08:44 +02:00
tbenr
6e84cf22a9
fixes #7363
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-04-02 13:06:58 +02:00
Roman Volosovskyi
24a978d442
Migrate to RN 0.59.2
2019-04-01 17:42:57 +03:00
Vitaliy Vlasov
76c2ad2bc4
Add mailserver and bootnodes settings
...
Signed-off-by: Vitaliy Vlasov <siphiuel@gmail.com>
2019-03-29 14:20:53 +02:00
tbenr
648dc9b74a
fixes value -> data
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-03-29 09:14:19 +01:00
yenda
89902947b6
[feature] contenthash utility namespace
...
- support for ipfs only
- provides fns to encode and decode contenthashes as defined in EIP1577
- provides cat fx to retrieve contenthash
Signed-off-by: yenda <eric@status.im>
2019-03-28 17:23:00 +01:00
yenda
884a44b5df
use call-private-rpc in ethereum/call
...
- remove web3 parameter for ethereum/call
- remove first parameter for callback of ethereum/call which
was always nil
Signed-off-by: yenda <eric@status.im>
2019-03-28 17:20:36 +01:00
Julien Eluard
1bfa3cf178
Upgraded to latest pluto
...
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
2019-03-28 15:48:44 +01:00
yenda
a6616033f4
[refactor] add check in abi-spec decode and expect a hex string
...
Signed-off-by: yenda <eric@status.im>
2019-03-28 15:38:20 +01:00
yenda
9aea669da3
[feature] add ipfs module to add and cat content on ipfs
...
Signed-off-by: yenda <eric@status.im>
2019-03-28 14:41:09 +01:00
yenda
1de40487e8
docstring have to be placed before arglist in defn
...
Signed-off-by: yenda <eric@status.im>
2019-03-28 13:38:23 +01:00
Andrea Maria Piana
3eb570f082
Set chaos mode every time, dont show the popup everytime
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-03-26 15:58:21 +01:00
Andrea Maria Piana
29c168dfa1
Upgrade status-go and turn chaos mode on
...
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-03-26 10:59:21 +01:00
yenda
26b97ddf43
introduce system-tags
...
Signed-off-by: yenda <eric@status.im>
2019-03-25 16:55:09 +01:00
Roman Volosovskyi
dd4d7457a5
[ #7821 ] Fix navigation on sending eth from chat
2019-03-25 13:03:53 +02:00
Roman Volosovskyi
d4d6757c69
[ #4935 ] Prevent connecting to the network with wrong id
2019-03-25 09:45:52 +02:00
yenda
d77c2f9c78
fix message on empty search results
...
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-03-22 14:26:05 +01:00
yenda
d63b16b138
remove white line on android wallet screen
...
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-03-22 14:03:36 +01:00
Roman Volosovskyi
65e7e06b27
[ #7681 ] Show confirmation dialog on switching to network with upstream RPC
2019-03-22 13:23:10 +02:00
Andrey Shovkoplyas
5e1713ddf8
[ #7776 ] Blank screen after username submit when creating new account on Desktop
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-03-21 17:12:42 +01:00
Roman Volosovskyi
8f40f796f5
Add validation tooltip to mailserver/bootnode address input
2019-03-21 16:41:18 +02:00
etherman
e8116e7d62
added etherman to dapp list
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-03-21 13:44:52 +01:00
yenda
5e7186ed52
[fix 5695] remove close icon in add to contacts bar
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-03-21 13:44:00 +01:00
Andrea Maria Piana
25ea0192e5
Fix qr code and bootnode
...
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
2019-03-21 13:40:45 +01:00
Andrey Shovkoplyas
d698ffe09e
[ #7764 ] Image on Welcome to Status screen is not center aligned on small device screens
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-03-21 13:02:31 +01:00