Reference to address(this)

How do I write address(this) in a spec file… referring to the address of the contract itself

1 Like

currentContract

example:

invariant totalSupply_LE_balance()
	    totalSupply() <= underlying.balanceOf(currentContract)
1 Like