Merge branch 'v3-single' of https://github.com/alisaweb3/explorer into v3-single

This commit is contained in:
Alisa | Side.one 2023-05-12 21:00:44 +08:00
commit 08c2b60454
5 changed files with 36 additions and 27 deletions

View File

@ -94,12 +94,14 @@ const result = ref('');
<template> <template>
<div> <div>
<div class="bg-base-100 px-4 pt-3 pb-4 rounded mb-4 shadow"> <div class="bg-base-100 px-4 pt-3 pb-4 rounded mb-4 shadow">
<h2 class="card-title truncate w-full">Contract List of Code: {{ props.code_id }}</h2> <h2 class="card-title truncate w-full">
Contract List of Code: {{ props.code_id }}
</h2>
<div class="overflow-x-auto"> <div class="overflow-x-auto">
<table class="table w-full mt-4"> <table class="table w-full mt-4">
<thead> <thead>
<tr> <tr>
<th style="position: relative;">Contract List</th> <th style="position: relative">Contract List</th>
<th>Actions</th> <th>Actions</th>
</tr> </tr>
</thead> </thead>
@ -110,15 +112,21 @@ const result = ref('');
<button <button
class="btn btn-primary btn-sm text-xs mr-2" class="btn btn-primary btn-sm text-xs mr-2"
@click="showInfo(v)" @click="showInfo(v)"
>contract</button> >
contract
</button>
<button <button
class="btn btn-primary btn-sm text-xs mr-2" class="btn btn-primary btn-sm text-xs mr-2"
@click="showState(v)" @click="showState(v)"
>States</button> >
States
</button>
<button <button
class="btn btn-primary btn-sm text-xs" class="btn btn-primary btn-sm text-xs"
@click="showQuery(v)" @click="showQuery(v)"
>Query</button> >
Query
</button>
</td> </td>
</tr> </tr>
</tbody> </tbody>

View File

@ -20,7 +20,7 @@ wasmStore.wasmClient.getWasmCodeList().then((x) => {
<table class="table w-full mt-4 text-sm"> <table class="table w-full mt-4 text-sm">
<thead> <thead>
<tr> <tr>
<th style="position: relative;">Code Id</th> <th style="position: relative">Code Id</th>
<th>Code Hash</th> <th>Code Hash</th>
<th>Creator</th> <th>Creator</th>
<th>Permissions</th> <th>Permissions</th>

View File

@ -39,9 +39,7 @@ onMounted(() => {
<template> <template>
<div> <div>
<div class="bg-base-100 px-4 pt-3 pb-4 rounded mb-4 shadow"> <div class="bg-base-100 px-4 pt-3 pb-4 rounded mb-4 shadow">
<h2 class="card-title truncate mb-2"> <h2 class="card-title truncate mb-2">What's State Sync?</h2>
What's State Sync?
</h2>
<div class="text-sm"> <div class="text-sm">
The Tendermint Core 0.34 release includes support for state sync, which The Tendermint Core 0.34 release includes support for state sync, which
allows a new node to join a network by fetching a snapshot of the allows a new node to join a network by fetching a snapshot of the
@ -58,14 +56,17 @@ onMounted(() => {
</div> </div>
<div class="bg-base-100 px-4 pt-3 pb-4 rounded mb-4 shadow"> <div class="bg-base-100 px-4 pt-3 pb-4 rounded mb-4 shadow">
<h2 class="card-title truncate mb-2">Starting New Node From State Sync</h2> <h2 class="card-title truncate mb-2">
Starting New Node From State Sync
</h2>
<div class="text-sm"> <div class="text-sm">
1. Install Binary ({{ appName }} Version: 1. Install Binary ({{ appName }} Version:
{{ nodeInfo.application_version?.version || '' }}) {{ nodeInfo.application_version?.version || '' }})
<br /> <br />
We need to install the binary first and make sure that the version is We need to install the binary first and make sure that the version is
the one currently in use on mainnet. the one currently in use on mainnet.
<br /> <br /> <br />
<br />
2. Enable State Sync<br /> 2. Enable State Sync<br />
We can configure Tendermint to use state sync in We can configure Tendermint to use state sync in
$DAEMON_HOME/config/config.toml. $DAEMON_HOME/config/config.toml.