Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在以太坊中,合约托管账户(合约部署到的账户)是否拥有发送给合约的以太币?如果不是,那么如果合约被删除,以太币是被送回还是消失了呢?
合约是一个账户。(我认为这就是您所说的“合同托管帐户”的意思?)
所以是的,合约拥有自己的以太币。可以“删除”合约的唯一方法是调用selfdestruct(target),在这种情况下,合约的剩余以太币余额将转移到 中给出的地址target。
selfdestruct(target)
target