Skip to content

Commit 90f8302

Browse files
authored
AppLib.juvix exports everything needed (#78)
1 parent b8062f2 commit 90f8302

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

Anoma.juvix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ import Anoma.Delta open using {Delta} public;
88
import Anoma.Random open public;
99
import Anoma.Utils as Utils public;
1010
import Anoma.Encode open public;
11+
import Anoma.State.CommitmentTree open public;
12+
import Anoma.Builtin.System open using {isNullifier; isCommitment} public;

Applib.juvix

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
module Applib;
22

3+
import Anoma open hiding {
4+
kind;
5+
nullifier;
6+
commitment;
7+
module ExternalIdentity;
8+
module InternalIdentity;
9+
} public;
10+
import Anoma.Builtin.System open using {builtinAnomaDecode; builtinAnomaEncode} public;
11+
12+
import BaseLayer open public;
13+
314
import Applib.Helpers open public;
415
import Applib.Identities open public;
516
import Applib.Authorization as Authorization public;
617
import Applib.Trait.Tx open public;
18+

BaseLayer.juvix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module BaseLayer;
2+
3+
import BaseLayer.ResourceMachine open public;
4+
import BaseLayer.TransactionRequest open public;

0 commit comments

Comments
 (0)