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
13
14
15
16
17
18
export struct SingletonStruct {
    mod_hash: Bytes32,
    launcher_id: Bytes32,
    ...launcher_puzzle_hash: Bytes32,
}

export type Proof = LineageProof | EveProof;

export struct LineageProof {
    parent_parent_coin_info: Bytes32,
    parent_inner_puzzle_hash: Bytes32,
    parent_amount: Int,
}

export struct EveProof {
    parent_parent_coin_info: Bytes32,
    parent_amount: Int,
}