import PageHeader from '@/components/PageHeader' import RelayRegionPicker from '@/components/RelayRegionPicker' import SettingsStore from '@/store/SettingsStore' import { cosmosWallets } from '@/utils/CosmosWalletUtil' import { eip155Wallets } from '@/utils/EIP155WalletUtil' import { solanaWallets } from '@/utils/SolanaWalletUtil' import { multiversxWallets } from '@/utils/MultiversxWalletUtil' import { tronWallets } from '@/utils/TronWalletUtil' import { kadenaWallets } from '@/utils/KadenaWalletUtil' import { Card, Divider, Row, Switch, Text } from '@nextui-org/react' import { Fragment } from 'react' import { useSnapshot } from 'valtio' import packageJSON from '../../package.json' import { tezosWallets } from '@/utils/TezosWalletUtil' export default function SettingsPage() { const { testNets, eip155Address, cosmosAddress, solanaAddress, multiversxAddress, tronAddress, tezosAddress, kadenaAddress } = useSnapshot(SettingsStore.state) return ( Packages @walletconnect/sign-client {packageJSON.dependencies['@walletconnect/web3wallet']} Testnets {testNets ? 'Enabled' : 'Disabled'} Relayer Region Warning: mnemonics and secret keys are provided for development purposes only and should not be used elsewhere! EIP155 Mnemonic {eip155Wallets[eip155Address].getMnemonic()} Cosmos Mnemonic {cosmosWallets[cosmosAddress].getMnemonic()} Solana Secret Key {solanaWallets[solanaAddress].getSecretKey()} MultiversX Mnemonic {multiversxWallets[multiversxAddress].getMnemonic()} Tron Private Key {tronWallets[tronAddress].privateKey} Tezos Mnemonic {tezosWallets[tezosAddress].getMnemonic()} Kadena Secret Key {kadenaWallets[kadenaAddress].getSecretKey()} ) }