Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
7d55829
Initial refactor for ETH Support based off of JKook's research
micahriggan Mar 21, 2019
41c3a4e
Merge branch 'master' of github.com:bitpay/bitcore into feature/eth-sync
micahriggan Mar 21, 2019
22a57a5
Eth Sync does a thing
micahriggan Mar 22, 2019
8d72105
refactored to use IEthTransaction and IEthBlock on the models, to red…
micahriggan Mar 22, 2019
0e83e98
Leave data as a buffer
micahriggan Mar 22, 2019
b84483c
working p2p so far
Mar 22, 2019
0ec55c1
merge git pull branch
Mar 22, 2019
08c4416
Merge branch 'master' of https://github.com/bitpay/bitcore into featu…
Mar 22, 2019
9232b74
git pull master
Mar 26, 2019
0ae47fd
decode internal txs on _apiTransform, fix duplicate internal txs to p…
Mar 27, 2019
57a6a1d
linked btcTransactionStorage instead of TransactionStorage to block u…
Mar 27, 2019
d8c28d5
getLocalTip method is async, p2p-lib starts at block height 0 instead…
Mar 28, 2019
ad9fe3f
fix 0x prefix on ethereum block object
Mar 28, 2019
7001e70
removed getBlock rpc method to use internal getBlock method instead, …
Mar 28, 2019
cc7fd09
version and bits are optional properties on IBlock for block.unit.tests
Mar 28, 2019
930d87f
await promise for getLocalTip, fixed getLocalTip test to stub mockCol…
Mar 28, 2019
e1eb5b1
git pull merge master
Mar 28, 2019
2c979f8
Resolve eth.md readme merge conflict
Mar 28, 2019
7c38c66
added block reward and uncle rewards to convertedBlock, uncle reward …
Mar 29, 2019
4583d70
fix merge conflicts with insight-previous package-lock.json
Mar 29, 2019
903c412
default block reward set to 5, tag wallets when syncing transactions …
Mar 29, 2019
a4b0a8d
Merge branch 'master' of https://github.com/bitpay/bitcore into featu…
Mar 29, 2019
c15b783
added loggifyClass to parityRPC, changed typing uncleRewards to array…
Apr 1, 2019
b227013
git pull origin master
Apr 1, 2019
c982817
git pull origin master
Apr 1, 2019
6450318
revert index named exports for BlockStorage and TransactionStorage
Apr 1, 2019
f8457e2
toLowerCase() address for wallet integration tests and wallet benchma…
Apr 1, 2019
5a017e2
processed property for wallet integration test
Apr 1, 2019
162b725
wallet benchmark integration tests push address.toLowerCase() to addr…
Apr 1, 2019
74f33d9
add 0x prefix to nonce in convertedBlock
Apr 1, 2019
6e30dfd
Starting work on ETH for BWS and copay
Apr 2, 2019
ce4d995
removed eth bitcore-client in api.js BWC, changed BWS version from 8.…
Apr 2, 2019
3e48b8b
added export default deriver and transaction to crypto-wallet-core, c…
Apr 2, 2019
578e542
Updated with code from master
micahriggan Apr 3, 2019
ac91b34
Try to reconnect if not syncing
micahriggan Apr 3, 2019
0860dbd
merge and added CWC to createAddress API in BWC
Apr 3, 2019
ceae426
Merge branch 'feature/eth-bws' of https://github.com/justinkook/bitco…
Apr 3, 2019
364d4e9
duplicate lodash import error
Apr 3, 2019
575bd0c
working eth address, set network to mainnet if opts.network is missing
Apr 3, 2019
c967b8e
xPub key derives from correct path, eth derives ganache-cli addresses
Apr 4, 2019
1f23d13
removed global.console.log for BWC, eslint api.js
Apr 4, 2019
b7d8cbe
getBalance works, added BalanceResponse type interface
Apr 4, 2019
e3cbd79
try catch on getBalance in server.ts BWS, added toChecksumAddress to …
Apr 5, 2019
5398766
added validateAddress validation to crypto-wallet-core, uncomment key…
Apr 9, 2019
83e7776
added if coin is eth bc.getBalance then divide by 1e18
Apr 9, 2019
eeb4ca1
added all balanceResponse fields to balance object
Apr 9, 2019
8595f6a
server.ts fixed eth scale problem getBalance. if wallet.coin === eth …
Apr 9, 2019
16901f6
added 'eth' coin to getFeeLevels
Apr 9, 2019
dc3b43a
added getFee from cryptoRPC to bitcore-node ethRPC
Apr 9, 2019
edfba7a
added eth as a valid coin in confirm.ts
Apr 10, 2019
46c1177
merge master
Apr 10, 2019
741d10b
ETH: block detail page, tx detail page. Use Message component instead…
rastajpa Apr 12, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13,003 changes: 6,925 additions & 6,078 deletions packages/bitcore-build/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/bitcore-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class AddressProviderProxy {
}

pathFor(chain, network) {
if (network != 'mainnet') {
if (network === 'testnet') {
return paths.default.testnet;
} else {
return paths[chain][network];
Expand Down
Loading