
Add functions as fields before inferring Unbound untyped fields before binding typed ones Fix failing tests Make complex_types contract non-compatible with aevm Reduce code duplication Undo changes to test.aes Remove special handling of __constructor__ field Resolve field constraint by arity of contract function Update CHANGELOG Update CHANGELOG.md Co-authored-by: Radosław Rowicki <35342116+radrow@users.noreply.github.com> Split bind_field function Add a comment about rebinding
68 lines
1.7 KiB
Plaintext
68 lines
1.7 KiB
Plaintext
|
|
// Testing primitives for accessing the block chain environment
|
|
|
|
contract Environment =
|
|
|
|
record state = {remote : Environment}
|
|
|
|
entrypoint init(remote) = {remote = remote}
|
|
|
|
stateful entrypoint set_remote(remote) = put({remote = remote})
|
|
|
|
// -- Information about the this contract ---
|
|
|
|
// Address
|
|
entrypoint contract_address() : address = Contract.address
|
|
entrypoint nested_address(who) : address =
|
|
who.contract_address(gas = 1000)
|
|
|
|
// Balance
|
|
entrypoint contract_balance() : int = Contract.balance
|
|
|
|
// -- Information about the current call ---
|
|
|
|
// Origin
|
|
entrypoint call_origin() : address = Call.origin
|
|
entrypoint nested_origin() : address =
|
|
state.remote.call_origin()
|
|
|
|
// Caller
|
|
entrypoint call_caller() : address = Call.caller
|
|
entrypoint nested_caller() : address =
|
|
state.remote.call_caller()
|
|
|
|
// Value
|
|
entrypoint call_value() : int = Call.value
|
|
stateful entrypoint nested_value(value : int) : int =
|
|
state.remote.call_value(value = value / 2)
|
|
|
|
// Gas price
|
|
entrypoint call_gas_price() : int = Call.gas_price
|
|
|
|
// Fee
|
|
entrypoint call_fee() : int = Call.fee
|
|
|
|
// -- Information about the chain ---
|
|
|
|
// Account balances
|
|
entrypoint get_balance(acct : address) : int = Chain.balance(acct)
|
|
|
|
// Block hash
|
|
entrypoint block_hash(height : int) : option(hash) = Chain.block_hash(height)
|
|
|
|
// Coinbase
|
|
entrypoint coinbase() : address = Chain.coinbase
|
|
|
|
// Block timestamp
|
|
entrypoint timestamp() : int = Chain.timestamp
|
|
|
|
// Block height
|
|
entrypoint block_height() : int = Chain.block_height
|
|
|
|
// Difficulty
|
|
entrypoint difficulty() : int = Chain.difficulty
|
|
|
|
// Gas limit
|
|
entrypoint gas_limit() : int = Chain.gas_limit
|
|
|