Vyper 等同于 solidity 的地址(this)
Vyper Equivalent for solidity's address(this)
如何在Vyper中获取当前合约的地址。在 solidity 中使用 address(this)
。 Vyper 中的等价物是什么。
address myContractAddress;
myContractAddress = address(this);
只是 self
,如:
@public
def get_address() -> address:
return self
如何在Vyper中获取当前合约的地址。在 solidity 中使用 address(this)
。 Vyper 中的等价物是什么。
address myContractAddress;
myContractAddress = address(this);
只是 self
,如:
@public
def get_address() -> address:
return self