soroban-env-host

Crates.iosoroban-env-host
lib.rssoroban-env-host
version22.0.0
sourcesrc
created_at2022-07-28 21:18:52.534609
updated_at2024-11-06 00:44:19.98157
descriptionSoroban contract host environment.
homepagehttps://github.com/stellar/rs-soroban-env
repositoryhttps://github.com/stellar/rs-soroban-env
max_upload_size
id634677
size2,248,387
Stellar (Rust crate publisher) (stellar-crates)

documentation

README

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.

Commit count: 890

cargo fmt