Skip to content

Commit

Permalink
AppLib.juvix exports everything needed (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
janmasrovira authored Jan 20, 2025
1 parent b8062f2 commit 90f8302
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Anoma.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ import Anoma.Delta open using {Delta} public;
import Anoma.Random open public;
import Anoma.Utils as Utils public;
import Anoma.Encode open public;
import Anoma.State.CommitmentTree open public;
import Anoma.Builtin.System open using {isNullifier; isCommitment} public;
12 changes: 12 additions & 0 deletions Applib.juvix
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
module Applib;

import Anoma open hiding {
kind;
nullifier;
commitment;
module ExternalIdentity;
module InternalIdentity;
} public;
import Anoma.Builtin.System open using {builtinAnomaDecode; builtinAnomaEncode} public;

import BaseLayer open public;

import Applib.Helpers open public;
import Applib.Identities open public;
import Applib.Authorization as Authorization public;
import Applib.Trait.Tx open public;

4 changes: 4 additions & 0 deletions BaseLayer.juvix
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module BaseLayer;

import BaseLayer.ResourceMachine open public;
import BaseLayer.TransactionRequest open public;

0 comments on commit 90f8302

Please sign in to comment.