You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Congratulations, you have now successfully set up an EVM <> Solana OApp.
301
301
302
+
### Viewing Sent Strings
303
+
304
+
After sending cross-chain messages you can inspect the stored string on either side directly from the terminal:
305
+
306
+
- Solana store account:
307
+
308
+
```bash
309
+
npx hardhat lz:oapp:solana:debug --eid 40168 --action store
310
+
```
311
+
312
+
Use the Solana endpoint ID that matches your environment (e.g., `40168` for Devnet, `30168` for Mainnet) and optionally pass `--store <STORE_PUBKEY>` if you need to override the derived PDA.
Switch `--network` to the EVM chain you deployed to and supply a different `--contract-name` if your deployment artifact uses another name. The task performs a read-only call to the `data()` getter and prints the latest received message.
321
+
302
322
### Running tests
303
323
304
324
The `test` command will execute the hardhat and forge tests:
0 commit comments