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
11
12
13
syntax = "proto3";
package waves;
option java_package = "com.wavesplatform.protobuf.transaction";
option csharp_namespace = "Waves";
option go_package = "github.com/wavesplatform/gowaves/pkg/grpc/generated/waves";

message Recipient {
    oneof recipient {
        // First 20 bytes of the result of the Keccak256(Blake2b256(publicKey)) hashing function.
        bytes public_key_hash = 1;
        string alias = 2;
    };
};