|
@ -21,8 +21,9 @@ |
|
|
type="text" |
|
|
type="text" |
|
|
placeholder="Seed Phrase" |
|
|
placeholder="Seed Phrase" |
|
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2" |
|
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2" |
|
|
v-bind="mnemonic" |
|
|
v-model="mnemonic" |
|
|
/> |
|
|
/> |
|
|
|
|
|
{{ mnemonic }} |
|
|
<div class="mt-8"> |
|
|
<div class="mt-8"> |
|
|
<button |
|
|
<button |
|
|
@click="from_mnemonic()" |
|
|
@click="from_mnemonic()" |
|
@ -43,7 +44,9 @@ |
|
|
|
|
|
|
|
|
<script lang="ts"> |
|
|
<script lang="ts"> |
|
|
import { Options, Vue } from "vue-class-component"; |
|
|
import { Options, Vue } from "vue-class-component"; |
|
|
import { deriveAddress } from "../libs/crypto"; |
|
|
import { deriveAddress, newIdentifier } from "../libs/crypto"; |
|
|
|
|
|
import { db } from "@/db"; |
|
|
|
|
|
import { useAppStore } from "@/store/app"; |
|
|
|
|
|
|
|
|
@Options({ |
|
|
@Options({ |
|
|
components: {}, |
|
|
components: {}, |
|
@ -58,15 +61,44 @@ export default class ImportAccountView extends Vue { |
|
|
public onCancelClick() { |
|
|
public onCancelClick() { |
|
|
this.$router.back(); |
|
|
this.$router.back(); |
|
|
} |
|
|
} |
|
|
public from_mnemonic() { |
|
|
|
|
|
|
|
|
public async from_mnemonic() { |
|
|
|
|
|
const mne: string = this.mnemonic.trim().toLowerCase(); |
|
|
if (this.mnemonic.trim().length > 0) { |
|
|
if (this.mnemonic.trim().length > 0) { |
|
|
this.mnemonic = this.mnemonic.trim().toLowerCase(); |
|
|
|
|
|
[ |
|
|
[ |
|
|
this.address, |
|
|
this.address, |
|
|
this.privateHex, |
|
|
this.privateHex, |
|
|
this.publicHex, |
|
|
this.publicHex, |
|
|
this.UPORT_ROOT_DERIVATION_PATH, |
|
|
this.UPORT_ROOT_DERIVATION_PATH, |
|
|
] = deriveAddress(this.mnemonic); |
|
|
] = deriveAddress(mne); |
|
|
|
|
|
|
|
|
|
|
|
const newId = newIdentifier( |
|
|
|
|
|
this.address, |
|
|
|
|
|
this.publicHex, |
|
|
|
|
|
this.privateHex, |
|
|
|
|
|
this.UPORT_ROOT_DERIVATION_PATH |
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
console.log(newId); |
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
await db.open(); |
|
|
|
|
|
const num_accounts = await db.accounts.count(); |
|
|
|
|
|
if (num_accounts === 0) { |
|
|
|
|
|
console.log("..."); |
|
|
|
|
|
await db.accounts.add({ |
|
|
|
|
|
publicKey: newId.keys[0].publicKeyHex, |
|
|
|
|
|
mnemonic: mne, |
|
|
|
|
|
identity: JSON.stringify(newId), |
|
|
|
|
|
dateCreated: new Date().getTime(), |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
useAppStore().setCondition("registered"); |
|
|
|
|
|
this.$router.push({ name: "account" }); |
|
|
|
|
|
} catch (err) { |
|
|
|
|
|
console.log("Error!"); |
|
|
|
|
|
console.log(err); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|