Solana 使用 PrivateKey 导入钱包

发布于 2025-01-12 22:41:56 字数 311 浏览 0 评论 0 原文

我正在创建一个应用程序,具有使用关键字和私钥导入以太坊链钱包和 solana 钱包的功能。

对于以太坊链,我使用输入的私钥成功导入了钱包。我想为 Solana 做同样的事情。我正在使用 https://github.com/ajamaica/Solana.kt 创建 Solana 钱包地址此代码的 Account.kt 类,还使用它签署交易和发送令牌。任何人都可以帮忙是否有任何方法使用 PrivateKey 导入 Solana 钱包?

I am creating one app with functionality to import Ethereum chain wallets and solana wallets with keywords and PrivateKey.

For Ethereum chains, i successfully imported the wallet using entered Private Key. I want to do the same for Solana. I am creating Solana wallet address using https://github.com/ajamaica/Solana.kt this code's Account.kt class and also signing transactions and sending tokens using this. Can anyone help if is there any method to import Solana wallet using PrivateKey?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

从﹋此江山别 2025-01-19 22:41:56

Account.kt 类的默认构造函数中,它会生成一个新的密钥对供您使用。如果要导入现有密钥对,可以使用任何其他构造函数,例如:

密钥或 JSON 字符串参数是代表您的私钥的 64 字节,例如:

[131,30,15,126,65,195,177,39,147,196,183,221,159,85,134,0,29,179,48,175,149,133,13,75,184,212,99,68,29,62,82,248,37,183,235,40,42,249,238,136,159,202,239,211,121,108,51,154,178,214,31,6,111,28,202,173,100,41,145,230,76,152,208,131]

请注意 Solana 和以太坊并不完全兼容,因为它们使用不同的加密曲线。 Solana 使用 ed25519 曲线作为其帐户/密钥对,因此您的私钥将为 64 字节,而以太坊使用 secp256k1 曲线,这意味着您的私钥为 32 字节。

In the default constructor for the Account.kt class, it's generating a new keypair for you to use. If you want to import an existing keypair, you can use any of the other constructors, such as:

The secret key or JSON string parameter is the 64 bytes representing your private key, like:

[131,30,15,126,65,195,177,39,147,196,183,221,159,85,134,0,29,179,48,175,149,133,13,75,184,212,99,68,29,62,82,248,37,183,235,40,42,249,238,136,159,202,239,211,121,108,51,154,178,214,31,6,111,28,202,173,100,41,145,230,76,152,208,131]

Note that Solana and Ethereum are not perfectly compatible since they use different cryptographic curves. Solana uses the ed25519 curve for its accounts / keypairs, so your private key will be 64 bytes, whereas Ethereum uses the secp256k1 curve, meaning 32 bytes for your private key.

痕至 2025-01-19 22:41:56

您也可以使用 sol4kKeypair 类来完成此操作:

val keypairFromSecretKey = Keypair.fromSecretKey(secretKeyByteArray)

这是 a Java 中可立即运行的示例。在文档中查找详细信息。

You can do also it with sol4k and the Keypair class:

val keypairFromSecretKey = Keypair.fromSecretKey(secretKeyByteArray)

Here is a ready-to-run example in Java. Find the details in the documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文