-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(avm): integrate AVM with initializers (#5469)
This PR creates private/public/avm variants of some lib functions used for initializers. This is because in general the flow in private/public/avm will be substantially different. The public version will be removed once the AVM is fully enabled. I'm adding a new AVM test contract because: having an initializer adds a check to EVERY other function in the contract. This makes the unit tests fail.
- Loading branch information
Showing
11 changed files
with
137 additions
and
48 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
8 changes: 8 additions & 0 deletions
8
noir-projects/noir-contracts/contracts/avm_initializer_test_contract/Nargo.toml
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,8 @@ | ||
[package] | ||
name = "avm_initializer_test_contract" | ||
authors = [""] | ||
compiler_version = ">=0.25.0" | ||
type = "contract" | ||
|
||
[dependencies] | ||
aztec = { path = "../../../aztec-nr/aztec" } |
22 changes: 22 additions & 0 deletions
22
noir-projects/noir-contracts/contracts/avm_initializer_test_contract/src/main.nr
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,22 @@ | ||
contract AvmInitializerTest { | ||
// Libs | ||
use dep::aztec::state_vars::PublicImmutable; | ||
use dep::aztec::protocol_types::address::AztecAddress; | ||
|
||
struct Storage { | ||
immutable: PublicImmutable<Field>, | ||
} | ||
|
||
/************************************************************************ | ||
* Storage | ||
************************************************************************/ | ||
#[aztec(public-vm)] | ||
#[aztec(initializer)] | ||
fn constructor() { | ||
storage.immutable.initialize(42); | ||
} | ||
|
||
unconstrained fn view_storage_immutable() -> pub Field { | ||
storage.immutable.read() | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { type Wallet } from '@aztec/aztec.js'; | ||
import { AvmInitializerTestContract } from '@aztec/noir-contracts.js'; | ||
|
||
import { jest } from '@jest/globals'; | ||
|
||
import { setup } from './fixtures/utils.js'; | ||
|
||
const TIMEOUT = 100_000; | ||
|
||
describe('e2e_avm_initializer', () => { | ||
jest.setTimeout(TIMEOUT); | ||
|
||
let wallet: Wallet; | ||
let avmContact: AvmInitializerTestContract; | ||
let teardown: () => Promise<void>; | ||
|
||
beforeAll(async () => { | ||
({ teardown, wallet } = await setup()); | ||
}, 100_000); | ||
|
||
afterAll(() => teardown()); | ||
|
||
beforeEach(async () => { | ||
avmContact = await AvmInitializerTestContract.deploy(wallet).send().deployed(); | ||
}, 50_000); | ||
|
||
describe('Storage', () => { | ||
it('Read immutable (initialized) storage (Field)', async () => { | ||
expect(await avmContact.methods.view_storage_immutable().simulate()).toEqual(42n); | ||
}); | ||
}); | ||
}); |
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