Merge pull request #17 from ping-pub/master

merge
This commit is contained in:
Alisa 2023-06-05 09:20:08 +08:00 committed by GitHub
commit 57657fe627
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 61 additions and 25 deletions

View File

@ -1,8 +1,8 @@
{ {
"chain_name": "secret", "chain_name": "secret",
"coingecko": "secret", "coingecko": "secret",
"api": ["https://lcd.spartanapi.dev", "https://secretnetwork-lcd.stakely.io"], "api": ["https://lcd.secret.express", "https://secretnetwork-lcd.stakely.io"],
"rpc": ["https://rpc.spartanapi.dev", "https://secretnetwork-rpc.stakely.io"], "rpc": ["https://rpc.secret.express", "https://secretnetwork-rpc.stakely.io"],
"snapshot_provider": "", "snapshot_provider": "",
"sdk_version": "0.45.4", "sdk_version": "0.45.4",
"coin_type": "529", "coin_type": "529",

BIN
public/logos/metamask.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -46,6 +46,7 @@ const chartConfig = computed(() => {
return { return {
chart: { chart: {
width: '200px',
sparkline: { enabled: false }, sparkline: { enabled: false },
}, },
colors: ['rgba(109,120,141,0.2)', 'rgba(114,225,40,0.2)', 'rgba(114,225,40,1)', 'rgba(114,225,40,0.2)', 'rgba(109,120,141,0.2)'], colors: ['rgba(109,120,141,0.2)', 'rgba(114,225,40,0.2)', 'rgba(114,225,40,1)', 'rgba(114,225,40,0.2)', 'rgba(109,120,141,0.2)'],
@ -122,7 +123,9 @@ const chartConfig = computed(() => {
<div class="text-sm text-gray-500 dark:text-gray-400"> <div class="text-sm text-gray-500 dark:text-gray-400">
{{ `Updated at ${format.toDay(props.commission?.update_time, 'short')}` }} {{ `Updated at ${format.toDay(props.commission?.update_time, 'short')}` }}
</div> </div>
<div class="w-80 m-auto">
<ApexCharts type="donut" :options="chartConfig" :series="series" /> <ApexCharts type="donut" :options="chartConfig" :series="series" />
</div>
<div> <div>
<div class="flex items-center justify-center flex-wrap gap-x-3"> <div class="flex items-center justify-center flex-wrap gap-x-3">
<div class="flex items-center gap-x-2"> <div class="flex items-center gap-x-2">

View File

@ -203,22 +203,16 @@ const tipMsg = computed(() => {
<div class="flex items-center mb-2"> <div class="flex items-center mb-2">
<Icon icon="mdi-web" class="text-xl mr-1" /> <Icon icon="mdi-web" class="text-xl mr-1" />
<span class="font-bold mr-2">Website: </span> <span class="font-bold mr-2">Website: </span>
<span <a
:href="v?.description?.website || '#'"
:class=" :class="
v?.description?.website v?.description?.website
? 'cursor-pointer' ? 'cursor-pointer'
: 'cursor-default' : 'cursor-default'
" "
@click="copyWebsite(v.description?.website || '')"
> >
{{ v.description?.website || '-' }}</span {{ v.description?.website || '-' }}
> </a>
<Icon
icon="bxs:copy"
class="text-xl ml-4 cursor-pointer"
v-show="v?.description?.website"
@click="copyWebsite(v.description?.website || '')"
/>
</div> </div>
<div class="flex items-center"> <div class="flex items-center">
<Icon icon="mdi-email-outline" class="text-xl mr-1" /> <Icon icon="mdi-email-outline" class="text-xl mr-1" />
@ -287,7 +281,7 @@ const tipMsg = computed(() => {
<Icon icon="mdi-account-tie" class="text-3xl" /> <Icon icon="mdi-account-tie" class="text-3xl" />
</div> </div>
<div class="ml-3 flex flex-column justify-center"> <div class="ml-3 flex flex-col">
<h4> <h4>
{{ v.min_self_delegation }} {{ staking.params.bond_denom }} {{ v.min_self_delegation }} {{ staking.params.bond_denom }}
</h4> </h4>
@ -312,7 +306,7 @@ const tipMsg = computed(() => {
class="flex items-center justify-center rounded w-10 h-10" class="flex items-center justify-center rounded w-10 h-10"
style="border: 1px solid #666" style="border: 1px solid #666"
> >
<Icon icon="mdi-stairs-up" class="text-3xl" /> <Icon icon="mdi:arrow-down-bold-circle-outline" class="text-3xl" />
</div> </div>
<div class="ml-3 flex flex-col justify-center"> <div class="ml-3 flex flex-col justify-center">
<h4>{{ v.unbonding_height }}</h4> <h4>{{ v.unbonding_height }}</h4>
@ -328,7 +322,8 @@ const tipMsg = computed(() => {
<Icon icon="mdi-clock" class="text-3xl" /> <Icon icon="mdi-clock" class="text-3xl" />
</div> </div>
<div class="ml-3 flex flex-col justify-center"> <div class="ml-3 flex flex-col justify-center">
<h4>{{ format.toDay(v.unbonding_time, 'from') }}</h4> <h4 v-if="v.unbonding_time && !v.unbonding_time.startsWith('1970')">{{ format.toDay(v.unbonding_time, 'from') }}</h4>
<h4 v-else>-</h4>
<span class="text-sm">Unbonding Time</span> <span class="text-sm">Unbonding Time</span>
</div> </div>
</div> </div>
@ -339,10 +334,10 @@ const tipMsg = computed(() => {
</div> </div>
<div class="mt-3 grid grid-cols-1 md:!grid-cols-3 gap-4"> <div class="mt-3 grid grid-cols-1 md:!grid-cols-3 gap-4">
<div class="h-100"> <div>
<CommissionRate :commission="v.commission"></CommissionRate> <CommissionRate :commission="v.commission"></CommissionRate>
</div> </div>
<div class="h-100 bg-base-100 rounded shadow relative overflow-auto"> <div class="bg-base-100 rounded shadow relative overflow-auto">
<div class="text-lg font-semibold text-main px-4 pt-4"> <div class="text-lg font-semibold text-main px-4 pt-4">
Commissions & Rewards Commissions & Rewards
</div> </div>
@ -385,13 +380,20 @@ const tipMsg = computed(() => {
</div> </div>
</div> </div>
</div> </div>
<div class="h-100 bg-base-100 rounded shadow overflow-x-auto"> <div class="bg-base-100 rounded shadow overflow-x-auto">
<div class="px-4 pt-4 mb-2 text-main font-lg font-semibold"> <div class="px-4 pt-4 mb-2 text-main font-lg font-semibold">
Addresses Addresses
</div> </div>
<div class="px-4 pb-4"> <div class="px-4 pb-4">
<div class="mb-3"> <div class="mb-3">
<div class="text-sm">Account</div> <div class="text-sm flex">Account
<Icon
icon="mdi:content-copy"
class="ml-2 cursor-pointer"
v-show="addresses.account"
@click="copyWebsite(addresses.account || '')"
/>
</div>
<RouterLink <RouterLink
class="text-xs text-primary" class="text-xs text-primary"
:to="`/${chain}/account/${addresses.account}`" :to="`/${chain}/account/${addresses.account}`"
@ -400,19 +402,50 @@ const tipMsg = computed(() => {
</RouterLink> </RouterLink>
</div> </div>
<div class="mb-3"> <div class="mb-3">
<div class="text-sm">Operator Address</div> <div class="text-sm flex">Operator Address
<Icon
icon="mdi:content-copy"
class="ml-2 cursor-pointer"
v-show="v.operator_address"
@click="copyWebsite(v.operator_address || '')"
/></div>
<div class="text-xs"> <div class="text-xs">
{{ v.operator_address }} {{ v.operator_address }}
</div> </div>
</div> </div>
<div class="mb-3"> <div class="mb-3">
<div class="text-sm">Hex Address</div> <div class="text-sm flex">Hex Address
<Icon
icon="mdi:content-copy"
class="ml-2 cursor-pointer"
v-show="addresses.hex"
@click="copyWebsite(addresses.hex || '')"
/>
</div>
<div class="text-xs">{{ addresses.hex }}</div> <div class="text-xs">{{ addresses.hex }}</div>
</div> </div>
<div> <div class="mb-3">
<div class="text-sm">Signer Address</div> <div class="text-sm flex">Signer Address
<Icon
icon="mdi:content-copy"
class="ml-2 cursor-pointer"
v-show="addresses.valCons"
@click="copyWebsite(addresses.valCons || '')"
/>
</div>
<div class="text-xs">{{ addresses.valCons }}</div> <div class="text-xs">{{ addresses.valCons }}</div>
</div> </div>
<div>
<div class="text-sm flex">Consensus Public Key
<Icon
icon="mdi:content-copy"
class="ml-2 cursor-pointer"
v-show="v.consensus_pubkey"
@click="copyWebsite(JSON.stringify(v.consensus_pubkey) || '')"
/>
</div>
<div class="text-xs">{{ v.consensus_pubkey }}</div>
</div>
</div> </div>
</div> </div>
</div> </div>