aleph_client 3.0.0

This crate provides a Rust application interface for submitting transactions to `aleph-node` chain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rustlang/rust:nightly-slim

WORKDIR subxt

RUN cargo install subxt-cli
RUN rustup component add rustfmt --toolchain nightly

COPY docker/subxt-integration-entrypoint.sh /subxt/subxt-integration-entrypoint.sh

RUN chmod +x /subxt/subxt-integration-entrypoint.sh
RUN rustc --version

ENTRYPOINT ["./subxt-integration-entrypoint.sh"]