Package genlayer.std#
gl#
Blockchain specific functionality, that won’t work without GenVM and reexports form
genlayer.py
provided for convenience
- genlayer.std.calldata
Proxy to module
genlayer.py.calldata
- genlayer.std.advanced
Proxy to module
genlayer.std.advanced
- genlayer.std.wasi
Proxy to module
genlayer.std._wasi
- genlayer.std.eth
Proxy to module
genlayer.py.eth
- class genlayer.std.ContractAt[source]#
Bases:
GenVMContractProxy
Provides a way to call view methods and send transactions to GenVM contracts
- emit(**data: Unpack[TransactionDataKwArgs])[source]#
Namespace with write message
- Returns:
object supporting
.name(*args, **kwargs)
that emits a message and returnsNone
- emit_transfer(**data: Unpack[TransactionDataKwArgs])[source]#
Method to emit a message that transfers native tokens
- class genlayer.std.MessageType[source]#
Bases:
NamedTuple
MessageType(contract_address, sender_address, origin_address, value, is_init, chain_id)
- genlayer.std.contract_interface(_contr: GenVMContractDeclaration) Callable[[Address], GenVMContractProxy] [source]#
This decorator produces an “interface” for other GenVM contracts. It has no semantical value, but can be used for auto completion and type checks
@gl.contract_interface class MyContract: class View: def view_meth(self, i: int) -> int: ... class Write: def write_meth(self, i: int) -> None: ...
- genlayer.std.deploy_contract(*, code: bytes, args: Sequence[Any] = [], kwargs: Mapping[str, Any] = {}, **data: Unpack[DeploymentTransactionDataKwArgs]) Address | None [source]#
Function for deploying new genvm contracts
- Parameters:
- Returns:
address of new contract iff non-zero
salt_nonce
was provided- Return type:
Address | None
Note
Refer to consensus documentation for exact specification of
salt_nonce
requirements and it’s effect on addressorder of transactions
- genlayer.std.eq_principle_prompt_comparative(fn: Callable[[], T], principle: str) T [source]#
Comparative equivalence principle that utilizes NLP for verifying that results are equivalent
- Parameters:
- Return type:
T
See
genlayer.std.advanced.run_nondet()
for description of data transformationsNote
As leader results are encoded as calldata,
format()
is used for string representation. However, operating on strings by yourself is more safe in generalNote
supports
.lazy()
version, which will returnLazy
- genlayer.std.eq_principle_prompt_non_comparative(fn: Callable[[], str], *, task: str, criteria: str) str [source]#
Non-comparative equivalence principle that must cover most common use cases
Both leader and validator finish their execution via NLP, that is used to perform
task
oninput
. Leader just executes this task, but the validator checks if task was performed with integrity. This principle is useful when task is subjectiveSee
run_nondet()
for description of data transformationsNote
supports
.lazy()
version, which will returnLazy
- Return type:
- genlayer.std.eq_principle_strict_eq(fn: Callable[[], T]) T [source]#
Comparative equivalence principle that checks for strict equality
- Parameters:
fn (Callable[[], T]) – functions to perform an action
- Return type:
T
See
genlayer.std.advanced.run_nondet()
for description of data transformationsNote
supports
.lazy()
version, which will returnLazy
- genlayer.std.eth_contract(contr: ContractDeclaration) Callable[[Address], ContractProxy] #
- Return type:
- genlayer.std.exec_prompt(prompt: str, **config: Unpack[ExecPromptKwArgs]) str [source]#
API to execute a prompt (perform NLP)
- Parameters:
prompt (
str
) – prompt itself**config (
ExecPromptKwArgs
) – configuration
- Return type:
str
Note
supports
.lazy()
version, which will returnLazy
- genlayer.std.get_webpage(url: str, **config: Unpack[GetWebpageKwArgs]) str [source]#
API to get a webpage after rendering it
- Parameters:
url (
str
) – url of website**config (
GetWebpageKwArgs
) – configuration
- Return type:
str
Note
supports
.lazy()
version, which will returnLazy
- genlayer.std.message: MessageType = Ellipsis#
Represents fields from a transaction message that was sent
- genlayer.std.private(f)[source]#
Decorator that marks method as private. As all methods are private by default it does nothing.
- class genlayer.std.public[source]#
Bases:
object
- write = <genlayer.std._write object>#
Decorator that marks a contract method as a public write. Has .payable
@gl.public.write def foo(self) -> None: ... @gl.public.write.payable def bar(self) -> None: ... @gl.public.write.min_gas(100).payable def bar(self) -> None: ...
- Return type:
T
gl.calldata#
This module is responsible for working with genvm calldata
Calldata natively supports following types:
Primitive types:
Composite types:
list
(and any othercollections.abc.Sequence
)dict
withstr
keys (and any othercollections.abc.Mapping
withstr
keys)
For full calldata specification see genvm repo
- class genlayer.py.calldata.CalldataEncodable[source]#
Bases:
object
Abstract class to support calldata encoding for custom types
Can be used to simplify code
- genlayer.py.calldata.decode(mem0: ~collections.abc.Buffer, *, memview2bytes: ~typing.Callable[[memoryview], ~typing.Any] = <class 'bytes'>) Decoded [source]#
Decodes calldata encoded bytes into python DSL
Out of composite types it will contain only
dict
andlist
- Return type:
Decoded
- genlayer.py.calldata.encode(x: EncodableWithDefault, *, default: Callable[[EncodableWithDefault], Encodable] | None = None) bytes [source]#
Encodes python object into calldata bytes
- Parameters:
default (Callable[[EncodableWithDefault], Encodable] | None) – function to be applied to each object recursively, it must return object encodable to calldata
- Return type:
gl.advanced#
This module provides some “advanced” features that can be used for optimizations
Warning
If you are using something “advanced” you must know what you do
- class genlayer.std.advanced.AlreadySerializedResult[source]#
Bases:
bytes
If contract method returns instance of this class, calldata encoding won’t be performed. Instead stored bytes will be passed as is
- exception genlayer.std.advanced.ContractError[source]#
Bases:
Exception
Represents “Contract error” result of a contract that is passed to validator function of
genlayer.std.run_nondet()
Validating leader output and sandbox invocation are only places where contract can “handle” contract error
- class genlayer.std.advanced.ContractReturn[source]#
Bases:
object
Represents a normal “Return” result of a contract that is passed to validator function of
genlayer.std.run_nondet()
- data: Decoded#
- genlayer.std.advanced.run_nondet(leader_fn: Callable[[], T], validator_fn: Callable[[ContractReturn | Rollback | ContractError], bool]) Lazy [source]#
Most generic user-friendly api to execute a non-deterministic block
- Parameters:
leader_fn (Callable[[], T]) – function that is executed in the leader
validator_fn (Callable[[ContractReturn | Rollback | ContractError], bool]) – function that is executed in the validator that also checks leader result
- Return type:
Uses cloudpickle to pass a “function” to sub VM
Note
If validator_fn produces an error and leader_fn produces an error, executor itself will set result of this block to “agree” and fail entire contract with leader’s error. This is done because not all errors can be caught in code itself (i.e.
exit
). If this behavior is not desired, just fast returnFalse
for leader error result.Warning
All sub-vm returns go through
genlayer.py.calldata
encoding
- genlayer.std.advanced.sandbox(fn: Callable[[], T]) Lazy [source]#
Runs function in the sandbox
- Return type:
- genlayer.std.advanced.validator_handle_rollbacks_and_errors_default(fn: Callable[[], Decoded], leaders_result: ContractReturn | Rollback | ContractError) tuple[Decoded, Decoded] [source]#
Default function to handle rollbacks and contract errors
Errors and rollbacks are always checked for strict equality, which means that it’s user responsibility to dump least possible text in there
- Returns:
ContractReturn
data fields as(validator, leader)`
iff both results are not errors/rollbacks- Return type:
tuple[Decoded, Decoded]
gl.eth#
This module is responsible for interactions with ghost/external contracts
- class genlayer.py.eth.ContractDeclaration[source]#
-
Interface for declaring interfaces of external contracts
- __init__(*args, **kwargs)#
- class genlayer.py.eth.ContractProxy[source]#
Bases:
Generic
- __init__(address: Address, view_impl: Callable[[ContractProxy], TView], balance_impl: Callable[[ContractProxy], u256], send_impl: Callable[[ContractProxy, TransactionDataKwArgs], TWrite], transfer_impl: Callable[[ContractProxy, TransactionDataKwArgs], None])[source]#
- address#
- class genlayer.py.eth.InplaceTuple[source]#
Bases:
object
This class indicates that tuple should be encoded/decoded in-place. Which means that even if it is dynamically sized, it is ignored. It is useful for encoding/decoding arguments and returns
tuple[InplaceTuple, str, u256]
gl.wasi#
- genlayer.std._wasi.call_contract(address: bytes, calldata: bytes, data: str) _Fd [source]#
- Return type:
_Fd
- genlayer.std._wasi.exec_prompt(config: str, prompt: str) _FdErroring [source]#
- Return type:
_FdErroring
- genlayer.std._wasi.exec_prompt_id(id: int, vars: str) _FdErroring [source]#
- Return type:
_FdErroring
- genlayer.std._wasi.get_webpage(config: str, url: str) _FdErroring [source]#
- Return type:
_FdErroring