Skip to content

Commit a9bba04

Browse files
committed
updated
1 parent e527efe commit a9bba04

14 files changed

Lines changed: 370 additions & 873 deletions

File tree

contracts/amm/Nargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ authors = [""]
44
type = "contract"
55

66
[dependencies]
7-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-aztecnr-rc.2", directory = "noir-projects/aztec-nr/aztec" }
8-
token = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-aztecnr-rc.2", directory = "noir-projects/noir-contracts/contracts/app/token_contract" }
9-
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-aztecnr-rc.2", directory = "noir-projects/aztec-nr/uint-note" }
7+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/aztec" }
8+
token = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/noir-contracts/contracts/app/token_contract" }
9+
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/uint-note" }

contracts/proof_of_password/Nargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type = "contract"
44
authors = [""]
55

66
[dependencies]
7-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-aztecnr-rc.2", directory = "noir-projects/aztec-nr/aztec" }
8-
token = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-aztecnr-rc.2", directory = "noir-projects/noir-contracts/contracts/app/token_contract" }
7+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/aztec" }
8+
token = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/noir-contracts/contracts/app/token_contract" }
99
poseidon = { tag = "v0.1.1", git = "https://github.com/noir-lang/poseidon" }
10-
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-aztecnr-rc.2", directory = "noir-projects/aztec-nr/compressed-string" }
10+
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/compressed-string" }

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@
2727
"local-aztec:status": "node scripts/toggle-local-aztec.js status"
2828
},
2929
"dependencies": {
30-
"@aztec/accounts": "v4.2.0-aztecnr-rc.2",
31-
"@aztec/aztec.js": "v4.2.0-aztecnr-rc.2",
32-
"@aztec/constants": "v4.2.0-aztecnr-rc.2",
33-
"@aztec/entrypoints": "v4.2.0-aztecnr-rc.2",
34-
"@aztec/foundation": "v4.2.0-aztecnr-rc.2",
35-
"@aztec/noir-contracts.js": "v4.2.0-aztecnr-rc.2",
36-
"@aztec/protocol-contracts": "v4.2.0-aztecnr-rc.2",
37-
"@aztec/pxe": "v4.2.0-aztecnr-rc.2",
38-
"@aztec/stdlib": "v4.2.0-aztecnr-rc.2",
39-
"@aztec/wallet-sdk": "v4.2.0-aztecnr-rc.2",
30+
"@aztec/accounts": "v4.2.0-nightly.20260412",
31+
"@aztec/aztec.js": "v4.2.0-nightly.20260412",
32+
"@aztec/constants": "v4.2.0-nightly.20260412",
33+
"@aztec/entrypoints": "v4.2.0-nightly.20260412",
34+
"@aztec/foundation": "v4.2.0-nightly.20260412",
35+
"@aztec/noir-contracts.js": "v4.2.0-nightly.20260412",
36+
"@aztec/protocol-contracts": "v4.2.0-nightly.20260412",
37+
"@aztec/pxe": "v4.2.0-nightly.20260412",
38+
"@aztec/stdlib": "v4.2.0-nightly.20260412",
39+
"@aztec/wallet-sdk": "v4.2.0-nightly.20260412",
4040
"@emotion/react": "^11.14.0",
4141
"@emotion/styled": "^11.14.0",
42-
"@gregojuice/contracts": "^0.0.10",
43-
"@gregojuice/embedded-wallet": "^0.0.10",
42+
"@gregojuice/contracts": "^0.0.15",
43+
"@gregojuice/embedded-wallet": "^0.0.15",
4444
"@mui/icons-material": "^6.3.1",
4545
"@mui/material": "^6.3.1",
4646
"@mui/styles": "^6.3.1",
@@ -51,7 +51,7 @@
5151
"zod": "^3.23.8"
5252
},
5353
"devDependencies": {
54-
"@aztec/wallets": "v4.2.0-aztecnr-rc.2",
54+
"@aztec/wallets": "v4.2.0-nightly.20260412",
5555
"@eslint/js": "^9.18.0",
5656
"@playwright/test": "1.49.0",
5757
"@types/buffer-json": "^2",

scripts/deploy.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,7 @@ import type { EmbeddedWallet } from '@aztec/wallets/embedded';
1111
import { ProofOfPasswordContract } from '../contracts/target/ProofOfPassword.ts';
1212
import { BatchCall } from '@aztec/aztec.js/contracts';
1313

14-
import {
15-
parseNetwork,
16-
parseAddressList,
17-
NETWORK_URLS,
18-
setupWallet,
19-
getOrCreateDeployer,
20-
} from './utils.ts';
14+
import { parseNetwork, parseAddressList, NETWORK_URLS, setupWallet, getOrCreateDeployer } from './utils.ts';
2115

2216
const NETWORK = parseNetwork();
2317
const MINT_TO_ADDRESSES = parseAddressList('--mint-to', 'MINT_TO');

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { SwapContainer } from './components/swap';
88
import { useWallet } from './contexts/wallet';
99
import { useOnboarding } from './contexts/onboarding';
1010
import { OnboardingModal } from './components/OnboardingModal';
11-
import { TxNotificationCenter } from './components/TxNotificationCenter';
11+
import { TxNotificationCenter } from '@gregojuice/embedded-wallet/ui';
1212
import type { AztecAddress } from '@aztec/aztec.js/addresses';
1313

1414
export function App() {

0 commit comments

Comments
 (0)