Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@
* Noir circuit tests ([#3229](https://github.com/AztecProtocol/aztec-packages/issues/3229)) ([dbfb086](https://github.com/AztecProtocol/aztec-packages/commit/dbfb0862a26944e240c84406c7d856c022b25f47))
* Private kernel circuits ([#3240](https://github.com/AztecProtocol/aztec-packages/issues/3240)) ([b7fbe19](https://github.com/AztecProtocol/aztec-packages/commit/b7fbe19a04a1097df7597ac8a32996994840f57c))
* Prune 0 values from L2Tx ([#3224](https://github.com/AztecProtocol/aztec-packages/issues/3224)) ([2de206d](https://github.com/AztecProtocol/aztec-packages/commit/2de206d7959078f5289441e35788d83661a2c9f6))
* Refactor e2e to not use @aztec/types ([#3175](https://github.com/AztecProtocol/aztec-packages/issues/3175)) ([006a07a](https://github.com/AztecProtocol/aztec-packages/commit/006a07a1dd89e4e4e792d7a3e8332351f8b32351)), closes [#3157](https://github.com/AztecProtocol/aztec-packages/issues/3157)
* Refactor e2e to not use @aztec/circuit-types ([#3175](https://github.com/AztecProtocol/aztec-packages/issues/3175)) ([006a07a](https://github.com/AztecProtocol/aztec-packages/commit/006a07a1dd89e4e4e792d7a3e8332351f8b32351)), closes [#3157](https://github.com/AztecProtocol/aztec-packages/issues/3157)
* Remove extra println in noir protoco circuit ([#3219](https://github.com/AztecProtocol/aztec-packages/issues/3219)) ([3295fdd](https://github.com/AztecProtocol/aztec-packages/commit/3295fdd99d92b215f2cbc2707980a7055557cb2a))
* Split out relations, PG, Honk variants ([#3238](https://github.com/AztecProtocol/aztec-packages/issues/3238)) ([8abd39f](https://github.com/AztecProtocol/aztec-packages/commit/8abd39f5f8a434d96fe259df9c5940787bd705f1))
* Update Noir version ([#3082](https://github.com/AztecProtocol/aztec-packages/issues/3082)) ([59eb6af](https://github.com/AztecProtocol/aztec-packages/commit/59eb6af2da9801fb6927f4b98615b2c3f8f3ec28))
Expand Down
2 changes: 1 addition & 1 deletion boxes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@aztec/circuits.js": "portal:../yarn-project/circuits.js",
"@aztec/foundation": "portal:../yarn-project/foundation",
"@aztec/bb.js": "portal:../barretenberg/ts",
"@aztec/types": "portal:../yarn-project/types",
"@aztec/circuit-types": "portal:../yarn-project/circuit-types",
"@aztec/ethereum": "portal:../yarn-project/ethereum"
}
}
8 changes: 4 additions & 4 deletions boxes/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ __metadata:
"@aztec/circuits.js": "workspace:^"
"@aztec/ethereum": "workspace:^"
"@aztec/foundation": "workspace:^"
"@aztec/types": "workspace:^"
"@aztec/circuit-types": "workspace:^"
tslib: "npm:^2.4.0"
languageName: node
linkType: soft
Expand Down Expand Up @@ -68,7 +68,7 @@ __metadata:
"@aztec/circuits.js": "workspace:^"
"@aztec/ethereum": "workspace:^"
"@aztec/foundation": "workspace:^"
"@aztec/types": "workspace:^"
"@aztec/circuit-types": "workspace:^"
lodash.every: "npm:^4.6.0"
lodash.partition: "npm:^4.6.0"
tslib: "npm:^2.4.0"
Expand Down Expand Up @@ -281,9 +281,9 @@ __metadata:
languageName: node
linkType: soft

"@aztec/types@portal:../yarn-project/types::locator=%40aztec%2Fboxes%40workspace%3A.":
"@aztec/circuit-types@portal:../yarn-project/types::locator=%40aztec%2Fboxes%40workspace%3A.":
version: 0.0.0-use.local
resolution: "@aztec/types@portal:../yarn-project/types::locator=%40aztec%2Fboxes%40workspace%3A."
resolution: "@aztec/circuit-types@portal:../yarn-project/types::locator=%40aztec%2Fboxes%40workspace%3A."
dependencies:
"@aztec/circuits.js": "workspace:^"
"@aztec/ethereum": "workspace:^"
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/dev_docs/aztecjs/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Aztec.js is a library that provides APIs for managing accounts and interacting w

```typescript
import { getSchnorrAccount } from "@aztec/aztec.js";
import { GrumpkinPrivateKey } from "@aztec/types";
import { GrumpkinPrivateKey } from "@aztec/circuit-types";

const encryptionPrivateKey = GrumpkinPrivateKey.random();
const signingPrivateKey = GrumpkinPrivateKey.random();
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/dev_docs/tutorials/token_portal/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Inside the `packages` directory, run

```bash
mkdir src && cd src && yarn init -yp
yarn add @aztec/aztec.js @aztec/accounts @aztec/noir-contracts @aztec/types @aztec/foundation @aztec/l1-artifacts viem "@types/node@^20.8.2"
yarn add @aztec/aztec.js @aztec/accounts @aztec/noir-contracts @aztec/circuit-types @aztec/foundation @aztec/l1-artifacts viem "@types/node@^20.8.2"
yarn add -D jest @jest/globals ts-jest
```

Expand Down Expand Up @@ -159,7 +159,7 @@ Your `package.json` should look something like this:
"@aztec/aztec.js": "^0.8.7",
"@aztec/foundation": "^0.8.7",
"@aztec/noir-contracts": "^0.8.7",
"@aztec/types": "^0.8.7",
"@aztec/circuit-types": "^0.8.7",
"@types/node": "^20.8.2",
"ethers": "^5.7"
},
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ npm install @aztec/accounts

```typescript
import { getSchnorrAccount } from '@aztec/accounts/schnorr';
import { GrumpkinPrivateKey } from '@aztec/types';
import { GrumpkinPrivateKey } from '@aztec/circuit-types';

const encryptionPrivateKey = GrumpkinPrivateKey.random();
const signingPrivateKey = GrumpkinPrivateKey.random();
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@
},
"dependencies": {
"@aztec/aztec.js": "workspace:^",
"@aztec/circuit-types": "workspace:^",
"@aztec/circuits.js": "workspace:^",
"@aztec/ethereum": "workspace:^",
"@aztec/foundation": "workspace:^",
"@aztec/types": "workspace:^",
"tslib": "^2.4.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/defaults/account_contract.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AccountContract, AccountInterface, AuthWitnessProvider } from '@aztec/aztec.js/account';
import { ContractArtifact } from '@aztec/foundation/abi';
import { CompleteAddress, NodeInfo } from '@aztec/types';
import { CompleteAddress, NodeInfo } from '@aztec/circuit-types';

import { DefaultAccountInterface } from '../defaults/account_interface.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/defaults/account_entrypoint.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AuthWitnessProvider, EntrypointInterface } from '@aztec/aztec.js/account';
import { AztecAddress, Fr, FunctionData, TxContext } from '@aztec/circuits.js';
import { FunctionAbi, encodeArguments } from '@aztec/foundation/abi';
import { FunctionCall, PackedArguments, TxExecutionRequest } from '@aztec/types';
import { FunctionCall, PackedArguments, TxExecutionRequest } from '@aztec/circuit-types';

import { DEFAULT_CHAIN_ID, DEFAULT_VERSION } from './constants.js';
import { buildPayload, hashPayload } from './entrypoint_payload.js';
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/defaults/account_interface.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AccountInterface, AuthWitnessProvider, EntrypointInterface } from '@aztec/aztec.js/account';
import { CompleteAddress, Fr } from '@aztec/circuits.js';
import { AuthWitness, FunctionCall, NodeInfo, TxExecutionRequest } from '@aztec/types';
import { AuthWitness, FunctionCall, NodeInfo, TxExecutionRequest } from '@aztec/circuit-types';

import { DefaultAccountEntrypoint } from './account_entrypoint.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/defaults/entrypoint_payload.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Fr, GeneratorIndex } from '@aztec/circuits.js';
import { padArrayEnd } from '@aztec/foundation/collection';
import { pedersenHash } from '@aztec/foundation/crypto';
import { FunctionCall, PackedArguments, emptyFunctionCall } from '@aztec/types';
import { FunctionCall, PackedArguments, emptyFunctionCall } from '@aztec/circuit-types';

// These must match the values defined in yarn-project/aztec-nr/aztec/src/entrypoint.nr
const ACCOUNT_MAX_CALLS = 4;
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/ecdsa/account_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AuthWitnessProvider } from '@aztec/aztec.js/account';
import { Ecdsa } from '@aztec/circuits.js/barretenberg';
import { ContractArtifact } from '@aztec/foundation/abi';
import { Fr } from '@aztec/foundation/fields';
import { AuthWitness, CompleteAddress } from '@aztec/types';
import { AuthWitness, CompleteAddress } from '@aztec/circuit-types';

import { DefaultAccountContract } from '../defaults/account_contract.js';
import { EcdsaAccountContractArtifact } from './artifact.js';
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/ecdsa/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { AccountManager, Salt } from '@aztec/aztec.js/account';
import { AccountWallet, getWallet } from '@aztec/aztec.js/wallet';
import { AztecAddress } from '@aztec/circuits.js';
import { CompleteAddress, GrumpkinPrivateKey, PXE } from '@aztec/types';
import { CompleteAddress, GrumpkinPrivateKey, PXE } from '@aztec/circuit-types';

import { EcdsaAccountContract } from './account_contract.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/schnorr/account_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AuthWitnessProvider } from '@aztec/aztec.js/account';
import { Schnorr } from '@aztec/circuits.js/barretenberg';
import { ContractArtifact } from '@aztec/foundation/abi';
import { Fr } from '@aztec/foundation/fields';
import { AuthWitness, CompleteAddress, GrumpkinPrivateKey } from '@aztec/types';
import { AuthWitness, CompleteAddress, GrumpkinPrivateKey } from '@aztec/circuit-types';

import { DefaultAccountContract } from '../defaults/account_contract.js';
import { SchnorrAccountContractArtifact } from './artifact.js';
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/schnorr/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { AccountManager, Salt } from '@aztec/aztec.js/account';
import { AccountWallet, getWallet } from '@aztec/aztec.js/wallet';
import { AztecAddress } from '@aztec/circuits.js';
import { CompleteAddress, GrumpkinPrivateKey, PXE } from '@aztec/types';
import { CompleteAddress, GrumpkinPrivateKey, PXE } from '@aztec/circuit-types';

import { SchnorrAccountContract } from './account_contract.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/single_key/account_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { PartialAddress } from '@aztec/circuits.js';
import { Schnorr } from '@aztec/circuits.js/barretenberg';
import { ContractArtifact } from '@aztec/foundation/abi';
import { Fr } from '@aztec/foundation/fields';
import { AuthWitness, CompleteAddress, GrumpkinPrivateKey } from '@aztec/types';
import { AuthWitness, CompleteAddress, GrumpkinPrivateKey } from '@aztec/circuit-types';

import { DefaultAccountContract } from '../defaults/account_contract.js';
import { SchnorrSingleKeyAccountContractArtifact } from './artifact.js';
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/single_key/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { AccountManager, Salt } from '@aztec/aztec.js/account';
import { AccountWallet, getWallet } from '@aztec/aztec.js/wallet';
import { AztecAddress } from '@aztec/circuits.js';
import { CompleteAddress, GrumpkinPrivateKey, PXE } from '@aztec/types';
import { CompleteAddress, GrumpkinPrivateKey, PXE } from '@aztec/circuit-types';

import { SingleKeyAccountContract } from './account_contract.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/testing/configuration.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { generatePublicKey } from '@aztec/aztec.js';
import { AccountWalletWithPrivateKey } from '@aztec/aztec.js/wallet';
import { Fr, GrumpkinScalar } from '@aztec/foundation/fields';
import { PXE } from '@aztec/types';
import { PXE } from '@aztec/circuit-types';

import { getSchnorrAccount } from '../schnorr/index.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/src/testing/create_account.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AccountWalletWithPrivateKey } from '@aztec/aztec.js/wallet';
import { GrumpkinScalar } from '@aztec/circuits.js';
import { PXE } from '@aztec/types';
import { PXE } from '@aztec/circuit-types';

import { getSchnorrAccount } from '../schnorr/index.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/accounts/tsconfig.dest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"path": "../foundation/tsconfig.dest.json"
},
{
"path": "../types/tsconfig.dest.json"
"path": "../circuit-types/tsconfig.dest.json"
}
],
"exclude": ["src/**/*.test.ts"]
Expand Down
6 changes: 3 additions & 3 deletions yarn-project/accounts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
{
"path": "../aztec.js"
},
{
"path": "../circuit-types"
},
{
"path": "../circuits.js"
},
Expand All @@ -17,9 +20,6 @@
},
{
"path": "../foundation"
},
{
"path": "../types"
}
],
"include": ["src", "src/**/*.json"]
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
"rootDir": "./src"
},
"dependencies": {
"@aztec/circuit-types": "workspace:^",
"@aztec/circuits.js": "workspace:^",
"@aztec/foundation": "workspace:^",
"@aztec/types": "workspace:^",
"@noir-lang/acvm_js": "portal:../../noir/packages/acvm_js",
"levelup": "^5.1.1",
"memdown": "^6.1.1",
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/acvm/acvm.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { FunctionDebugMetadata, OpcodeLocation } from '@aztec/foundation/abi';
import { createDebugLogger } from '@aztec/foundation/log';
import { NoirCallStack, SourceCodeLocation } from '@aztec/types';
import { NoirCallStack, SourceCodeLocation } from '@aztec/circuit-types';

import {
ExecutionError,
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/acvm/oracle/oracle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { AztecAddress } from '@aztec/foundation/aztec-address';
import { padArrayEnd } from '@aztec/foundation/collection';
import { Fr, Point } from '@aztec/foundation/fields';
import { createDebugLogger } from '@aztec/foundation/log';
import { MerkleTreeId, UnencryptedL2Log } from '@aztec/types';
import { MerkleTreeId, UnencryptedL2Log } from '@aztec/circuit-types';

import { ACVMField } from '../acvm_types.js';
import { frToNumber, fromACVMField } from '../deserialize.js';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
PublicDataWitness,
PublicKey,
UnencryptedL2Log,
} from '@aztec/types';
} from '@aztec/circuit-types';

/**
* Information about a note needed during execution.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { FunctionAbi, FunctionArtifact, countArgumentsSize } from '@aztec/founda
import { AztecAddress } from '@aztec/foundation/aztec-address';
import { Fr, Point } from '@aztec/foundation/fields';
import { createDebugLogger } from '@aztec/foundation/log';
import { AuthWitness, FunctionL2Logs, L1NotePayload, Note, UnencryptedL2Log } from '@aztec/types';
import { AuthWitness, FunctionL2Logs, L1NotePayload, Note, UnencryptedL2Log } from '@aztec/circuit-types';

import {
NoteData,
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/client/db_oracle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FunctionArtifact, FunctionDebugMetadata, FunctionSelector } from '@azte
import { AztecAddress } from '@aztec/foundation/aztec-address';
import { EthAddress } from '@aztec/foundation/eth-address';
import { Fr } from '@aztec/foundation/fields';
import { L2Block, MerkleTreeId, NullifierMembershipWitness, PublicDataWitness } from '@aztec/types';
import { L2Block, MerkleTreeId, NullifierMembershipWitness, PublicDataWitness } from '@aztec/circuit-types';

import { NoteData } from '../acvm/index.js';
import { CommitmentsDB } from '../public/db.js';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PrivateCallStackItem } from '@aztec/circuits.js';
import { FunctionL2Logs } from '@aztec/types';
import { FunctionL2Logs } from '@aztec/circuit-types';

import { ExecutionResult, collectEncryptedLogs, collectUnencryptedLogs } from './execution_result.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/client/execution_result.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { PrivateCallStackItem, PublicCallRequest, ReadRequestMembershipWitness } from '@aztec/circuits.js';
import { DecodedReturn } from '@aztec/foundation/abi';
import { Fr } from '@aztec/foundation/fields';
import { FunctionL2Logs, Note } from '@aztec/types';
import { FunctionL2Logs, Note } from '@aztec/circuit-types';

import { ACVMField } from '../acvm/index.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/client/pick_notes.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Fr } from '@aztec/foundation/fields';
import { Note } from '@aztec/types';
import { Note } from '@aztec/circuit-types';

import { SortOrder, pickNotes } from './pick_notes.js';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/client/pick_notes.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Fr } from '@aztec/foundation/fields';
import { Note } from '@aztec/types';
import { Note } from '@aztec/circuit-types';

/**
* Configuration for selecting values.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import {
TestContractArtifact,
TokenContractArtifact,
} from '@aztec/noir-contracts';
import { Note, PackedArguments, TxExecutionRequest } from '@aztec/types';
import { Note, PackedArguments, TxExecutionRequest } from '@aztec/circuit-types';

import { jest } from '@jest/globals';
import { MockProxy, mock } from 'jest-mock-extended';
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/client/simulator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { AztecAddress } from '@aztec/foundation/aztec-address';
import { pedersenHash } from '@aztec/foundation/crypto';
import { Fr, GrumpkinScalar } from '@aztec/foundation/fields';
import { TokenContractArtifact } from '@aztec/noir-contracts/Token';
import { Note } from '@aztec/types';
import { Note } from '@aztec/circuit-types';

import { MockProxy, mock } from 'jest-mock-extended';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/client/simulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { AztecAddress } from '@aztec/foundation/aztec-address';
import { EthAddress } from '@aztec/foundation/eth-address';
import { Fr } from '@aztec/foundation/fields';
import { DebugLogger, createDebugLogger } from '@aztec/foundation/log';
import { AztecNode, FunctionCall, Note, TxExecutionRequest } from '@aztec/types';
import { AztecNode, FunctionCall, Note, TxExecutionRequest } from '@aztec/circuit-types';

import { WasmBlackBoxFunctionSolver, createBlackBoxSolver } from '@noir-lang/acvm_js';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FunctionSelector, encodeArguments } from '@aztec/foundation/abi';
import { AztecAddress } from '@aztec/foundation/aztec-address';
import { Fr, GrumpkinScalar } from '@aztec/foundation/fields';
import { StatefulTestContractArtifact } from '@aztec/noir-contracts/StatefulTest';
import { FunctionCall, Note } from '@aztec/types';
import { FunctionCall, Note } from '@aztec/circuit-types';

import { mock } from 'jest-mock-extended';

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/client/view_data_oracle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
MerkleTreeId,
NullifierMembershipWitness,
PublicDataWitness,
} from '@aztec/types';
} from '@aztec/circuit-types';

import { NoteData, TypedOracle } from '../acvm/index.js';
import { DBOracle } from './db_oracle.js';
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/common/errors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FailingFunction, NoirCallStack, SimulationError } from '@aztec/types';
import { FailingFunction, NoirCallStack, SimulationError } from '@aztec/circuit-types';

/**
* An error that occurred during the execution of a function.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Fr } from '@aztec/circuits.js';
import { PackedArguments } from '@aztec/types';
import { PackedArguments } from '@aztec/circuit-types';

/**
* A cache for packed arguments during transaction execution.
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/public/execution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
SideEffectLinkedToNoteHash,
} from '@aztec/circuits.js';
import { computePublicDataTreeLeafSlot, computePublicDataTreeValue } from '@aztec/circuits.js/abis';
import { FunctionL2Logs } from '@aztec/types';
import { FunctionL2Logs } from '@aztec/circuit-types';

/**
* The public function execution result.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AztecAddress } from '@aztec/foundation/aztec-address';
import { EthAddress } from '@aztec/foundation/eth-address';
import { Fr } from '@aztec/foundation/fields';
import { createDebugLogger } from '@aztec/foundation/log';
import { FunctionL2Logs, UnencryptedL2Log } from '@aztec/types';
import { FunctionL2Logs, UnencryptedL2Log } from '@aztec/circuit-types';

import {
TypedOracle,
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/test/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AztecAddress, EthAddress, Fr } from '@aztec/circuits.js';
import { computeSecretMessageHash } from '@aztec/circuits.js/abis';
import { ContractArtifact, FunctionSelector, getFunctionDebugMetadata } from '@aztec/foundation/abi';
import { sha256 } from '@aztec/foundation/crypto';
import { L1Actor, L1ToL2Message, L2Actor } from '@aztec/types';
import { L1Actor, L1ToL2Message, L2Actor } from '@aztec/circuit-types';

import { FunctionArtifactWithDebugMetadata } from '../index.js';

Expand Down
Loading