import React from 'react'; import { Client } from 'rpc-websockets' import Cristal from 'react-cristal' import { BlockLinks } from "./BlockLink"; import StorageNodeInit from "./StorageNodeInit"; import Address from "./Address"; import ChainExplorer from "./ChainExplorer"; class FullNode extends React.Component { constructor(props) { super(props) this.state = { mining: false, } this.loadInfo = this.loadInfo.bind(this) this.startMining = this.startMining.bind(this) this.newScepAddr = this.newScepAddr.bind(this) this.startStorageMiner = this.startStorageMiner.bind(this) this.add1k = this.add1k.bind(this) this.explorer = this.explorer.bind(this) this.loadInfo() setInterval(this.loadInfo, 2050) } async loadInfo() { const id = await this.props.client.call("Filecoin.ID", []) const version = await this.props.client.call("Filecoin.Version", []) const peers = await this.props.client.call("Filecoin.NetPeers", []) const tipset = await this.props.client.call("Filecoin.ChainHead", []) let addrs = await this.props.client.call('Filecoin.WalletList', []) let defaultAddr = "" if (addrs.length > 0) { defaultAddr = await this.props.client.call('Filecoin.WalletDefaultAddress', []) } let paychs = await this.props.client.call('Filecoin.PaychList', []) if(!paychs) paychs = [] const vouchers = await Promise.all(paychs.map(paych => { return this.props.client.call('Filecoin.PaychVoucherList', [paych]) })) this.setState(() => ({ id: id, version: version, peers: peers.length, tipset: tipset, addrs: addrs, paychs: paychs, vouchers: vouchers, defaultAddr: defaultAddr})) } async startMining() { // TODO: Use actual miner address // see cli/miner.go this.setState({mining: true}) let addr = "t0523423423" // in case we have no wallets if (this.state.defaultAddr) { addr = this.state.defaultAddr } this.setState({mining: true}) await this.props.client.call("Filecoin.MinerStart", [addr]) } async newScepAddr() { const t = "secp256k1" await this.props.client.call("Filecoin.WalletNew", [t]) this.loadInfo() } async startStorageMiner() { this.props.mountWindow((onClose) => ) } async add1k(to) { await this.props.give1k(to) } explorer() { this.props.mountWindow((onClose) => ) } render() { let runtime =
if (this.state.id) { let chainInfo =
if (this.state.tipset !== undefined) { chainInfo = (
Head: { } H:{this.state.tipset.Height} [Explore]
) } let mine = [Mine] if (this.state.mining) { mine = "[Mining]" } let storageMine = [Spawn Storage Miner] let addresses = this.state.addrs.map((addr) => { let line =
if (this.state.defaultAddr === addr) { line = {line} } return
{line}
}) let paychannels = this.state.paychs.map((addr, ak) => { const line =
const vouchers = this.state.vouchers[ak].map(voucher => { let extra = if(voucher.Extra) { extra = Verif: <
 M{voucher.Extra.Method}> } return
Voucher Nonce:{voucher.Nonce} Lane:{voucher.Lane} Amt:{voucher.Amount} TL:{voucher.TimeLock} MinCl:{voucher.MinCloseHeight} {extra}
}) return
{line} {vouchers}
}) runtime = (
{this.props.node.ID} - v{this.state.version.Version}, {this.state.id.substr(-8)}, {this.state.peers} peers
Repo: LOTUS_PATH={this.props.node.Repo}
{chainInfo}
{mine} {storageMine}
Balances: [New [Secp256k1]]
{addresses}
{paychannels}
) } return (
{runtime}
) } } export default FullNode