-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #572 from showzyl/feat/wallet
feat: add side
- Loading branch information
Showing
5 changed files
with
130 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
<script setup lang="ts"> | ||
import { ref } from 'vue'; | ||
import { useDashboard, type ChainConfig, useBlockchain } from '@/stores'; | ||
import { CosmosRestClient } from '@/libs/client'; | ||
import { onMounted } from 'vue'; | ||
import AdBanner from '@/components/ad/AdBanner.vue'; | ||
const error = ref("") | ||
const conf = ref("") | ||
const dashboard = useDashboard() | ||
const selected = ref({} as ChainConfig) | ||
onMounted(() => { | ||
const chainStore = useBlockchain() | ||
selected.value = chainStore.current || Object.values(dashboard.chains)[0]; | ||
}) | ||
async function initParamsForKeplr() { | ||
const chain = selected.value | ||
if(!chain.endpoints?.rest?.at(0)) throw new Error("Endpoint does not set"); | ||
const client = CosmosRestClient.newDefault(chain.endpoints.rest?.at(0)?.address || "") | ||
const b = await client.getBaseBlockLatest() | ||
const chainid = b.block.header.chain_id | ||
const gasPriceStep = chain.keplrPriceStep || { | ||
low: 0.01, | ||
average: 0.025, | ||
high: 0.03, | ||
} | ||
const coinDecimals = chain.assets[0].denom_units.find(x => x.denom === chain.assets[0].symbol.toLowerCase())?.exponent || 6 | ||
conf.value = JSON.stringify({ | ||
chainId: chainid, | ||
chainName: chain.chainName, | ||
rpc: chain.endpoints?.rpc?.at(0)?.address, | ||
rest: chain.endpoints?.rest?.at(0)?.address, | ||
bip44: { | ||
coinType: Number(chain.coinType), | ||
}, | ||
coinType: Number(chain.coinType), | ||
bech32Config: { | ||
bech32PrefixAccAddr: chain.bech32Prefix, | ||
bech32PrefixAccPub: `${chain.bech32Prefix}pub`, | ||
bech32PrefixValAddr: `${chain.bech32Prefix}valoper`, | ||
bech32PrefixValPub: `${chain.bech32Prefix}valoperpub`, | ||
bech32PrefixConsAddr: `${chain.bech32Prefix}valcons`, | ||
bech32PrefixConsPub: `${chain.bech32Prefix}valconspub`, | ||
}, | ||
currencies: [ | ||
{ | ||
coinDenom: chain.assets[0].symbol, | ||
coinMinimalDenom: chain.assets[0].base, | ||
coinDecimals, | ||
coinGeckoId: chain.assets[0].coingecko_id || 'unknown', | ||
}, | ||
], | ||
feeCurrencies: [ | ||
{ | ||
coinDenom: chain.assets[0].symbol, | ||
coinMinimalDenom: chain.assets[0].base, | ||
coinDecimals, | ||
coinGeckoId: chain.assets[0].coingecko_id || 'unknown', | ||
gasPriceStep, | ||
}, | ||
], | ||
gasPriceStep, | ||
stakeCurrency: { | ||
coinDenom: chain.assets[0].symbol, | ||
coinMinimalDenom: chain.assets[0].base, | ||
coinDecimals, | ||
coinGeckoId: chain.assets[0].coingecko_id || 'unknown', | ||
}, | ||
features: chain.keplrFeatures || [], | ||
}, null, '\t') | ||
} | ||
function suggest() { | ||
// @ts-ignore | ||
if (window.unisat) { | ||
// @ts-ignore | ||
window.unisat.experimentalSuggestChain(JSON.parse(conf.value)).catch(e => { | ||
error.value = e | ||
}) | ||
} | ||
} | ||
</script> | ||
|
||
<template> | ||
<div class="bg-base-100 p-4 rounded text-center"> | ||
<AdBanner id="keplr-banner-ad" unit="banner" width="970px" height="90px" /> | ||
<div class="flex"> | ||
<select v-model="selected" class="select select-bordered mx-5" @change="initParamsForKeplr"> | ||
<option v-for="c in dashboard.chains" :value="c"> | ||
{{ c.chainName }} | ||
</option> | ||
</select> | ||
<button class="btn !bg-yes !border-yes text-white px-10" @click="suggest">Add {{ selected.chainName }} TO Unisat Wallet</button> | ||
</div> | ||
<div class="text-main mt-5"> | ||
<textarea v-model="conf" class="textarea textarea-bordered w-full" rows="15"></textarea> | ||
</div> | ||
<div class="mt-4 mb-4"> | ||
If the chain is not offically support on Keplr, you can submit these parameters to enable Keplr. | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters