#val #environment #env #object #host #interface #contract

no-std soroban-env-common

Soroban contract environment common types and functionality

16 stable releases

21.2.0 Jul 16, 2024
21.1.0 May 31, 2024
20.3.0 Mar 15, 2024
20.0.2 Dec 20, 2023
0.0.3 Jul 29, 2022

#785 in Magic Beans

Download history 2509/week @ 2024-04-04 2962/week @ 2024-04-11 2774/week @ 2024-04-18 2734/week @ 2024-04-25 2547/week @ 2024-05-02 2630/week @ 2024-05-09 2322/week @ 2024-05-16 1706/week @ 2024-05-23 2449/week @ 2024-05-30 2468/week @ 2024-06-06 3491/week @ 2024-06-13 2721/week @ 2024-06-20 1850/week @ 2024-06-27 1484/week @ 2024-07-04 3817/week @ 2024-07-11 2142/week @ 2024-07-18

9,762 downloads per month
Used in 56 crates (4 directly)

Apache-2.0

195KB
4K SLoC

rs-soroban-env

Rust contract-environment interface and (optional) host implementation for Soroban.

The soroban-env-common crate contains elements of the shared environment-interface between smart contract guest and host: the Env trait that defines the set of available environment functions as well as the Val type that can pass back and forth through the WASM calling convention. Additionally small wrappers around subtypes of Val are included: Object, Symbol, Error, etc.

The soroban-env-guest crate contains the guest-side stub implementation of the environment interface called Guest dependent on extern fns provided by the host implementation. This can be used in a WASM runtime that provides the extern fns.

The soroban-env-host crate contains the host-side full implementation of the environment interface called Host. This can be used either in the real blockchain host, or for local testing in the SDK.


lib.rs:

The environment-common crate contains three families of types:

  • The [Val] type, a 64-bit value type that is a union between several different types (numbers, booleans, symbols, object references), encoded via careful bit-packing.
  • Wrapper types ([Object], [Symbol], [Error]) that contain [Val] in a specific, known union state. These are also 64-bit values, but offer methods specific to the union state (eg. [Symbol] will interconvert with Rust string types).
  • The [Env] trait, which describes the interface between guest and host code. In other words, Env describes a set of host functions that must be implemented in a contract host, and can be called from a guest (or by the SDK). Methods on the [Env] trait can only pass 64-bit values, which are usually [Val] or one of the wrapper types.

The crate additionally contains functions for interconversion between the [Val] type and XDR types, and re-exports the XDR definitions from [stellar_xdr] under the module [xdr].

Dependencies

~6–34MB
~504K SLoC