来自以太坊智能合约的交易

Transaction From Ethereum Smart contract

当我们有合同时,我们转移货币

签名是怎么做的???

比如我发送10个以太币给合约,合约分给5个人

这笔交易是什么样的?我的私钥从哪里来签署所有 5 笔交易?

I send 10 ethers to the contract and the contract is divided between 5 people

所以可能是这样的:

pragma solidity ^0.8;

contract MyContract {
    function redistribute(address[5] memory otherPeople) external payable {
        for(uint i = 0; i < 5; i++) {
            payable(otherPeople[i]).transfer(msg.value / 5);
        }
    }
}

您向合约发送一笔交易(价值 10 ETH),执行 redistribute() 功能。

合约执行 5 笔内部交易,有效地将 2 ETH 转移到每个 otherPeople 地址。

在这种情况下,您只需要使用“主”交易发送方的私钥,因为其他交易都是内部交易,由主交易包装。