-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make
noirc_driver
aware of contracts (#999)
* feat: make `noirc_driver` aware of contracts * feat: use new `compile_contracts` method in `wasm`
- Loading branch information
1 parent
1e6761b
commit c21afca
Showing
6 changed files
with
62 additions
and
65 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
use std::collections::BTreeMap; | ||
|
||
use crate::CompiledProgram; | ||
|
||
pub struct CompiledContract { | ||
/// The name of the contract. | ||
pub name: String, | ||
/// Each of the contract's functions are compiled into a separate `CompiledProgram` | ||
/// stored in this `BTreeMap`. | ||
pub functions: BTreeMap<String, CompiledProgram>, | ||
} |
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