47 releases (23 stable)

new 5.0.2 Dec 17, 2024
5.0.1 Nov 28, 2024
5.0.0-alpha Sep 9, 2024
4.1.3 Nov 20, 2024
0.1.0 Oct 13, 2020

#5 in #edsl

Download history 878/week @ 2024-08-26 854/week @ 2024-09-02 1189/week @ 2024-09-09 965/week @ 2024-09-16 892/week @ 2024-09-23 848/week @ 2024-09-30 510/week @ 2024-10-07 772/week @ 2024-10-14 652/week @ 2024-10-21 871/week @ 2024-10-28 3240/week @ 2024-11-04 1865/week @ 2024-11-11 2050/week @ 2024-11-18 2676/week @ 2024-11-25 2712/week @ 2024-12-02 1564/week @ 2024-12-09

9,033 downloads per month
Used in 26 crates (12 directly)

Apache-2.0

41KB
925 lines

Contract Metadata

Defines types for the extended metadata of smart contracts targeting substrate.

Currently part of cargo-contract, the build tool for smart contracts written in ink!.


lib.rs:

Type definitions for creating and serializing metadata for smart contracts targeting Substrate's contracts pallet.

Example


let language = SourceLanguage::new(Language::Ink, Version::new(2, 1, 0));
let compiler =
    SourceCompiler::new(Compiler::RustC, Version::parse("1.46.0-nightly").unwrap());
let wasm = SourceWasm::new(vec![0u8]);
// Optional information about how the contract was build
let build_info: Map<String, Value> = Map::new();
let source = Source::new(
    Some(wasm),
    CodeHash([0u8; 32]),
    language,
    compiler,
    Some(build_info),
);
let contract = Contract::builder()
    .name("incrementer".to_string())
    .version(Version::new(2, 1, 0))
    .authors(vec!["Use Ink <ink@use.ink>".to_string()])
    .description("increment a value".to_string())
    .documentation(Url::parse("http://docs.rs/").unwrap())
    .repository(Url::parse("http://github.com/use-ink/ink/").unwrap())
    .homepage(Url::parse("http://example.com/").unwrap())
    .license("Apache-2.0".to_string())
    .build()
    .unwrap();
// user defined raw json
let user_json: Map<String, Value> = Map::new();
let user = User::new(user_json);
// contract abi raw json generated by contract compilation
let abi_json: Map<String, Value> = Map::new();
// image name and tag used for the verifiable build.
let image = String::from("paritytech/contracts-verifiable:3.0.1");

let metadata =
    ContractMetadata::new(source, contract, Some(image), Some(user), abi_json);

// serialize to json
let json = serde_json::to_value(&metadata).unwrap();

Dependencies

~2.6–4MB
~72K SLoC