diff --git a/sdk/typescript/docs/components/wallet/connect.tsx b/sdk/typescript/docs/components/wallet/connect.tsx index c15f148884..ec67bf0225 100644 --- a/sdk/typescript/docs/components/wallet/connect.tsx +++ b/sdk/typescript/docs/components/wallet/connect.tsx @@ -30,10 +30,10 @@ export const ConnectWallet = ({ return ( - Connect to your account + Connect to your testnet account - Your account + Your testnet account: Enter the mnemonic diff --git a/sdk/typescript/docs/pages/examples/nym-smart-contracts.mdx b/sdk/typescript/docs/pages/examples/nym-smart-contracts.mdx index 59e0bf817b..947ae28bd5 100644 --- a/sdk/typescript/docs/pages/examples/nym-smart-contracts.mdx +++ b/sdk/typescript/docs/pages/examples/nym-smart-contracts.mdx @@ -73,7 +73,7 @@ export default function Mixnodes() { const cosmWasmClient = await SigningCosmWasmClient.connect("wss://rpc.nymtech.net:443"); const client = new contracts.Mixnet.MixnetQueryClient( cosmWasmClient, - "n17srjznxl9dvzdkpwpw24gg668wc73val88a6m5ajg6ankwvz9wtst0cznr" // the contract address (which is different on mainnet, QA, etc) + "n17srjznxl9dvzdkpwpw24gg668wc73val88a6m5ajg6ankwvz9wtst0cznr" // the mainnet mixnet contract address (which will be different on mainnet, QA, etc) ); const result = await client.getMixNodesDetailed({}); setMixnodes(result.nodes) diff --git a/sdk/typescript/docs/pages/playground/wallet.mdx b/sdk/typescript/docs/pages/playground/wallet.mdx index c5bc5c634e..7dae8bc60e 100644 --- a/sdk/typescript/docs/pages/playground/wallet.mdx +++ b/sdk/typescript/docs/pages/playground/wallet.mdx @@ -6,7 +6,7 @@ import FormattedWalletConnectCode from '../../code-examples/wallet-connect-code. import FormattedWalletSendTokensCode from '../../code-examples/wallet-sendTokens-code.mdx'; import FormattedWalletDelegationsCode from '../../code-examples/wallet-delegations-code.mdx'; -Here's a small wallet example for you to test out! +Here's a small wallet example using testnet for you to test out!