Skip to content

Commit

Permalink
feat: 0.67.0 (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipHarald authored Dec 13, 2024
1 parent 2b1bd51 commit b8c1565
Show file tree
Hide file tree
Showing 19 changed files with 561 additions and 512 deletions.
2 changes: 1 addition & 1 deletion k8s/local/aztec-sandbox-node/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
app: aztec-sandbox-node
spec:
containers:
- image: aztecprotocol/aztec:0.66.0
- image: aztecprotocol/aztec:0.67.0
name: aztec-sandbox-node
resources:
limits:
Expand Down
15 changes: 15 additions & 0 deletions k8s/local/skaffold.only_aztec-listener.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: skaffold/v4beta6
kind: Config
metadata:
name: chicmoz
requires:
- path: ./chicmoz-base-image.yaml
- path: ./aztec-listener/image.yaml
deploy:
kubectl:
flags:
apply: ["--force"]
manifests:
rawYaml:
- k8s/local/aztec-listener/deployment.yaml
#- k8s/local/aztec-listener/remote_aztec_deployment.yaml
14 changes: 14 additions & 0 deletions k8s/local/skaffold.only_event-cannon.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: skaffold/v4beta6
kind: Config
metadata:
name: chicmoz
requires:
- path: ./chicmoz-base-image.yaml
- path: ./event-cannon/image.yaml
deploy:
kubectl:
flags:
apply: ["--force"]
manifests:
rawYaml:
- k8s/local/event-cannon/deployment.yaml
16 changes: 16 additions & 0 deletions k8s/local/skaffold.only_explorer-api.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: skaffold/v4beta6
kind: Config
metadata:
name: chicmoz
requires:
- path: ./chicmoz-base-image.yaml
- path: ./explorer-api/image.yaml
deploy:
kubectl:
flags:
apply: ["--force"]
manifests:
rawYaml:
- k8s/local/explorer-api/ingress.yaml
- k8s/local/explorer-api/deployment.yaml
- k8s/local/explorer-api/service.yaml
2 changes: 1 addition & 1 deletion packages/backend-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint-base": "yarn run g:lint"
},
"dependencies": {
"@aztec/aztec.js": "0.66.0",
"@aztec/aztec.js": "0.67.0",
"@chicmoz-pkg/types": "workspace:^"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/message-registry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint-base": "yarn run g:lint"
},
"dependencies": {
"@aztec/aztec.js": "0.66.0",
"@aztec/aztec.js": "0.67.0",
"@chicmoz-pkg/types": "workspace:^"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions services/aztec-listener/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"main": "index.js",
"license": "Apache-2.0",
"dependencies": {
"@aztec/aztec.js": "0.66.0",
"@aztec/circuits.js": "0.66.0",
"@aztec/aztec.js": "0.67.0",
"@aztec/circuits.js": "0.67.0",
"@chicmoz-pkg/logger-server": "workspace:^",
"@chicmoz-pkg/message-bus": "workspace:^",
"@chicmoz-pkg/message-registry": "workspace:^",
Expand Down
4 changes: 2 additions & 2 deletions services/ethereum-listener/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
],
"license": "Apache-2.0",
"dependencies": {
"@aztec/aztec.js": "0.66.0",
"@aztec/l1-artifacts": "0.66.0",
"@aztec/aztec.js": "0.67.0",
"@aztec/l1-artifacts": "0.67.0",
"@chicmoz-pkg/logger-server": "workspace:^",
"@chicmoz-pkg/message-bus": "workspace:^",
"@chicmoz-pkg/message-registry": "workspace:^",
Expand Down
8 changes: 4 additions & 4 deletions services/event-cannon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
],
"license": "Apache-2.0",
"dependencies": {
"@aztec/accounts": "0.66.0",
"@aztec/aztec.js": "0.66.0",
"@aztec/l1-artifacts": "0.66.0",
"@aztec/noir-contracts.js": "0.66.0",
"@aztec/accounts": "0.67.0",
"@aztec/aztec.js": "0.67.0",
"@aztec/l1-artifacts": "0.67.0",
"@aztec/noir-contracts.js": "0.67.0",
"@chicmoz-pkg/logger-server": "workspace:^"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
EthAddress,
Fr,
L1TokenPortalManager,
createDebugLogger,
createLogger,
deployL1Contract,
retryUntil,
waitForPXE,
Expand Down Expand Up @@ -156,7 +156,7 @@ export const run = async () => {
l1ContractAddresses.outboxAddress,
publicClient,
walletClient,
createDebugLogger("TEST")
createLogger("L1TokenPortalManager-private")
);
const l1TokenManager = l1TokenPortalManager.getTokenManager();
const ownerAddress = wallet.getAddress();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
EthAddress,
Fr,
L1TokenPortalManager,
createDebugLogger,
createLogger,
deployL1Contract,
retryUntil,
waitForPXE,
Expand Down Expand Up @@ -159,7 +159,7 @@ export const run = async () => {
l1ContractAddresses.outboxAddress,
publicClient,
walletClient,
createDebugLogger("TEST")
createLogger("L1TokenPortalManager-public")
);
const l1TokenManager = l1TokenPortalManager.getTokenManager();
const ownerAddress = wallet.getAddress();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ authors = [ "" ]
compiler_version = ">=0.25.0"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "aztec-packages-v0.66.0", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "aztec-packages-v0.67.0", directory = "noir-projects/aztec-nr/aztec" }

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions services/explorer-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"license": "Apache-2.0",
"dependencies": {
"@anatine/zod-openapi": "2.2.6",
"@aztec/aztec.js": "0.66.0",
"@aztec/circuits.js": "0.66.0",
"@aztec/protocol-contracts": "0.66.0",
"@aztec/aztec.js": "0.67.0",
"@aztec/circuits.js": "0.67.0",
"@aztec/protocol-contracts": "0.67.0",
"@chicmoz-pkg/backend-utils": "workspace:^",
"@chicmoz-pkg/error-middleware": "workspace:^",
"@chicmoz-pkg/logger-server": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion services/explorer-api/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const DEFAULT_VERIFIED_CONTRACT_ADDRESSES_DEV: ChicmozL2VerifiedContractA
"0x0e5fe9a23c854f14262bb3b3e88dab8e33412d6db17baa199506f865ed746a0c",
name: "Deployed by Sandbox",
details:
"This contract was deployed by the sandbox environment. Hardcoded address is at least valid for 0.66.0",
"This contract was deployed by the sandbox environment. Hardcoded address is at least valid for 0.67.0",
contact: "email: [email protected], discord: test#1234, telegram: @test",
uiUrl: "https://aztec.network",
repoUrl: "https://github.com/AztecProtocol/aztec-packages",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { KeyValueDisplay } from "~/components/info-display/key-value-display";
import { useContractInstance } from "~/hooks/";
import { getContractData, getVerifiedContractData } from "./util";
import { routes } from "~/routes/__root";
import { CustomTooltip } from "~/components/custom-tooltip";

export const ContractInstanceDetails: FC = () => {
const { address } = useParams({
Expand Down Expand Up @@ -48,10 +49,9 @@ export const ContractInstanceDetails: FC = () => {
Verified contract data
<div className="relative group">
<Link to={routes.verifiedContracts.route}>
<CheckCircledIcon className="size-10 stroke-lime-700" />
<div className="absolute hidden group-hover:block bg-gray-800 text-white text-sm rounded py-1 px-2 bottom-full mb-2 left-1/2 transform -translate-x-1/2">
Read more about verified contracts here.
</div>
<CustomTooltip content="Read more about verified contracts here">
<CheckCircledIcon className="size-10 stroke-lime-700" />
</CustomTooltip>
</Link>
</div>
</h2>
Expand Down
2 changes: 1 addition & 1 deletion services/explorer-ui/src/pages/dev.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const DevPage: FC = () => {
<div className="flex flex-col items-center">
<h1>Dev Page</h1>
<div className="bg-white w-full rounded-lg shadow-md p-4 md:w-1/2">
<p>Aztec.js version : 0.66.0</p>
<p>Aztec.js version : 0.67.0</p>
</div>
</div>
);
Expand Down
Loading

0 comments on commit b8c1565

Please sign in to comment.