rue-compiler 0.8.4

A compiler for the Rue programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
import conditions::types::Memos;

export struct NotarizedPayment {
    nonce: Bytes32,
    ...payments: List<Payment>,
}

export struct Payment {
    puzzle_hash: Bytes32,
    amount: Int,
    ...memos: Memos | nil,
}