Skip to content

Commit 5263ad8

Browse files
authored
Merge pull request #50 from ankur325/Legacy-Wallet-Exporter
Add Legacy Wallet Exporter
2 parents 4d08839 + f3425fe commit 5263ad8

File tree

9 files changed

+637
-202
lines changed

9 files changed

+637
-202
lines changed

package-lock.json

+55-57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dcl-ui",
3-
"version": "1.0.13",
3+
"version": "1.0.15",
44
"description": "A Vuejs based application for managing CSA Distributed Compliance Ledger",
55
"author": "Comcast Inc.",
66
"private": true,

src/App.vue

+9-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,16 @@ export default {
5151
{ label: 'Compliance', icon: 'pi pi-fw pi-check-circle', to: '/compliance' },
5252
{ label: 'PKI', icon: 'pi pi-fw pi-lock', to: '/pki' },
5353
{ label: 'Validators', icon: 'pi pi-fw pi-server', to: '/validators' },
54-
{ label: 'Upgrades', icon: 'pi pi-fw pi-history', to: '/upgrades' }
54+
{ label: 'Upgrades', icon: 'pi pi-fw pi-history', to: '/upgrades' },
5555
]
56-
}
56+
},
57+
{
58+
label: 'Tools and Documentation',
59+
items: [
60+
{ label: 'Legacy Wallet', icon: 'pi pi-fw pi-wallet', to: '/legacy-wallet' },
61+
{ label: 'Keplr Wallet - Guide', icon: 'pi pi-fw pi-book', to: '/keplr-wallet' }
62+
]
63+
}
5764
]
5865
}
5966
},

src/components/Dashboard.vue

+2-29
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,6 @@
11
<template>
22
<div class="grid">
33
<!-- Warning Block -->
4-
<div v-if="isTestnetOrLocalhost" class="card mb-0 col-12 mb-3 mt-3">
5-
<div class="flex justify-content-between mb-3">
6-
<div>
7-
<span class="block text-500 font-medium text-lg mb-3">
8-
Important Notice
9-
</span>
10-
<p>
11-
The current wallet is not recommended and will be decommissioned soon. Please use our alternative site
12-
<a href="https://testnet-keplr.iotledger.io" target="_blank" rel="noopener noreferrer">
13-
https://testnet-keplr.iotledger.io
14-
<i class="pi pi-external-link"></i>
15-
</a>
16-
that supports Keplr wallet.
17-
</p>
18-
<p>
19-
One of the key features of the Keplr wallet is its support for hardware wallets, ensuring a higher level of security. For a more detailed overview and support,
20-
<a href="https://keplr.app/" target="_blank" rel="noopener noreferrer">
21-
check out Keplr's official documentation
22-
<i class="pi pi-external-link"></i>
23-
</a>.
24-
</p>
25-
</div>
26-
<div class="flex align-items-center justify-content-center bg-yellow-100 border-round" style="width: 2.5rem; height: 2.5rem">
27-
<i class="pi pi-exclamation-triangle text-yellow-500 text-xl"></i>
28-
</div>
29-
</div>
30-
</div>
314

325
<div class="col-12 lg:col-6 xl:col-3">
336
<div class="card mb-0">
@@ -326,8 +299,8 @@
326299
@click="
327300
copyToClipboard(
328301
JSON.stringify({
329-
type: '/cosmos.crypto.secp256k1.PubKey',
330-
key: pubKey.value,
302+
'@type': '/cosmos.crypto.secp256k1.PubKey',
303+
'key': pubKey.value,
331304
})
332305
)
333306
"

0 commit comments

Comments
 (0)