Skip to content

Commit a3c1b0c

Browse files
committed
chore: mint amount fixes
1 parent 6447346 commit a3c1b0c

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

aztec-up/test/bridge_and_claim.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ aztec-wallet \
4242
--register-only
4343

4444
aztec-wallet \
45-
bridge-fee-juice 1000000000000000000 accounts:main \
45+
bridge-fee-juice 1000000000000000000000 accounts:main \
4646
--mint \
4747
--no-wait
4848

docs/docs/developers/guides/js_apps/how_to_pay_fees.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ import { L1FeeJuicePortalManager } from "@aztec/aztec.js";
100100
**CLI:**
101101

102102
```bash
103-
aztec-wallet bridge-fee-juice 1000000000000000000 myAccount --mint --no-wait
103+
aztec-wallet bridge-fee-juice 1000000000000000000000 myAccount --mint --no-wait
104104
```
105105

106106
### Testnet
@@ -114,7 +114,7 @@ cast call $FEE_ASSET_HANDLER_CONTRACT "mint(address)" $MY_L1_ADDRESS --rpc-url <
114114
Then bridge with CLI:
115115

116116
```bash
117-
aztec-wallet bridge-fee-juice 1000000000000000000 myAccount --no-wait \
117+
aztec-wallet bridge-fee-juice 1000000000000000000000 myAccount --no-wait \
118118
--l1-rpc-urls https://rpc.sepolia.ethpandaops.io \
119119
--l1-chain-id 11155111 \
120120
--l1-private-key <YOUR_L1_PRIVATE_KEY>

docs/versioned_docs/version-v1.2.0/developers/reference/environment_reference/cli_wallet_reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ First register an account, mint the fee asset on L1 and bridge it to fee juice:
143143

144144
```bash title="bridge-fee-juice" showLineNumbers
145145
aztec-wallet create-account -a main --register-only
146-
aztec-wallet bridge-fee-juice 1000000000000000000 main --mint --no-wait
146+
aztec-wallet bridge-fee-juice 1000000000000000000000 main --mint --no-wait
147147
```
148148

149149
> <sup><sub><a href="https://github.com/AztecProtocol/aztec-packages/blob/v1.2.0/yarn-project/cli-wallet/test/flows/create_account_pay_native.sh#L8-L11" target="_blank" rel="noopener noreferrer">Source code: yarn-project/cli-wallet/test/flows/create_account_pay_native.sh#L8-L11</a></sub></sup>

docs/versioned_docs/version-v1.2.0/developers/tutorials/codealong/first_fees.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,13 +307,13 @@ aztec-wallet create-account -a accBFJ --register-only
307307
If using the Sandbox, free-minting is allowed from it's anvil L1 to be bridged and claimed on its Aztec node:
308308

309309
```bash
310-
aztec-wallet bridge-fee-juice 1000000000000000000 accBFJ --mint --no-wait
310+
aztec-wallet bridge-fee-juice 1000000000000000000000 accBFJ --mint --no-wait
311311
```
312312

313313
If using Aztec testnet, you'll first need an L1 account with sepolia, and additional params for the bridge-fee-juice command:
314314

315315
```bash
316-
aztec-wallet bridge-fee-juice 1000000000000000000 accBFJ --mint --no-wait \
316+
aztec-wallet bridge-fee-juice 1000000000000000000000 accBFJ --mint --no-wait \
317317
--l1-rpc-urls <See https://chainlist.org/chain/11155111> \ # eg https://rpc.sepolia.ethpandaops.io
318318
--l1-chain-id 11155111 \
319319
--l1-private-key <L1 private key of account holding sepolia>

spartan/devnet-smoke-tests/create_new_accounts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if [ "$total_account_count" -lt "$max_accounts" ]; then
3535
-u $FAUCET_URL
3636

3737
aztec-wallet \
38-
bridge-fee-juice 1000000000000000000 accounts:main \
38+
bridge-fee-juice 1000000000000000000000 accounts:main \
3939
--mint \
4040
--l1-rpc-urls $L1_URL \
4141
--l1-chain-id 1337 \

yarn-project/aztec-faucet/terraform/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ resource "aws_ecs_task_definition" "aztec-faucet" {
148148
},
149149
{
150150
name = "EXTRA_ASSET_AMOUNT",
151-
value = "1000000000000000000"
151+
value = "1000000000000000000000"
152152
}
153153
]
154154
logConfiguration = {

yarn-project/cli-wallet/test/flows/create_account_pay_native.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ test_title "Create an account and deploy using native fee payment with bridging"
77

88
# docs:start:bridge-fee-juice
99
aztec-wallet create-account -a main --register-only
10-
aztec-wallet bridge-fee-juice 1000000000000000000 main --mint --no-wait
10+
aztec-wallet bridge-fee-juice 1000000000000000000000 main --mint --no-wait
1111
# docs:end:bridge-fee-juice
1212

1313

yarn-project/cli-wallet/test/flows/shared/create_funded_account.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ALIAS=$1
33
section "Creating a funded account (alias: $ALIAS)"
44

55
aztec-wallet create-account -a $ALIAS --register-only
6-
aztec-wallet bridge-fee-juice 1000000000000000000 $ALIAS --mint --no-wait
6+
aztec-wallet bridge-fee-juice 1000000000000000000000 $ALIAS --mint --no-wait
77

88
# The following produces two blocks, allowing the claim to be used in the next block.
99
source $flows/shared/deploy_token.sh tmp-token-$ALIAS $ALIAS

yarn-project/cli-wallet/test/flows/shared/deploy_main_account_and_token.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ACCOUNT_ALIAS=main
44
section "Deploying token contract (alias: $TOKEN_ALIAS) and creating a funded account (alias: $ACCOUNT_ALIAS)"
55

66
aztec-wallet create-account -a $ACCOUNT_ALIAS --register-only
7-
aztec-wallet bridge-fee-juice 1000000000000000000 $ACCOUNT_ALIAS --mint --no-wait
7+
aztec-wallet bridge-fee-juice 1000000000000000000000 $ACCOUNT_ALIAS --mint --no-wait
88

99
# Deploy token contract and set the main account as a minter.
1010
# The following produces two blocks, allowing the claim to be used in the next block.

yarn-project/cli-wallet/test/flows/shared/deploy_sponsored_fpc_and_token.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ section "Deploying token contract (alias: $TOKEN_ALIAS) and creating a sponsored
66
aztec-wallet import-test-accounts
77
aztec-wallet deploy sponsored_fpc_contract@SponsoredFPC -f test0 -a $FPC_ALIAS --no-init
88

9-
CLAIM=$(aztec-wallet bridge-fee-juice 1000000000000000000 contracts:$FPC_ALIAS --mint --no-wait --json)
9+
CLAIM=$(aztec-wallet bridge-fee-juice 1000000000000000000000 contracts:$FPC_ALIAS --mint --no-wait --json)
1010

1111
retrieve () {
1212
echo "$CLAIM" | grep "\"$1\"" | awk -F ': ' '{print $2}' | tr -d '",'

0 commit comments

Comments
 (0)