-
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.
- Loading branch information
1 parent
f96dfa5
commit 125ed19
Showing
5 changed files
with
107 additions
and
15 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
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
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,3 +1,101 @@ | ||
export * as Constants from './constants.js'; | ||
export * as Storage from './contracts/storages.js'; | ||
export * as ZkApp from './contracts/index.js'; | ||
|
||
export { | ||
// Structs | ||
CheckProjectOwerInput, | ||
CreateProjectInput, | ||
UpdateProjectInput, | ||
CreateProjectProofOutput, | ||
|
||
// Zk Programs & Proofs | ||
CreateProject, | ||
ProjectProof, | ||
|
||
// Smart Contract | ||
ProjectContract, | ||
|
||
// Actions & Events | ||
ProjectAction, | ||
EventEnum as ProjectEvents, | ||
} from './contracts/Project.js'; | ||
|
||
export { | ||
// Structs | ||
CheckCampaignOwerInput, | ||
CreateCampaignInput, | ||
UpdateCampaignInput, | ||
CreateCampaignProofOutput, | ||
|
||
// Zk Programs & Proofs | ||
CreateCampaign, | ||
CampaignProof, | ||
|
||
// Smart Contract | ||
CampaignContract, | ||
|
||
// Actions & Events | ||
CampaignAction, | ||
EventEnum as CampaignEvents, | ||
} from './contracts/Campaign.js'; | ||
|
||
export { | ||
// Structs | ||
JoinCampaignInput, | ||
CheckParticipationIndexInput, | ||
CreateParticipationProofOutput, | ||
|
||
// Zk Programs & Proofs | ||
JoinCampaign, | ||
ParticipationProof, | ||
|
||
// Smart Contract | ||
ParticipationContract, | ||
|
||
// Actions & Events | ||
ParticipationAction, | ||
EventEnum as ParticipationEvents, | ||
} from './contracts/Participation.js'; | ||
|
||
export { | ||
// Structs | ||
RequestSent, | ||
CustomScalarArray, | ||
FundingInput, | ||
CheckValueInput, | ||
ReduceOutput as ReduceFundingOutput, | ||
RollupActionsOutput as RollupParticipationActionsOutput, | ||
|
||
// Zk Programs & Proofs | ||
ReduceProof, | ||
CreateReduceProof, | ||
ProofRollupAction, | ||
CreateRollupProof, | ||
|
||
// Smart Contract | ||
FundingContract, | ||
|
||
// Actions & Events | ||
FundingAction, | ||
EventEnum as FundingEvents, | ||
} from './contracts/Funding.js'; | ||
|
||
export { | ||
// Structs | ||
InvestVector, | ||
ClaimFundInput, | ||
CheckIfNotClaimedInput, | ||
ClaimFundProofOutput, | ||
|
||
// Zk Programs & Proofs | ||
TreasuryProof, | ||
ClaimFund, | ||
|
||
// Smart Contract | ||
TreasuryContract, | ||
|
||
// Actions & Events | ||
TreasuryAction, | ||
EventEnum as TreasuryEvents, | ||
} from './contracts/Treasury.js'; |