Skip to content

Commit 3ad01d2

Browse files
committed
Added prettier-ignore to the Aside tag to fix the eslint issue
1 parent 4d8490c commit 3ad01d2

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/content/ccip/tutorials/evm/offchain/transfer-tokens-from-eoa.mdx

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,18 +76,19 @@ In this tutorial, you will use Chainlink CCIP to transfer tokens directly from y
7676

7777
- `USER_KEY`: Find the private key for your testnet wallet. If you use MetaMask, follow the instructions to [Export a Private Key](https://support.metamask.io/managing-my-wallet/secret-recovery-phrase-and-private-keys/how-to-export-an-accounts-private-key/).**Note**: The offchain script uses your private key to sign any transactions you make such as transferring tokens.
7878

79-
<Aside type="note" title="Note">
80-
Commands of the [`ccip-tools`](https://github.com/smartcontractkit/ccip-tools-ts) which need to send transactions try to get its private key from a `USER_KEY` environment
81-
variable.
79+
{/* prettier-ignore */}
80+
<Aside type="note" title="Note">
81+
Commands of the [`ccip-tools`](https://github.com/smartcontractkit/ccip-tools-ts) which need to send transactions try to get its private key from a `USER_KEY` environment
82+
variable.
8283

83-
An encrypted wallet json can also be passed to `--wallet` option. It'll be decrypted with password
84-
from `USER_KEY_PASSWORD` environment variable, or interactively prompted if not set.
84+
An encrypted wallet json can also be passed to `--wallet` option. It'll be decrypted with password
85+
from `USER_KEY_PASSWORD` environment variable, or interactively prompted if not set.
8586

86-
Additionally, `--wallet ledger` (or `--wallet "ledger:<derivationPath>"`) can be used to connect to
87-
a Ledger device, using the `@ledgerhq/hw-app-eth` library. The derivation path can be specified, or
88-
defaults to `m/44'/60'/0'/0/0`.
87+
Additionally, `--wallet ledger` (or `--wallet "ledger:<derivationPath>"`) can be used to connect to
88+
a Ledger device, using the `@ledgerhq/hw-app-eth` library. The derivation path can be specified, or
89+
defaults to `m/44'/60'/0'/0/0`.
8990

90-
</Aside>
91+
</Aside>
9192

9293
```shell
9394
npx env-enc set

0 commit comments

Comments
 (0)