Vyper
在 vyper 中引用合約自己的地址
你如何在 vyper 中引用你自己的合約地址,例如在solidity中你會做這樣的事情:
address(this)
有沒有辦法在 vyper 中做同樣的事情?謝謝。
與 Solidity 等效的 Vyper
address(this)
是self
. 你可以用這個簡單的合約來驗證它:@public @constant def foo() -> address: return self