Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bokkypoobah committed Dec 24, 2023
1 parent 591542c commit b53dbfe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/deploymentData.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,14 +289,17 @@ <h4>Welcome</h4>
<b-form-group label="" label-for="generate-keys-submit" label-size="sm" label-cols-sm="2" label-align-sm="right" class="mx-0 my-1 p-0">
<b-button size="sm" id="generate-keys-submit" @click="generateKeys()" variant="warning">Generate</b-button>
</b-form-group>
<b-form-group label="" label-for="display-private-keys" label-size="sm" label-cols-sm="2" label-align-sm="right" class="mx-0 my-1 p-0">
<b-form-checkbox size="sm" v-model.trim="displayPrivateKeys">Display Private Keys</b-form-checkbox>
</b-form-group>
<b-form-group label="Spending Private Key:" label-for="spending-privatekey" label-size="sm" label-cols-sm="2" label-align-sm="right" class="mx-0 my-1 p-0">
<b-form-input type="text" readonly size="sm" id="spending-privatekey" :value="spendingPrivateKey" class="w-75"></b-form-input>
<b-form-input type="text" readonly size="sm" id="spending-privatekey" :value="displayPrivateKeys ? spendingPrivateKey : (spendingPrivateKey ? '*'.repeat(66) : '')" class="w-75"></b-form-input>
</b-form-group>
<b-form-group label="Spending Public Key:" label-for="spending-publickey" label-size="sm" label-cols-sm="2" label-align-sm="right" class="mx-0 my-1 p-0">
<b-form-input type="text" readonly size="sm" id="spending-publickey" :value="spendingPublicKey" class="w-75"></b-form-input>
</b-form-group>
<b-form-group label="Viewing Private Key:" label-for="viewing-privatekey" label-size="sm" label-cols-sm="2" label-align-sm="right" class="mx-0 my-1 p-0">
<b-form-input type="text" readonly size="sm" id="viewing-privatekey" :value="viewingPrivateKey" class="w-75"></b-form-input>
<b-form-input type="text" readonly size="sm" id="viewing-privatekey" :value="displayPrivateKeys ? viewingPrivateKey : (spendingPrivateKey ? '*'.repeat(66) : '')" class="w-75"></b-form-input>
</b-form-group>
<b-form-group label="Viewing Public Key:" label-for="viewing-publickey" label-size="sm" label-cols-sm="2" label-align-sm="right" class="mx-0 my-1 p-0">
<b-form-input type="text" readonly size="sm" id="viewing-publickey" :value="viewingPublicKey" class="w-75"></b-form-input>
Expand Down Expand Up @@ -503,6 +506,7 @@ <h4>Welcome</h4>
timestamp: null,

message: "I want to login into my stealth wallet on Ethereum mainnet.",
displayPrivateKeys: false,
spendingPrivateKey: null,
spendingPublicKey: null,
viewingPrivateKey: null,
Expand Down

0 comments on commit b53dbfe

Please sign in to comment.