2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2017-01-05 12:06:35 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import { action, observable, transaction } from 'mobx';
|
|
|
|
|
2017-07-21 15:46:53 +02:00
|
|
|
import etherscan from '@parity/etherscan/index';
|
2017-01-05 12:06:35 +01:00
|
|
|
|
|
|
|
export default class Store {
|
|
|
|
@observable address = null;
|
|
|
|
@observable isLoading = false;
|
|
|
|
@observable isTracing = false;
|
2017-03-06 08:54:59 +01:00
|
|
|
@observable netVersion = '0';
|
2017-01-05 12:06:35 +01:00
|
|
|
@observable txHashes = [];
|
|
|
|
|
|
|
|
constructor (api) {
|
|
|
|
this._api = api;
|
|
|
|
}
|
|
|
|
|
|
|
|
@action setHashes = (transactions) => {
|
|
|
|
transaction(() => {
|
|
|
|
this.setLoading(false);
|
|
|
|
this.txHashes = transactions.map((transaction) => transaction.hash);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@action setAddress = (address) => {
|
|
|
|
this.address = address;
|
|
|
|
}
|
|
|
|
|
|
|
|
@action setLoading = (isLoading) => {
|
|
|
|
this.isLoading = isLoading;
|
|
|
|
}
|
|
|
|
|
2017-03-06 08:54:59 +01:00
|
|
|
@action setNetVersion = (netVersion) => {
|
|
|
|
this.netVersion = netVersion;
|
2017-01-05 12:06:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@action setTracing = (isTracing) => {
|
|
|
|
this.isTracing = isTracing;
|
|
|
|
}
|
|
|
|
|
|
|
|
@action updateProps = (props) => {
|
|
|
|
transaction(() => {
|
|
|
|
this.setAddress(props.address);
|
2017-03-06 08:54:59 +01:00
|
|
|
this.setNetVersion(props.netVersion);
|
2017-01-05 12:06:35 +01:00
|
|
|
|
|
|
|
// TODO: When tracing is enabled again, adjust to actually set
|
|
|
|
this.setTracing(false && props.traceMode);
|
|
|
|
});
|
|
|
|
|
|
|
|
return this.getTransactions();
|
|
|
|
}
|
|
|
|
|
|
|
|
getTransactions () {
|
2017-03-06 08:54:59 +01:00
|
|
|
if (this.netVersion === '0') {
|
2017-01-05 12:06:35 +01:00
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setLoading(true);
|
|
|
|
|
|
|
|
// TODO: When supporting other chains (eg. ETC). call to be made to other endpoints
|
|
|
|
return (
|
|
|
|
this.isTracing
|
|
|
|
? this.fetchTraceTransactions()
|
|
|
|
: this.fetchEtherscanTransactions()
|
|
|
|
)
|
|
|
|
.then((transactions) => {
|
|
|
|
this.setHashes(transactions);
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
console.warn('getTransactions', error);
|
|
|
|
this.setLoading(false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fetchEtherscanTransactions () {
|
2017-03-06 08:54:59 +01:00
|
|
|
return etherscan.account.transactions(this.address, 0, false, this.netVersion);
|
2017-01-05 12:06:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fetchTraceTransactions () {
|
|
|
|
return Promise
|
|
|
|
.all([
|
|
|
|
this._api.trace.filter({
|
|
|
|
fromAddress: this.address,
|
|
|
|
fromBlock: 0
|
|
|
|
}),
|
|
|
|
this._api.trace.filter({
|
|
|
|
fromBlock: 0,
|
|
|
|
toAddress: this.address
|
|
|
|
})
|
|
|
|
])
|
|
|
|
.then(([fromTransactions, toTransactions]) => {
|
|
|
|
return fromTransactions
|
|
|
|
.concat(toTransactions)
|
|
|
|
.map((transaction) => {
|
|
|
|
return {
|
|
|
|
blockNumber: transaction.blockNumber,
|
|
|
|
from: transaction.action.from,
|
|
|
|
hash: transaction.transactionHash,
|
|
|
|
to: transaction.action.to
|
|
|
|
};
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|