2018-08-06 13:18:30 +00:00
|
|
|
import {Alert, Button, Col, ControlLabel, Form, FormControl, Grid, HelpBlock, InputGroup, Row} from 'react-bootstrap';
|
2018-05-14 14:58:48 +00:00
|
|
|
import AccountBalance from './accountBalance';
|
2018-08-06 13:18:30 +00:00
|
|
|
import React from 'react';
|
|
|
|
import Web3 from 'web3';
|
2018-05-14 14:58:48 +00:00
|
|
|
|
2018-05-02 20:51:30 +00:00
|
|
|
class CallGasRelayed extends React.Component {
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2018-07-20 16:05:12 +00:00
|
|
|
account: '',
|
2018-05-03 14:59:12 +00:00
|
|
|
address: this.props.IdentityGasRelay.options.address,
|
2018-05-02 20:51:30 +00:00
|
|
|
topic: '0x4964656e',
|
2018-07-19 20:18:45 +00:00
|
|
|
to: '0x0000000000000000000000000000000000000000',
|
2018-05-02 20:51:30 +00:00
|
|
|
value: 0,
|
|
|
|
data: '0x00',
|
|
|
|
nonce: 0,
|
|
|
|
gasPrice: 0,
|
|
|
|
gasLimit: 0,
|
|
|
|
gasToken: "0x0000000000000000000000000000000000000000",
|
|
|
|
signature: '',
|
|
|
|
symKey: '0xd0d905c1c62b810b787141430417caf2b3f54cffadb395b7bb39fdeb8f17266b',
|
|
|
|
kid: null,
|
|
|
|
skid: null,
|
|
|
|
msgSent: '',
|
|
|
|
payload: '',
|
|
|
|
messages: [],
|
2018-05-03 14:59:12 +00:00
|
|
|
web3W: null,
|
|
|
|
errorMessage: ''
|
2018-05-02 20:51:30 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount(){
|
|
|
|
__embarkContext.execWhenReady(async () => {
|
|
|
|
|
|
|
|
let web3W = new Web3('ws://localhost:8546');
|
|
|
|
|
2018-07-20 16:05:12 +00:00
|
|
|
let accounts = await this.props.web3.eth.getAccounts();
|
|
|
|
this.setState({
|
|
|
|
account: accounts[0]
|
2018-08-06 13:18:30 +00:00
|
|
|
});
|
2018-07-20 16:05:12 +00:00
|
|
|
|
2018-05-02 20:51:30 +00:00
|
|
|
let _skid = await web3W.shh.addSymKey(this.state.symKey);
|
|
|
|
let _kid = await web3W.shh.newKeyPair();
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
kid: _kid,
|
|
|
|
skid: _skid,
|
|
|
|
whisper: web3W
|
|
|
|
});
|
|
|
|
|
|
|
|
web3W.shh.subscribe('messages', {
|
|
|
|
"privateKeyID": _kid,
|
|
|
|
"ttl": 20,
|
|
|
|
"minPow": 0.8,
|
|
|
|
"powTime": 1000
|
|
|
|
}, (error, message, subscription) => {
|
2018-05-03 14:59:12 +00:00
|
|
|
if(error) {
|
2018-05-02 20:51:30 +00:00
|
|
|
console.log(error);
|
2018-08-06 13:18:30 +00:00
|
|
|
this.setState({errorMessage: error.message});
|
2018-05-03 14:59:12 +00:00
|
|
|
} else {
|
|
|
|
this.state.messages.push(this.props.web3.utils.hexToAscii(message.payload));
|
2018-08-06 13:18:30 +00:00
|
|
|
this.setState({messages: this.state.messages});
|
2018-05-02 20:51:30 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleChange(e, name){
|
2018-08-06 13:18:30 +00:00
|
|
|
const newState = {};
|
|
|
|
newState[name] = e.target.value;
|
|
|
|
this.setState(newState);
|
2018-05-02 20:51:30 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 13:18:30 +00:00
|
|
|
sendMessage(e){
|
2018-05-02 20:51:30 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
this.setState({
|
2018-05-03 14:59:12 +00:00
|
|
|
messages: [],
|
|
|
|
errorMessage: ''
|
2018-05-02 20:51:30 +00:00
|
|
|
});
|
|
|
|
|
2018-05-03 14:59:12 +00:00
|
|
|
try {
|
2018-08-06 13:18:30 +00:00
|
|
|
let jsonAbi = this.props.IdentityGasRelay._jsonInterface.filter(x => x.name == "callGasRelayed")[0];
|
|
|
|
let funCall = this.props.web3.eth.abi.encodeFunctionCall(jsonAbi, [
|
|
|
|
this.state.to,
|
2018-05-03 14:59:12 +00:00
|
|
|
this.state.value,
|
|
|
|
this.state.data,
|
|
|
|
this.state.nonce,
|
|
|
|
this.state.gasPrice,
|
|
|
|
this.state.gasLimit,
|
|
|
|
this.state.gasToken,
|
2018-08-06 13:18:30 +00:00
|
|
|
this.state.signature
|
|
|
|
]);
|
2018-05-03 14:59:12 +00:00
|
|
|
let msgObj = {
|
|
|
|
symKeyID: this.state.skid,
|
|
|
|
sig: this.state.kid,
|
|
|
|
ttl: 1000,
|
|
|
|
powTarget: 1,
|
|
|
|
powTime: 20,
|
|
|
|
topic: this.state.topic,
|
2018-05-16 14:20:47 +00:00
|
|
|
payload: this.props.web3.utils.toHex({
|
|
|
|
'address': this.state.address,
|
|
|
|
'encodedFunctionCall': funCall
|
|
|
|
})
|
2018-05-03 14:59:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
console.log(msgObj);
|
|
|
|
|
|
|
|
this.props.web3.shh.post(msgObj)
|
|
|
|
.then((err, result) => {
|
|
|
|
console.log(result);
|
|
|
|
console.log(err);
|
|
|
|
this.setState({msgSent: result, payload: msgObj.payload});
|
|
|
|
});
|
|
|
|
} catch(error){
|
|
|
|
console.error(error);
|
2018-08-06 13:18:30 +00:00
|
|
|
this.setState({errorMessage: error.message});
|
2018-05-03 14:59:12 +00:00
|
|
|
}
|
2018-05-02 20:51:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async sign(ev){
|
|
|
|
ev.preventDefault();
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
msgSent: false,
|
|
|
|
payload: '',
|
2018-05-03 14:59:12 +00:00
|
|
|
messages: [],
|
|
|
|
errorMessage: ''
|
|
|
|
});
|
|
|
|
|
|
|
|
try {
|
|
|
|
let message = await this.props.IdentityGasRelay.methods.callGasRelayHash(
|
|
|
|
this.state.to,
|
|
|
|
this.state.value,
|
|
|
|
this.props.web3.utils.soliditySha3({t: 'bytes', v: this.state.data}),
|
|
|
|
this.state.nonce,
|
|
|
|
this.state.gasPrice,
|
|
|
|
this.state.gasLimit,
|
|
|
|
this.state.gasToken
|
|
|
|
).call();
|
|
|
|
|
|
|
|
let accounts = await this.props.web3.eth.getAccounts();
|
|
|
|
let _signature = await this.props.web3.eth.sign(message, accounts[0]);
|
|
|
|
|
|
|
|
this.setState({signature: _signature});
|
|
|
|
} catch(error){
|
|
|
|
console.error(error);
|
2018-08-06 13:18:30 +00:00
|
|
|
this.setState({errorMessage: error.message});
|
2018-05-03 14:59:12 +00:00
|
|
|
}
|
2018-05-02 20:51:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render(){
|
|
|
|
return (<Grid>
|
2018-05-03 14:59:12 +00:00
|
|
|
{
|
2018-08-06 13:18:30 +00:00
|
|
|
this.state.errorMessage != '' && <React.Fragment><Alert bsStyle="danger">{this.state.errorMessage}</Alert></React.Fragment>
|
2018-05-03 14:59:12 +00:00
|
|
|
}
|
2018-05-02 20:51:30 +00:00
|
|
|
<Form>
|
2018-05-14 14:58:48 +00:00
|
|
|
<Row>
|
|
|
|
<Col md={3}>
|
|
|
|
<AccountBalance name="Identity" address={this.state.address} web3={this.props.web3} RND={this.props.RND} />
|
|
|
|
</Col>
|
|
|
|
<Col md={3}>
|
|
|
|
<AccountBalance name="To" address={this.state.to} web3={this.props.web3} RND={this.props.RND} />
|
|
|
|
</Col>
|
|
|
|
<Col md={3}>
|
|
|
|
<AccountBalance name="Gas Relayer Node" address={this.state.account} web3={this.props.web3} RND={this.props.RND} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2018-05-02 20:51:30 +00:00
|
|
|
<Row>
|
|
|
|
<Col md={9}>
|
|
|
|
<ControlLabel>Identity Address</ControlLabel>
|
|
|
|
<InputGroup>
|
|
|
|
<InputGroup.Addon>0x</InputGroup.Addon>
|
|
|
|
<FormControl type="text" placeholder="Address" defaultValue={this.state.address} onChange={(ev) => this.handleChange(ev, 'address')} />
|
|
|
|
</InputGroup>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Col md={4}>
|
|
|
|
<ControlLabel>To</ControlLabel>
|
|
|
|
<InputGroup>
|
|
|
|
<InputGroup.Addon>0x</InputGroup.Addon>
|
|
|
|
<FormControl type="text" defaultValue={this.state.to} onChange={(ev) => this.handleChange(ev, 'to')} />
|
|
|
|
</InputGroup>
|
|
|
|
</Col>
|
|
|
|
<Col md={1}>
|
|
|
|
<ControlLabel>Value</ControlLabel>
|
|
|
|
<FormControl type="string" defaultValue={this.state.value} onChange={(ev) => this.handleChange(ev, 'value')} />
|
|
|
|
</Col>
|
|
|
|
<Col md={4}>
|
|
|
|
<ControlLabel>Data</ControlLabel>
|
|
|
|
<InputGroup>
|
|
|
|
<InputGroup.Addon>0x</InputGroup.Addon>
|
|
|
|
<FormControl type="string" defaultValue={this.state.data} onChange={(ev) => this.handleChange(ev, 'data')} />
|
|
|
|
</InputGroup>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Col md={1}>
|
|
|
|
<ControlLabel>Nonce</ControlLabel>
|
|
|
|
<FormControl type="string" defaultValue={this.state.nonce} onChange={(ev) => this.handleChange(ev, 'nonce')} />
|
|
|
|
</Col>
|
|
|
|
<Col md={1}>
|
2018-05-14 14:58:48 +00:00
|
|
|
<ControlLabel>Gas Price in Tokens</ControlLabel>
|
2018-05-02 20:51:30 +00:00
|
|
|
<FormControl type="string" defaultValue={this.state.gasPrice} onChange={(ev) => this.handleChange(ev, 'gasPrice')} />
|
|
|
|
</Col>
|
|
|
|
<Col md={1}>
|
2018-05-14 14:58:48 +00:00
|
|
|
<ControlLabel>Gas Limit in Ether</ControlLabel>
|
2018-05-02 20:51:30 +00:00
|
|
|
<FormControl type="string" defaultValue={this.state.gasLimit} onChange={(ev) => this.handleChange(ev, 'gasLimit')} />
|
|
|
|
</Col>
|
|
|
|
<Col md={6}>
|
|
|
|
<ControlLabel>Gas Token</ControlLabel>
|
|
|
|
<InputGroup>
|
|
|
|
<InputGroup.Addon>0x</InputGroup.Addon>
|
|
|
|
<FormControl type="text" defaultValue={this.state.gasToken} onChange={(ev) => this.handleChange(ev, 'gasToken')} />
|
|
|
|
</InputGroup>
|
2018-05-03 14:59:12 +00:00
|
|
|
<HelpBlock>RND: {this.props.RND.options.address}</HelpBlock>
|
2018-05-02 20:51:30 +00:00
|
|
|
<HelpBlock>ETH: 0x0000000000000000000000000000000000000000</HelpBlock>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Col md={4}>
|
|
|
|
<Button bsStyle="primary" onClick={(ev) => this.sign(ev)}>1. Sign Message</Button>
|
|
|
|
</Col>
|
|
|
|
<Col md={5}>
|
|
|
|
<b>Signature: </b>{this.state.signature}
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Col md={7}>
|
|
|
|
<ControlLabel>Symmetric Key</ControlLabel>
|
|
|
|
<InputGroup>
|
|
|
|
<InputGroup.Addon>0x</InputGroup.Addon>
|
2018-07-20 16:05:12 +00:00
|
|
|
<FormControl type="text" placeholder="Sym Key" defaultValue={this.state.symKey} />
|
2018-05-02 20:51:30 +00:00
|
|
|
</InputGroup>
|
|
|
|
</Col>
|
|
|
|
<Col md={2}>
|
|
|
|
<ControlLabel>Topic</ControlLabel>
|
|
|
|
<InputGroup>
|
|
|
|
<InputGroup.Addon>0x</InputGroup.Addon>
|
|
|
|
<FormControl type="text" readOnly={true} defaultValue={this.state.topic} onChange={(ev) => this.handleChange(ev, 'topic')} />
|
|
|
|
</InputGroup>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Col md={4}>
|
|
|
|
<Button bsStyle="primary" disabled={this.state.signature == ""} onClick={(ev) => this.sendMessage(ev)}>2. Send via whisper</Button>
|
|
|
|
</Col>
|
|
|
|
<Col md={5}>
|
|
|
|
{this.state.msgSent}
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
|
|
|
|
<Row>
|
|
|
|
<h3>Whisper Messages</h3>
|
|
|
|
{
|
|
|
|
this.state.messages.map((msg, i) => <p key={i}>{msg}</p>)
|
|
|
|
}
|
|
|
|
</Row>
|
|
|
|
</Form>
|
|
|
|
</Grid>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-06 13:18:30 +00:00
|
|
|
export default CallGasRelayed;
|