waves-rust 0.2.6

A Rust library for interacting with the Waves blockchain. Supports node interaction, offline transaction signing and creating addresses and keys.
Documentation
1
2
3
4
5
6
7
8
9
10
syntax = "proto3";
package waves;
option java_package = "com.wavesplatform.protobuf";
option csharp_namespace = "Waves";
option go_package = "github.com/wavesplatform/gowaves/pkg/grpc/generated/waves";

message Amount {
    bytes asset_id = 1;
    int64 amount = 2;
};