From 1f160e0a8de106c2506a776850d926761859817b Mon Sep 17 00:00:00 2001 From: Ian Pun Date: Thu, 28 Mar 2024 14:21:52 -0700 Subject: [PATCH] updtae staging guide to include validationg --- docs/cadence_migration_guide/staging-guide.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/cadence_migration_guide/staging-guide.mdx b/docs/cadence_migration_guide/staging-guide.mdx index ab58446..2a442fb 100644 --- a/docs/cadence_migration_guide/staging-guide.mdx +++ b/docs/cadence_migration_guide/staging-guide.mdx @@ -44,3 +44,13 @@ flow-c1 migrate is-staged HelloWorld --network=testnet ``` A response of true indicates that your contract has been approved by the Flow Blockchain Testnet network and is ready for the migration process. + +### Validate your contract + +To validate your contract, execute the following command: + +```bash +flow migrate is-validated HelloWorld --network=testnet +``` + +A response of true indicates that your contract has been successfully staged and validated. Validation passes if the contract was successfully migrated over in the last emulated migration.