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

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@
"#test-utils/address.js": "./test-utils/address.js"
},
"scripts": {
"compact": "compact-compiler",
"compact": "compact-compiler --exclude '*/archive/*'",
"compact:access": "compact-compiler --dir access",
"compact:archive": "compact-compiler --dir archive",
"compact:security": "compact-compiler --dir security",
"compact:token": "compact-compiler --dir token",
"compact:utils": "compact-compiler --dir utils",
"build": "compact-builder",
"test": "compact-compiler --skip-zk && vitest run",
"build": "compact-builder --out dist --clean-dist --exclude '*/archive/*' --exclude 'Mock*' --exclude '*.mock.compact' --copy package.json --copy ../README.md && find dist -type d -empty -delete",
"test": "SKIP_ZK=true yarn run compact && vitest run",
"types": "tsc -p tsconfig.json --noEmit",
"clean": "git clean -fXd"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@openzeppelin-compact/compact": "workspace:^"
"@openzeppelin/compact-cli": "^0.0.1"
},
"devDependencies": {
"@openzeppelin-compact/contracts-simulator": "workspace:^",
"@openzeppelin/compact-simulator": "^0.0.1",
"@tsconfig/node24": "^24.0.4",
"@types/node": "25.7.0",
"ts-node": "^10.9.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
type ContractAddress,
type Either,
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/access/test/simulators/OwnableSimulator.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
type ContractAddress,
type Either,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { MerkleTreePath } from '@midnight-ntwrk/compact-runtime';
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
ledger,
Contract as MockShieldedAccessControl,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
type ContractAddress,
type Either,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
ledger,
Contract as MockInitializable,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
ledger,
Contract as MockPausable,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
type ContractAddress,
type Either,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
type ContractAddress,
type Either,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
type ContractAddress,
type Either,
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/utils/test/simulators/UtilsSimulator.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
type BaseSimulatorOptions,
createSimulator,
} from '@openzeppelin-compact/contracts-simulator';
} from '@openzeppelin/compact-simulator';
import {
type ContractAddress,
type Either,
Expand Down
200 changes: 0 additions & 200 deletions packages/compact/README.md

This file was deleted.

41 changes: 0 additions & 41 deletions packages/compact/package.json

This file was deleted.

Loading
Loading