53 releases (33 major breaking)

35.0.0 Apr 30, 2024
34.0.0 Apr 8, 2024
33.0.0 Mar 18, 2024
32.0.0 Feb 26, 2024
2.0.0-alpha.5 Mar 24, 2020

#1250 in Magic Beans

Download history 8896/week @ 2024-01-23 7435/week @ 2024-01-30 10501/week @ 2024-02-06 11025/week @ 2024-02-13 8757/week @ 2024-02-20 9621/week @ 2024-02-27 9190/week @ 2024-03-05 9398/week @ 2024-03-12 11656/week @ 2024-03-19 8038/week @ 2024-03-26 13579/week @ 2024-04-02 10361/week @ 2024-04-09 9138/week @ 2024-04-16 9404/week @ 2024-04-23 8801/week @ 2024-04-30 7432/week @ 2024-05-07

36,632 downloads per month
Used in 691 crates (276 directly)

Apache-2.0

645KB
12K SLoC

I/O host interface for Substrate runtime.

License: Apache-2.0


lib.rs:

Substrate Primitives: IO

This crate contains interfaces for the runtime to communicate with the outside world, ergo io. In other context, such interfaces are referred to as "host functions".

Each set of host functions are defined with an instance of the sp_runtime_interface::runtime_interface macro.

Most notably, this crate contains host functions for:

All of the default host functions provided by this crate, and by default contained in all substrate-based clients are amalgamated in SubstrateHostFunctions.

Externalities

Host functions go hand in hand with the concept of externalities. Externalities are an environment in which host functions are provided, and thus can be accessed. Some host functions are only accessible in an externality environment that provides it.

A typical error for substrate developers is the following:

use sp_io::storage::get;
let data = get(b"hello world");

This code will panic with the following error:

thread 'main' panicked at '`get_version_1` called outside of an Externalities-provided environment.'

Such error messages should always be interpreted as "code accessing host functions accessed outside of externalities".

An externality is any type that implements sp_externalities::Externalities. A simple example of which is TestExternalities, which is commonly used in tests and is exported from this crate.

use sp_io::{storage::get, TestExternalities};
TestExternalities::default().execute_with(|| {
	let data = get(b"hello world");
});

Dependencies

~11–21MB
~343K SLoC