@aztec/ethereum 3.0.0-nightly.20250913 → 3.0.0-nightly.20250915

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -100,7 +100,7 @@ export const deploySharedContracts = async (l1Client, deployer, args, logger)=>{
100
100
  }
101
101
  const coinIssuerAddress = await deployer.deploy(CoinIssuerArtifact, [
102
102
  feeAssetAddress.toString(),
103
- 1_000_000n * 10n ** 18n,
103
+ 25_000_000_000n * 10n ** 18n / (60n * 60n * 24n * 365n),
104
104
  l1Client.account.address
105
105
  ]);
106
106
  logger.verbose(`Deployed CoinIssuer at ${coinIssuerAddress}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/ethereum",
3
- "version": "3.0.0-nightly.20250913",
3
+ "version": "3.0.0-nightly.20250915",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -31,10 +31,10 @@
31
31
  "../package.common.json"
32
32
  ],
33
33
  "dependencies": {
34
- "@aztec/blob-lib": "3.0.0-nightly.20250913",
35
- "@aztec/constants": "3.0.0-nightly.20250913",
36
- "@aztec/foundation": "3.0.0-nightly.20250913",
37
- "@aztec/l1-artifacts": "3.0.0-nightly.20250913",
34
+ "@aztec/blob-lib": "3.0.0-nightly.20250915",
35
+ "@aztec/constants": "3.0.0-nightly.20250915",
36
+ "@aztec/foundation": "3.0.0-nightly.20250915",
37
+ "@aztec/l1-artifacts": "3.0.0-nightly.20250915",
38
38
  "@viem/anvil": "^0.0.10",
39
39
  "dotenv": "^16.0.3",
40
40
  "lodash.chunk": "^4.2.0",
@@ -261,7 +261,7 @@ export const deploySharedContracts = async (
261
261
 
262
262
  const coinIssuerAddress = await deployer.deploy(CoinIssuerArtifact, [
263
263
  feeAssetAddress.toString(),
264
- 1_000_000n * 10n ** 18n, // @todo #8084
264
+ (25_000_000_000n * 10n ** 18n) / (60n * 60n * 24n * 365n),
265
265
  l1Client.account.address,
266
266
  ]);
267
267
  logger.verbose(`Deployed CoinIssuer at ${coinIssuerAddress}`);