From ff146d592edbbea69188bb3cfa59db15e23e93fe Mon Sep 17 00:00:00 2001 From: kaia-docs <content+kaia@klaytn.foundation> Date: Wed, 22 Jan 2025 10:21:09 +0800 Subject: [PATCH] New translations address.mdx (Chinese Traditional) --- .../current/references/sdk/web3py-ext/utils/address.mdx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/references/sdk/web3py-ext/utils/address.mdx b/i18n/zh-TW/docusaurus-plugin-content-docs/current/references/sdk/web3py-ext/utils/address.mdx index 1a40d2df438b..f1eb07c296f2 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/references/sdk/web3py-ext/utils/address.mdx +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/references/sdk/web3py-ext/utils/address.mdx @@ -13,11 +13,11 @@ def main(): private_key=Account.from_key("0x0e4ca6d38096ad99324de0dde108587e5d7c600165ae4cd6c2462c597458c2b8") print("Public key from private key",address_from_private_key(private_key)) - print("Compress key from private key"、compressed_key(private_key)) + print("Compress key from private key",compressed_key(private_key)) x = "0xdc9dccbd788c00fa98f7f4082f2f714e799bc0c29d63f04d48b54fe6250453cd" y = "0xaf06ca34ae8714cf3dae06bacdb78c7c2d4054bd38961d40853cd5f15955da79" - print("Compress public key from x、y", compressed_key_from_xy(x, y)) + print("Compress public key from x,y", compressed_key_from_xy(x, y)) print("Compress public key and address from x,y", compressed_key_and_address_from_xy(x, y)) main() @@ -31,6 +31,7 @@ Compress key from private key 0x03dc9dccbd788c00fa98f7f4082f2f714e799bc0c29d63f04d48b54fe6250453cd Compress key from x,y 03dc9dccbd788c00fa98f7f4082f2f714e799bc0c29d63f04d48b54fe6250453cd Compress key and address from x,y ('0x03dc9dccbd788c00fa98f7f4082f2f714e799bc0c29d63f04d48b54fe6250453cd', '0xA2a8854b1802D8Cd5De631E690817c253d6a9153') + ``` </CH.Code>