82 lines
1.9 KiB
JavaScript
82 lines
1.9 KiB
JavaScript
import { reaction, makeAutoObservable } from "mobx";
|
|
import {cryptography} from "@liskhq/lisk-client";
|
|
import {getNodeInfo} from '../api/node';
|
|
import {fetchWrapper} from '../shared/fetchWrapper';
|
|
|
|
class Store {
|
|
_accountData = {}
|
|
|
|
_passPhrase='rocket north inform swift improve fringe sweet crew client canyon bean autumn'
|
|
|
|
_nodeInfo = {}
|
|
|
|
constructor() {
|
|
makeAutoObservable(this);
|
|
|
|
this.fetchNodeInfo()
|
|
|
|
reaction(() => this.tokenKey, () => fetchWrapper.getAuth('http://3.125.47.101/api/data/account', {
|
|
networkIdentifier: this.nodeInfo.networkIdentifier,
|
|
lastBlockID: this.nodeInfo.lastBlockID
|
|
}))
|
|
};
|
|
|
|
savePassPhrase(phrase) {
|
|
this._passPhrase = phrase
|
|
}
|
|
|
|
saveDataRegistration(data) {
|
|
this._accountData = data;
|
|
};
|
|
|
|
fetchNodeInfo() {
|
|
getNodeInfo()
|
|
.then((info) => this.fetchNodeInfoSuccess(info))
|
|
.catch((err) => this.fetchNodeInfoFailed(err))
|
|
}
|
|
|
|
fetchNodeInfoSuccess(info) {
|
|
this._nodeInfo = info.data;
|
|
console.log(info)
|
|
}
|
|
|
|
fetchNodeInfoFailed(err) {
|
|
console.log(err)
|
|
}
|
|
|
|
get passPhrase() {
|
|
return 'rocket north inform swift improve fringe sweet crew client canyon bean autumn'
|
|
}
|
|
|
|
get accountData() {
|
|
return this._accountData
|
|
};
|
|
|
|
get nodeInfo() {
|
|
return this._nodeInfo;
|
|
}
|
|
|
|
get addressAndPubKey() {
|
|
return cryptography.getAddressAndPublicKeyFromPassphrase(this.passPhrase);
|
|
}
|
|
|
|
get pubKey() {
|
|
return this.addressAndPubKey.publicKey.toString('hex');
|
|
}
|
|
|
|
get address() {
|
|
return cryptography.bufferToHex(this.addressAndPubKey.address)
|
|
}
|
|
|
|
get tokenKey() {
|
|
const stringToSign = this.nodeInfo.networkIdentifier.concat(this.nodeInfo.lastBlockID);
|
|
if(!stringToSign)
|
|
return '';
|
|
const sign = cryptography.signDataWithPassphrase(Buffer.from(stringToSign, 'hex'), this.passPhrase).toString('hex')
|
|
return this.pubKey + ':' +sign
|
|
}
|
|
|
|
};
|
|
|
|
export const registrationStore = new Store();
|