edge-currency-accountbased 0.7.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +713 -0
- package/LICENSE +29 -0
- package/README.md +63 -0
- package/index.js +3 -0
- package/lib/binance/bnbEngine.js +591 -0
- package/lib/binance/bnbInfo.js +43 -0
- package/lib/binance/bnbPlugin.js +168 -0
- package/lib/binance/bnbSchema.js +83 -0
- package/lib/binance/bnbTypes.js +39 -0
- package/lib/common/engine.js +918 -0
- package/lib/common/plugin.js +152 -0
- package/lib/common/schema.js +108 -0
- package/lib/common/types.js +85 -0
- package/lib/common/utils.js +378 -0
- package/lib/eos/eosEngine.js +1216 -0
- package/lib/eos/eosInfo.js +98 -0
- package/lib/eos/eosPlugin.js +314 -0
- package/lib/eos/eosSchema.js +190 -0
- package/lib/eos/eosTypes.js +88 -0
- package/lib/eos/telosInfo.js +94 -0
- package/lib/eos/waxInfo.js +95 -0
- package/lib/ethereum/etcInfo.js +121 -0
- package/lib/ethereum/ethEngine.js +832 -0
- package/lib/ethereum/ethInfo.js +1300 -0
- package/lib/ethereum/ethMiningFees.js +157 -0
- package/lib/ethereum/ethNetwork.js +2195 -0
- package/lib/ethereum/ethPlugin.js +377 -0
- package/lib/ethereum/ethSchema.js +61 -0
- package/lib/ethereum/ethTypes.js +461 -0
- package/lib/ethereum/ftminfo.js +102 -0
- package/lib/ethereum/rskInfo.js +101 -0
- package/lib/fio/fioConst.js +38 -0
- package/lib/fio/fioEngine.js +1250 -0
- package/lib/fio/fioError.js +38 -0
- package/lib/fio/fioInfo.js +72 -0
- package/lib/fio/fioPlugin.js +486 -0
- package/lib/fio/fioSchema.js +56 -0
- package/lib/index.js +44 -0
- package/lib/pluginError.js +32 -0
- package/lib/react-native/edge-currency-accountbased.js +239635 -0
- package/lib/react-native/edge-currency-accountbased.js.map +1 -0
- package/lib/react-native-io.js +41 -0
- package/lib/stellar/stellarEngine.js +563 -0
- package/lib/stellar/stellarInfo.js +37 -0
- package/lib/stellar/stellarPlugin.js +215 -0
- package/lib/stellar/stellarSchema.js +54 -0
- package/lib/stellar/stellarTypes.js +66 -0
- package/lib/tezos/tezosEngine.js +497 -0
- package/lib/tezos/tezosInfo.js +60 -0
- package/lib/tezos/tezosPlugin.js +174 -0
- package/lib/tezos/tezosTypes.js +110 -0
- package/lib/xrp/xrpEngine.js +583 -0
- package/lib/xrp/xrpInfo.js +47 -0
- package/lib/xrp/xrpPlugin.js +229 -0
- package/lib/xrp/xrpSchema.js +74 -0
- package/lib/xrp/xrpTypes.js +38 -0
- package/package.json +139 -0
- package/postinstall.sh +7 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,713 @@
|
|
|
1
|
+
# edge-currency-accountbased
|
|
2
|
+
|
|
3
|
+
# 0.7.72 (2021-09-17)
|
|
4
|
+
|
|
5
|
+
- Remove postinstall-postinstall dependency
|
|
6
|
+
|
|
7
|
+
# 0.7.71 (2021-08-24)
|
|
8
|
+
|
|
9
|
+
- FTM: Add apikey to ftmscan.com requests
|
|
10
|
+
|
|
11
|
+
# 0.7.70 (2021-08-20)
|
|
12
|
+
|
|
13
|
+
- Fix: Regression caused by EIP-681 parseUri implementation
|
|
14
|
+
|
|
15
|
+
# 0.7.69 (2021-08-18)
|
|
16
|
+
|
|
17
|
+
- Add: Improved support for EIP-681 URI parsing of payments and token transfers
|
|
18
|
+
- Fix: Unable to send transactions on ETC, FTM, and RSK networks
|
|
19
|
+
|
|
20
|
+
# 0.7.68 (2021-08-02)
|
|
21
|
+
|
|
22
|
+
- Add base fee multiplier ETH fee algorithm (EIP 1559)
|
|
23
|
+
- Add Ethereum testnet server URIs to support testnets for development
|
|
24
|
+
- Fix blockbook server URIs
|
|
25
|
+
|
|
26
|
+
# 0.7.67 (2021-07-20)
|
|
27
|
+
|
|
28
|
+
- Add x-address decode for xrp parse uri
|
|
29
|
+
|
|
30
|
+
# 0.7.66 (2021-07-20)
|
|
31
|
+
|
|
32
|
+
- Throw error if there is a checksum present and it fails verification + tests
|
|
33
|
+
|
|
34
|
+
# 0.7.65 (2021-07-06)
|
|
35
|
+
|
|
36
|
+
- ETH: Add checksum support
|
|
37
|
+
|
|
38
|
+
# 0.7.64 (2021-07-01)
|
|
39
|
+
|
|
40
|
+
- BNB: Add additional API servers
|
|
41
|
+
|
|
42
|
+
# 0.7.63 (2021-06-21)
|
|
43
|
+
|
|
44
|
+
- Add native fee amount to InsufficientFundsError
|
|
45
|
+
- FIO: Fixed timestamps in get_actions
|
|
46
|
+
|
|
47
|
+
# 0.7.62 (2021-06-08)
|
|
48
|
+
|
|
49
|
+
- FIO: Randomize apiUrl when sending a new request
|
|
50
|
+
|
|
51
|
+
# 0.7.61 (2021-06-03)
|
|
52
|
+
|
|
53
|
+
- FIO: Add ALREADY_REGISTERED error rype
|
|
54
|
+
- Prevent unnecessary fetch calls when amberdata server lists are empty
|
|
55
|
+
- Remove icon URLs
|
|
56
|
+
|
|
57
|
+
# 0.7.60 (2021-05-25)
|
|
58
|
+
|
|
59
|
+
- Fix a possible race condition where the last queried block height is saved but the actual transactions are not
|
|
60
|
+
- Always set this.walletLocalDataDirty = true if any transactions have changed
|
|
61
|
+
- ETH: Use the default token gas limit if getCode reveals the destination is a contract and estimateGas fails to return a gas value
|
|
62
|
+
- ETH: Allow ethgasstation safeLow estimate less than 1
|
|
63
|
+
- Update logging
|
|
64
|
+
|
|
65
|
+
# 0.7.59 (2021-05-25)
|
|
66
|
+
|
|
67
|
+
- XRP: Remove bogus length checks from the XRP key import
|
|
68
|
+
- FIO: Refactor SDK initialization so it's only started once per wallet
|
|
69
|
+
|
|
70
|
+
# 0.7.58 (2021-05-12)
|
|
71
|
+
|
|
72
|
+
- XRP: Change destination tag limit to 10 digits and less than UINT32
|
|
73
|
+
|
|
74
|
+
# 0.7.57 (2021-05-11)
|
|
75
|
+
|
|
76
|
+
- FTM: Add fUSDT support
|
|
77
|
+
- XRP: Pass default fee to preparePayment
|
|
78
|
+
- XRP: Remove unused 'type' field from transaction validation
|
|
79
|
+
|
|
80
|
+
# 0.7.56 (2021-05-07)
|
|
81
|
+
|
|
82
|
+
- Fix metadata issue for accelerated ETH txs (RBF tx)
|
|
83
|
+
- Add Fantom
|
|
84
|
+
|
|
85
|
+
# 0.7.55 (2021-05-03)
|
|
86
|
+
|
|
87
|
+
- Remove allowance transaction filtering from addTransaction
|
|
88
|
+
|
|
89
|
+
# 0.7.54 (2021-04-23)
|
|
90
|
+
|
|
91
|
+
- ETH: Add error reporting to tx lists and gas price query for future debugging
|
|
92
|
+
- FIO: Reduce logging verbosity
|
|
93
|
+
- BNB: Enable resync
|
|
94
|
+
- Upgrade edge-core-js to v0.17.31
|
|
95
|
+
- Add additional log types `crash` and `breadcrumb`
|
|
96
|
+
|
|
97
|
+
# 0.7.53 (2021-04-19)
|
|
98
|
+
|
|
99
|
+
- FIO: Change some error logging levels from error to info to reduce log verbosity
|
|
100
|
+
|
|
101
|
+
# 0.7.52 (2021-04-12)
|
|
102
|
+
|
|
103
|
+
- ETH: Add UNI ERC20 token
|
|
104
|
+
- ETH: Add eth_call to token balance loop
|
|
105
|
+
- FIO: Logging cleanup
|
|
106
|
+
- FIO: Allow sending tokens without transactionJson or otherParams
|
|
107
|
+
|
|
108
|
+
# 0.7.51 (2021-04-01)
|
|
109
|
+
|
|
110
|
+
- XRP: Use default fee of (0.00001 XRP) if SDK is unable to query for recommended fee
|
|
111
|
+
- Update content URL
|
|
112
|
+
|
|
113
|
+
# 0.7.50 (2021-03-16)
|
|
114
|
+
|
|
115
|
+
- FIO: Refactor FIO action to be passed in otherParams of edgeSpendInfo
|
|
116
|
+
|
|
117
|
+
# 0.7.49 (2021-03-15)
|
|
118
|
+
|
|
119
|
+
- EOS: Add dfuse graphql API to search for transactions
|
|
120
|
+
- ETH: Add new Golem token GLM
|
|
121
|
+
- Add promiseNy util to verify API responses from multiple sources
|
|
122
|
+
- Add contract address checking to Blockbook
|
|
123
|
+
|
|
124
|
+
# 0.7.48 (2021-02-26)
|
|
125
|
+
|
|
126
|
+
- EOS: Add dfuse API to getKeyAccounts method
|
|
127
|
+
- ETH: Double gas limit estimates when sending ETH to a contract address
|
|
128
|
+
|
|
129
|
+
# 0.7.47 (2021-02-23)
|
|
130
|
+
|
|
131
|
+
- ETH: Fix RBF bug: Use correct currencyCode for tx lookup in ethEngine saveTx
|
|
132
|
+
- FIO: Added transfer address action
|
|
133
|
+
|
|
134
|
+
# 0.7.46 (2021-02-12)
|
|
135
|
+
|
|
136
|
+
- Fix variable typo
|
|
137
|
+
|
|
138
|
+
# 0.7.45 (2021-02-11)
|
|
139
|
+
|
|
140
|
+
- Add DeFi ERC20 tokens
|
|
141
|
+
- Update FIO server list
|
|
142
|
+
- Add additional logging
|
|
143
|
+
|
|
144
|
+
# 0.7.44 (2021-02-02)
|
|
145
|
+
|
|
146
|
+
- ETH: Bump max gas limit to 300000
|
|
147
|
+
- ETH: Add additional estimateGas params that cloudflare requires
|
|
148
|
+
- ETH: Put RPC error handling in multicastServers
|
|
149
|
+
- ETH: Throw error when custom fee isn't valid or doesn't reach network minimums
|
|
150
|
+
|
|
151
|
+
# 0.7.43 (2021-01-25)
|
|
152
|
+
|
|
153
|
+
- EOS: Fix get_key_accounts endpoint and enforce 12 character rule on new account names
|
|
154
|
+
- Adjust log levels
|
|
155
|
+
- Update to eslint-config-standard-kit to v0.15.1
|
|
156
|
+
|
|
157
|
+
# 0.7.42 (2021-01-02)
|
|
158
|
+
|
|
159
|
+
- Add WBTC
|
|
160
|
+
- Fix Aave token parameters
|
|
161
|
+
|
|
162
|
+
# 0.7.41 (2021-01-01)
|
|
163
|
+
|
|
164
|
+
- Capitalize Aave token codes
|
|
165
|
+
|
|
166
|
+
# 0.7.40 (2020-12-31)
|
|
167
|
+
|
|
168
|
+
- Add Aave ERC20 tokens
|
|
169
|
+
- FIO: Add additional domain transfer transaction
|
|
170
|
+
|
|
171
|
+
# 0.7.39 (2020-12-21)
|
|
172
|
+
|
|
173
|
+
- Double gas estimate when sending ETH to a contract to reduce chance of failure
|
|
174
|
+
- FIO logging cleanup
|
|
175
|
+
|
|
176
|
+
# 0.7.38 (2020-12-13)
|
|
177
|
+
|
|
178
|
+
- Update ANT contract address and rename original token ANTV1
|
|
179
|
+
|
|
180
|
+
# 0.7.37 (2020-12-09)
|
|
181
|
+
|
|
182
|
+
- EOS: Ignore bogus accounts getting returned by nodes
|
|
183
|
+
|
|
184
|
+
# 0.7.36 (2020-12-07)
|
|
185
|
+
|
|
186
|
+
- Remove eosrio from hyperion server list
|
|
187
|
+
|
|
188
|
+
# 0.7.35 (2020-12-04)
|
|
189
|
+
|
|
190
|
+
- FIO: Refactored multicast servers, add preparedTrx support, Removed non-SSL FIO servers
|
|
191
|
+
- Used fetchCors for Trezor blookbook server
|
|
192
|
+
|
|
193
|
+
# 0.7.34 (2020-11-23)
|
|
194
|
+
|
|
195
|
+
- Add Blockbook API support for Ethereum
|
|
196
|
+
- Disable Alethio API support
|
|
197
|
+
- Remove Supereth API support
|
|
198
|
+
|
|
199
|
+
# 0.7.33 (2020-11-18)
|
|
200
|
+
|
|
201
|
+
- Fix EOSIO metaToken send issues (contractAddress and denom)
|
|
202
|
+
|
|
203
|
+
# 0.7.32 (2020-11-16)
|
|
204
|
+
|
|
205
|
+
- WAX changes
|
|
206
|
+
- Remove unnecessary logs and pass in token data to multiple routines
|
|
207
|
+
- Enable adding token and fetching token balance for EOSIO chains
|
|
208
|
+
- Merge in EOSIO token implementation
|
|
209
|
+
- Fix erroneous WAX activation call and publicKey typo
|
|
210
|
+
|
|
211
|
+
# 0.7.31 (2020-11-11)
|
|
212
|
+
|
|
213
|
+
- WAX Integration
|
|
214
|
+
- Update endpoint for finding EOSIO account by key
|
|
215
|
+
- Initial WAX integration
|
|
216
|
+
- Remove unnecessary comments and disable Greymass Fuel for Telos
|
|
217
|
+
- Enable WAX activation process
|
|
218
|
+
- Move WAX activation to eosEngine and attempt activation on engine start
|
|
219
|
+
- Adjustment to EosFuel routine
|
|
220
|
+
- Make singleApiActivation private for Wax
|
|
221
|
+
- FIO changes:
|
|
222
|
+
- Check if domain is public
|
|
223
|
+
- Check for transferred addresses/domains.
|
|
224
|
+
- Transfer fio domain changes.
|
|
225
|
+
- Removed FIO str from logs.
|
|
226
|
+
- RBF support for ETH, RSK, and ETH tokens
|
|
227
|
+
|
|
228
|
+
# 0.7.30 (2020-10-08)
|
|
229
|
+
|
|
230
|
+
- Add onAddressChanged callback to EOS to inform GUI of new account activation
|
|
231
|
+
|
|
232
|
+
# 0.7.29 (2020-10-04)
|
|
233
|
+
|
|
234
|
+
- Add postinstall script to npm package
|
|
235
|
+
|
|
236
|
+
# 0.7.28 (2020-10-04)
|
|
237
|
+
|
|
238
|
+
- Replace schema with cleaners for transaction history api calls
|
|
239
|
+
- Add cloudflare rpcServer
|
|
240
|
+
- Only calculate 'data' parameter if using default fees
|
|
241
|
+
- Fix TRANSACTION_STORE_FILE data initialization
|
|
242
|
+
- Fix hex number parsing
|
|
243
|
+
- Pass fetchCors function to amberdata api calls
|
|
244
|
+
- Remove unnecessary log
|
|
245
|
+
- Add postinstall script for node14 dependency compatibility (usb and node-hid)
|
|
246
|
+
- Update cleaners
|
|
247
|
+
|
|
248
|
+
# 0.7.27 (2020-10-01)
|
|
249
|
+
|
|
250
|
+
- Add FIO import private key support
|
|
251
|
+
- Fix TLOS block explorer link
|
|
252
|
+
|
|
253
|
+
# 0.7.25 (2020-09-18)
|
|
254
|
+
|
|
255
|
+
- Upgrade FIO SDK to v1.1.0
|
|
256
|
+
- Retry failed FIO tx broadcasts
|
|
257
|
+
- Update FIO explorer
|
|
258
|
+
|
|
259
|
+
# 0.7.24 (2020-09-16)
|
|
260
|
+
|
|
261
|
+
- Add Telos (TLOS)
|
|
262
|
+
- EOS fixes
|
|
263
|
+
|
|
264
|
+
# 0.7.23 (2020-09-16)
|
|
265
|
+
|
|
266
|
+
- FIO register domain
|
|
267
|
+
- FIO check pub address error handling
|
|
268
|
+
|
|
269
|
+
# 0.7.22 (2020-09-03)
|
|
270
|
+
|
|
271
|
+
- Added free FIO address link
|
|
272
|
+
- Updated FIO api urls to remove port
|
|
273
|
+
|
|
274
|
+
# 0.7.21 (2020-09-02)
|
|
275
|
+
|
|
276
|
+
- Update ETH gas price sanity check values
|
|
277
|
+
|
|
278
|
+
# 0.7.20 (2020-08-25)
|
|
279
|
+
|
|
280
|
+
- Add Synthetix ERC20 tokens (SNX, SBTC, and SUSD)
|
|
281
|
+
- Save FIO tx fee between makeSpend() requests to the same address to reduce network calls
|
|
282
|
+
- Pass parent currency code in error when there's insufficient parent currency to pay transaction fee
|
|
283
|
+
- Increase timeout on network-dependent block height test
|
|
284
|
+
|
|
285
|
+
# 0.7.19 (2020-08-20)
|
|
286
|
+
|
|
287
|
+
- Use eth_estimategas and eth_getcode to improve ETH and ERC20 token transaction fee estimation
|
|
288
|
+
|
|
289
|
+
# 0.7.18 (2020-08-12)
|
|
290
|
+
|
|
291
|
+
- Disable asyncWaterfall for some FIO operations
|
|
292
|
+
- Save numTransactions in localWalletData
|
|
293
|
+
- Add cleaners to Etherscan get tx api responses
|
|
294
|
+
|
|
295
|
+
# 0.7.17 (2020-08-04)
|
|
296
|
+
|
|
297
|
+
- FIO checkTransactions algorithm update to page transactions
|
|
298
|
+
- Fix REPv2 token address
|
|
299
|
+
|
|
300
|
+
# 0.7.16 (2020-07-29)
|
|
301
|
+
|
|
302
|
+
- Add REPV2 ERC20 token
|
|
303
|
+
|
|
304
|
+
# 0.7.15 (2020-07-23)
|
|
305
|
+
|
|
306
|
+
- Add new Tezos API
|
|
307
|
+
- FIO - fix multicastServers
|
|
308
|
+
|
|
309
|
+
# 0.7.14 (2020-07-12)
|
|
310
|
+
|
|
311
|
+
- FIO fix domain reg url
|
|
312
|
+
|
|
313
|
+
# 0.7.13 (2020-07-10)
|
|
314
|
+
|
|
315
|
+
- Add get domains method to FIO plugin
|
|
316
|
+
- FIO fallback ref mode
|
|
317
|
+
- Add fee strings to ethEngine makeSpend() return value
|
|
318
|
+
|
|
319
|
+
# 0.7.12 (2020-07-05)
|
|
320
|
+
|
|
321
|
+
- Add Compound ERC20 token (COMP)
|
|
322
|
+
|
|
323
|
+
# 0.7.11 (2020-06-25)
|
|
324
|
+
|
|
325
|
+
- Update FIO apiUrls
|
|
326
|
+
|
|
327
|
+
# 0.7.10 (2020-06-23)
|
|
328
|
+
|
|
329
|
+
- Categorize servers by rpc and etherscan
|
|
330
|
+
|
|
331
|
+
# 0.7.9 (2020-06-05)
|
|
332
|
+
|
|
333
|
+
- Fix case where a FIO address could appear associated with two FIO wallets
|
|
334
|
+
|
|
335
|
+
# 0.7.8 (2020-06-04)
|
|
336
|
+
|
|
337
|
+
- Add etherclusterApiServers[] to rskInfo.js
|
|
338
|
+
- Add custom FIO domain support
|
|
339
|
+
- Add FIO address renewal support
|
|
340
|
+
|
|
341
|
+
# 0.7.6 (2020-05-21)
|
|
342
|
+
|
|
343
|
+
- Tezos - Add makeMutex to wrap makeSpend() to avoid entering it more than once
|
|
344
|
+
|
|
345
|
+
# 0.7.5 (2020-05-14)
|
|
346
|
+
|
|
347
|
+
- Refactor EOS plugin to remove owner key to support importing wallets
|
|
348
|
+
- Add Ethereum Classic support
|
|
349
|
+
- Remove own receive address from Tezos makeSpend
|
|
350
|
+
|
|
351
|
+
# 0.7.4 (2020-04-28)
|
|
352
|
+
|
|
353
|
+
- Refactor ETH and RSK to use common code
|
|
354
|
+
- FIO performance improvements
|
|
355
|
+
|
|
356
|
+
# 0.7.3 (2020-04-22)
|
|
357
|
+
|
|
358
|
+
- isAccountAvailable() renamed to doesAccountExist()
|
|
359
|
+
|
|
360
|
+
# 0.7.2 (2020-04-17)
|
|
361
|
+
|
|
362
|
+
- Add cleaners v0.2.0 type checking
|
|
363
|
+
- Fix duplicate FIO address after registration
|
|
364
|
+
- Reprioritize EOS Hyperion nodes to resolve transaction history view issue
|
|
365
|
+
|
|
366
|
+
# 0.7.1 (2020-04-07)
|
|
367
|
+
|
|
368
|
+
- Add TPID to FIO requests
|
|
369
|
+
- Fix Max Sends
|
|
370
|
+
- Updated fioInfo.js to mainnet
|
|
371
|
+
|
|
372
|
+
# 0.7.0 (2020-04-06)
|
|
373
|
+
|
|
374
|
+
- Add FIO
|
|
375
|
+
|
|
376
|
+
# 0.6.10 (2020-04-06)
|
|
377
|
+
|
|
378
|
+
- Import EOS private key
|
|
379
|
+
- Fix XLM transaction history not showing
|
|
380
|
+
|
|
381
|
+
# 0.6.9 (2020-03-23)
|
|
382
|
+
|
|
383
|
+
- Remove FIO codebase, accidentally included in v0.6.8.
|
|
384
|
+
|
|
385
|
+
# 0.6.8 (2020-03-20)
|
|
386
|
+
|
|
387
|
+
- Add MET token
|
|
388
|
+
|
|
389
|
+
# 0.6.7 (2020-03-06)
|
|
390
|
+
|
|
391
|
+
- Add response error checking to fetch() calls
|
|
392
|
+
- Fixed crash when Etherscan API returned text rather than a number by adding decimal and hex regex to response validation
|
|
393
|
+
|
|
394
|
+
# 0.6.6 (2020-02-13)
|
|
395
|
+
|
|
396
|
+
- EOS - Revert fetch update to fix syncing
|
|
397
|
+
|
|
398
|
+
# 0.6.5 (2020-02-06)
|
|
399
|
+
|
|
400
|
+
- EOS - Add Greymass Fuel
|
|
401
|
+
|
|
402
|
+
# 0.6.4 (2020-01-22)
|
|
403
|
+
|
|
404
|
+
- Add ETH internal transaction support
|
|
405
|
+
|
|
406
|
+
# 0.6.3 (2020-01-06)
|
|
407
|
+
|
|
408
|
+
- Add ETHBNT
|
|
409
|
+
|
|
410
|
+
# 0.6.2 (2020-01-01)
|
|
411
|
+
|
|
412
|
+
- Upgrade to edge-core-js v0.16.17
|
|
413
|
+
- Upgrade devDependencies
|
|
414
|
+
|
|
415
|
+
# 0.6.1 (2019-12-31)
|
|
416
|
+
|
|
417
|
+
- Fix missing parent currency code from enabledTokens
|
|
418
|
+
|
|
419
|
+
# 0.6.0 (2019-12-18)
|
|
420
|
+
|
|
421
|
+
- Add Amberdata support
|
|
422
|
+
- RBTC fixes
|
|
423
|
+
- Add 'xrp-ledger:' prefix support
|
|
424
|
+
|
|
425
|
+
# 0.5.9 (2019-12-06)
|
|
426
|
+
|
|
427
|
+
- Fix nonce query to save nonce as string.
|
|
428
|
+
- Add try/catch to checkAndUpdate
|
|
429
|
+
- Ensure ETH is checked for balance and txs
|
|
430
|
+
|
|
431
|
+
# 0.5.8 (2019-12-05)
|
|
432
|
+
|
|
433
|
+
- Update Tezos explorer and RPC nodes
|
|
434
|
+
- Optimize multiple API support for ETH
|
|
435
|
+
|
|
436
|
+
# 0.5.7 (2019-12-03)
|
|
437
|
+
|
|
438
|
+
- Add CDAI
|
|
439
|
+
- Add Alethio API
|
|
440
|
+
|
|
441
|
+
# 0.5.6 (2019-11-25)
|
|
442
|
+
|
|
443
|
+
- Add Blockchair API
|
|
444
|
+
- Add support for eth_estimateGas
|
|
445
|
+
|
|
446
|
+
# 0.5.5 (2019-11-20)
|
|
447
|
+
|
|
448
|
+
- Refactor ETH for API flexibility (no functional change)
|
|
449
|
+
|
|
450
|
+
# 0.5.4 (2019-11-07)
|
|
451
|
+
|
|
452
|
+
- Accept multiple etherscan API keys.
|
|
453
|
+
|
|
454
|
+
# 0.5.3 (2019-11-04)
|
|
455
|
+
|
|
456
|
+
- Update usage of EOS API endpoints
|
|
457
|
+
|
|
458
|
+
# 0.5.2 (2019-10-30)
|
|
459
|
+
|
|
460
|
+
- Fix Tezos Babylon compatibility.
|
|
461
|
+
|
|
462
|
+
# 0.5.1 (2019-10-28)
|
|
463
|
+
|
|
464
|
+
- Update HERC contract address.
|
|
465
|
+
|
|
466
|
+
# 0.5.0 (2019-10-22)
|
|
467
|
+
|
|
468
|
+
- Include compound tokens info
|
|
469
|
+
|
|
470
|
+
# 0.4.9 (2019-10-14)
|
|
471
|
+
|
|
472
|
+
- Connect to multiple EOS Hyperion nodes (with fallback).
|
|
473
|
+
|
|
474
|
+
# 0.4.8 (2019-10-11)
|
|
475
|
+
|
|
476
|
+
- Replace ripplecharts with bithomp.
|
|
477
|
+
- Directly connect to EOS producers (with fallback).
|
|
478
|
+
|
|
479
|
+
# 0.4.7 (2019-10-01)
|
|
480
|
+
|
|
481
|
+
- Remove BlockScout due to delayed / cached results
|
|
482
|
+
|
|
483
|
+
# 0.4.5 (2019-09-20)
|
|
484
|
+
|
|
485
|
+
- Fix XTZ seed issue (`mnemonicToSeedSync` to `mnemonicToSeedSync`)
|
|
486
|
+
|
|
487
|
+
# 0.4.4 (2019-09-19)
|
|
488
|
+
|
|
489
|
+
- Allow XTZ mnemonic import
|
|
490
|
+
- Adjustments to dependencies
|
|
491
|
+
|
|
492
|
+
# 0.4.3 (2019-09-13)
|
|
493
|
+
|
|
494
|
+
- Display mnemonic seeds for RSK when available.
|
|
495
|
+
|
|
496
|
+
# 0.4.2 (2019-09-13)
|
|
497
|
+
|
|
498
|
+
- Upgrade Ripple network libraries
|
|
499
|
+
- Add Chainlink token
|
|
500
|
+
- Fix RSK key management
|
|
501
|
+
|
|
502
|
+
# 0.4.1 (2019-09-05)
|
|
503
|
+
|
|
504
|
+
- Fix BNB balance stuck loading on new accounts
|
|
505
|
+
- Remove BNB as possible ERC20 token
|
|
506
|
+
- Removed `signedTx` data from BNB transactions
|
|
507
|
+
|
|
508
|
+
# 0.4.0 (2019-09-04)
|
|
509
|
+
|
|
510
|
+
- Implementation of Binance Chain (BNB)
|
|
511
|
+
|
|
512
|
+
# 0.3.8 (2019-09-04)
|
|
513
|
+
|
|
514
|
+
- Remove cached RPC node from being used for XTZ getBalance
|
|
515
|
+
|
|
516
|
+
# 0.3.7
|
|
517
|
+
|
|
518
|
+
- Remove unnecessary code for ETH errors
|
|
519
|
+
|
|
520
|
+
# 0.3.6 (2019-08-29)
|
|
521
|
+
|
|
522
|
+
- Skip one XTZ node for `getHead` loop to fix engine block height
|
|
523
|
+
|
|
524
|
+
# 0.3.5
|
|
525
|
+
|
|
526
|
+
- Add AGLD to list of known tokens
|
|
527
|
+
|
|
528
|
+
# 0.3.4 (2019-08-22)
|
|
529
|
+
|
|
530
|
+
- Validate Ethereum addresses prior to sending.
|
|
531
|
+
|
|
532
|
+
# 0.3.3 (2019-08-22)
|
|
533
|
+
|
|
534
|
+
- Add support for RSK & Tezos mnemonic keys.
|
|
535
|
+
- Fix Tezos URI generation.
|
|
536
|
+
- Add basic FIO key generation shims.
|
|
537
|
+
|
|
538
|
+
# 0.3.2 (2019-08-11)
|
|
539
|
+
|
|
540
|
+
- Change Tezos signedTx property from string to hex
|
|
541
|
+
- Change Tezos currency symbol to 't' due to font issue with official symbol
|
|
542
|
+
|
|
543
|
+
# 0.3.1 (2019-08-08)
|
|
544
|
+
|
|
545
|
+
- Set default `signedTx` property on EdgeTransactions to empty string
|
|
546
|
+
|
|
547
|
+
# 0.3.0 (2019-08-06)
|
|
548
|
+
|
|
549
|
+
- Integration of RSK / RBTC
|
|
550
|
+
- Integration of Tezos
|
|
551
|
+
|
|
552
|
+
# 0.2.0 (2019-08-01)
|
|
553
|
+
|
|
554
|
+
- Allow importing of XLM and XRP private keys
|
|
555
|
+
|
|
556
|
+
# 0.1.19 (2019-07-31)
|
|
557
|
+
|
|
558
|
+
- Implement ignoring of zero-amount transactions (ie proxy allowance)
|
|
559
|
+
|
|
560
|
+
# 0.1.18 (2019-07-12)
|
|
561
|
+
|
|
562
|
+
- Fix `edgeTransaction.otherParams.data` issue throwing error when `otherParams` does not exist
|
|
563
|
+
|
|
564
|
+
# 0.1.17 (2019-07-12) _Deprecated_
|
|
565
|
+
|
|
566
|
+
# 0.1.16 (2019-07-10)
|
|
567
|
+
|
|
568
|
+
- Implement Totle transactions (extra proxy allowance transaction)
|
|
569
|
+
|
|
570
|
+
# 0.1.15 (2019-07-03)
|
|
571
|
+
|
|
572
|
+
- Fix EOS infinite loop issue
|
|
573
|
+
|
|
574
|
+
# 0.1.14 (2019-07-02)
|
|
575
|
+
|
|
576
|
+
- Fix Outgoing EOS transaction issue
|
|
577
|
+
|
|
578
|
+
# 0.1.13 (2019-06-27)
|
|
579
|
+
|
|
580
|
+
- Fix EOS syncing issue
|
|
581
|
+
- Fix node 12 compatibility
|
|
582
|
+
|
|
583
|
+
# 0.1.12 (2019-06-10)
|
|
584
|
+
|
|
585
|
+
- Fix BRZ token multiplier / denomination / decimals
|
|
586
|
+
|
|
587
|
+
# 0.1.11 (2019-06-09)
|
|
588
|
+
|
|
589
|
+
- Add BRZ as a native ERC20 token
|
|
590
|
+
|
|
591
|
+
# 0.1.10 (2019-05-16)
|
|
592
|
+
|
|
593
|
+
- Fix importing Ethereum private keys starting with 0x.
|
|
594
|
+
- Allow multiple unconfirmed Ethereum spends at once.
|
|
595
|
+
|
|
596
|
+
# 0.1.9
|
|
597
|
+
|
|
598
|
+
- Fix toke denomination issue for encodeUri and parseUri
|
|
599
|
+
- Increase unit test timeout
|
|
600
|
+
|
|
601
|
+
# 0.1.8 (2019-03-27)
|
|
602
|
+
|
|
603
|
+
- Update Ripple block explorer link.
|
|
604
|
+
- Add ability to import Ethereum private keys.
|
|
605
|
+
- Add ability to detect dropped Ethereum transactions.
|
|
606
|
+
|
|
607
|
+
# 0.1.7 (2019-03-07)
|
|
608
|
+
|
|
609
|
+
- Get Ethereum to catch insufficient _token_ balance transactions
|
|
610
|
+
|
|
611
|
+
# 0.1.5 (2019-03-06)
|
|
612
|
+
|
|
613
|
+
- Convert Infura eth_getBalance to decimal string.
|
|
614
|
+
|
|
615
|
+
# 0.1.4 (2019-03-04)
|
|
616
|
+
|
|
617
|
+
- Fix GUSD denominations.
|
|
618
|
+
- Improve Ethereum token syncing using multiple servers.
|
|
619
|
+
|
|
620
|
+
# 0.1.3 (2019-02-26)
|
|
621
|
+
|
|
622
|
+
- Fix GUSD and TUSD contract addresses
|
|
623
|
+
|
|
624
|
+
# 0.1.2 (2019-02-25)
|
|
625
|
+
|
|
626
|
+
- Fix incorrect Ethereum private key parsing.
|
|
627
|
+
- Add popular ERC-20 tokens
|
|
628
|
+
|
|
629
|
+
# 0.1.1 (2019-02-22)
|
|
630
|
+
|
|
631
|
+
- Fix CORS issues during EOS activation on react-native.
|
|
632
|
+
|
|
633
|
+
# 0.1.0 (2019-02-19)
|
|
634
|
+
|
|
635
|
+
- Upgrade to the edge-core-js v0.15.0 and adapt to breaking changes.
|
|
636
|
+
|
|
637
|
+
## 0.0.25 (2019-02-19)
|
|
638
|
+
|
|
639
|
+
- Fix the node entry point not to crash
|
|
640
|
+
|
|
641
|
+
## 0.0.24 (2019-02-18)
|
|
642
|
+
|
|
643
|
+
- Fix a crash on boot on React Native
|
|
644
|
+
|
|
645
|
+
## 0.0.23 (2019-02-15)
|
|
646
|
+
|
|
647
|
+
- Upgrade to the edge-core-js v0.14.0 types
|
|
648
|
+
- Modernize the build system
|
|
649
|
+
|
|
650
|
+
## 0.0.22
|
|
651
|
+
|
|
652
|
+
- Fix ETH blockHeight from fluttering in/out of confirmation
|
|
653
|
+
- Fix XLM makeSpend if called multiple times and older edgeTransaction is used for signTx
|
|
654
|
+
|
|
655
|
+
## 0.0.21
|
|
656
|
+
|
|
657
|
+
- Properly call onTransactionsChanged on new txs
|
|
658
|
+
|
|
659
|
+
## 0.0.20
|
|
660
|
+
|
|
661
|
+
- Fix EOS accounts from being detected after activation
|
|
662
|
+
- Fix display of ETH private seeds
|
|
663
|
+
|
|
664
|
+
## 0.0.19
|
|
665
|
+
|
|
666
|
+
- Fix XRP incorrect spend amounts
|
|
667
|
+
- Fix syncing of ETH wallets after network disconnect/reconnect
|
|
668
|
+
- Improve syncing of XRP wallets by connecting to multiple servers
|
|
669
|
+
- Improve syncing of XRP wallets by detecting connection failure and retrying
|
|
670
|
+
|
|
671
|
+
## 0.0.18
|
|
672
|
+
|
|
673
|
+
- Change ETH fee estimates for better confirmation times
|
|
674
|
+
- Change broadcastTx to broadcast to all APIs at the same time
|
|
675
|
+
- Add Infura to broadcast APIs
|
|
676
|
+
|
|
677
|
+
## 0.0.17 (2019-02-01)
|
|
678
|
+
|
|
679
|
+
- Add EOS support
|
|
680
|
+
- Add Ethereum support
|
|
681
|
+
- Retry failed XRP broadcasts
|
|
682
|
+
|
|
683
|
+
## 0.0.16
|
|
684
|
+
|
|
685
|
+
- Publish with a cleaned lib/ directory. Identical code to 0.0.15
|
|
686
|
+
|
|
687
|
+
## 0.0.15
|
|
688
|
+
|
|
689
|
+
- Use new colored icons
|
|
690
|
+
|
|
691
|
+
## 0.0.13
|
|
692
|
+
|
|
693
|
+
- Fix saving read back of lastAddressQueryHeight to prevent always querying from block 0
|
|
694
|
+
|
|
695
|
+
## 0.0.12
|
|
696
|
+
|
|
697
|
+
- Do not load transactions until core asks for getTransactions or we have to save a new tx to disk
|
|
698
|
+
|
|
699
|
+
## 0.0.11
|
|
700
|
+
|
|
701
|
+
- Fix incorrect error thrown from makeSpend due to insufficient funds
|
|
702
|
+
|
|
703
|
+
## 0.0.10
|
|
704
|
+
|
|
705
|
+
- Fix parseUri for unique identifiers of XLM and XRP
|
|
706
|
+
|
|
707
|
+
## 0.0.9-beta.2
|
|
708
|
+
|
|
709
|
+
- Full spend/receive functionality for Ripple/XRP refactored from edge-currency-ripple
|
|
710
|
+
- Full spend/receive functionality for Stellar with memo.id support
|
|
711
|
+
- EOS support for send/receive
|
|
712
|
+
- EOS support for showing outgoing transactions only
|
|
713
|
+
- EOS missing ability to activate account
|