-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AppLib.juvix exports everything needed (#78)
- Loading branch information
1 parent
b8062f2
commit 90f8302
Showing
3 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |