Sui.

帖子

分享您的知识。

Bolke .
Jan 30, 2025
专家问答

Can sender address be gas owner instead of recipient?

I'm trying to avoid a trace of my sender address and receiver wallet. My idea is to make the sender the 'gas object owner' instead of the recipient. Is that possible when sending funds to a Binance wallet, and how can a 'sponsor' be involved without being identified?

  • Sui
  • Architecture
3
3
分享
评论
.

答案

3
hohm.
Feb 5 2025, 11:01

是的,这是可能的,具体取决于您使用的 SDK. 例如pysui,如果未确定 “赞助商”,则交易由汇款人支付,并使用发件人Sui账户中的天然气. 或者,您可以提供 “赞助商”,天然气将从他们的账户中扣除;但是,“赞助商” 需要签署交易.

3
最佳答案
评论
.
Xavier.eth.
Jan 31 2025, 00:29

Sui 交易是公开的,这意味着其他人可以看到交易细节. 为了避免跟踪,你可以考虑诸如零知识证明之类的解决方案,这些解决方案可以提供一定的匿名性,尽管它们很复杂,可能并不直接适用于所有场景.

2
评论
.
Vhekee.
Aug 27 2025, 00:27

Yes, on the Sui network, it's possible for the sender address to be the gas owner instead of the recipient. This can be achieved through a sponsored transaction, where one party pays for the gas fees while another party executes the transaction.

Sponsored Transactions:

  • Sponsorship: A sponsor (gas owner) can pay for the gas fees, while the sender (or another party) executes the transaction.
  • Anonymity: By using a sponsored transaction, you can potentially maintain anonymity between the sender and the gas owner.

Implementing Sponsored Transactions:

  • dApp-kit: Utilize the @mysten/dapp-kit library to create sponsored transactions. This library provides tools for building and executing sponsored transactions.
  • Transaction Structure: When building the transaction, specify the sponsor as the gas owner. This will allow the sponsor to pay for the gas fees while the sender executes the transaction.

Key Considerations:

  • Sponsor Trust: Ensure the sponsor is trustworthy, as they will be paying for the gas fees.
  • Transaction Complexity: Sponsored transactions can be more complex to implement, requiring additional logic and infrastructure.

Binance Wallet Compatibility:

  • Sponsored Transaction Support: Verify that Binance Wallet supports sponsored transactions. If it does, you can use this feature to send funds with the sender as the gas owner.

By using sponsored transactions, you can potentially maintain anonymity between the sender and the gas owner. However, ensure you understand the complexities and trust requirements involved in sponsored transactions [1].

1
评论
.

你知道答案吗?

请登录并分享。