From b5fb15ea528bb18cb61bce7be48570b181dc0b40 Mon Sep 17 00:00:00 2001 From: Rohit Ramesh <70317502+rohit-710@users.noreply.github.com> Date: Wed, 10 Jul 2024 14:41:26 +0200 Subject: [PATCH] Update 10_auction.md to work with latest changes The testnet identifier is outdated and it also requires a URL. Signed-off-by: Rohit Ramesh <70317502+rohit-710@users.noreply.github.com> --- documentation/leo/10_auction.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/documentation/leo/10_auction.md b/documentation/leo/10_auction.md index f03405c21..906330bd1 100644 --- a/documentation/leo/10_auction.md +++ b/documentation/leo/10_auction.md @@ -81,8 +81,9 @@ Swap in the private key and address of the first bidder to `.env`. ```bash echo " -NETWORK=testnet3 +NETWORK=testnet PRIVATE_KEY=APrivateKey1zkpG9Af9z5Ha4ejVyMCqVFXRKknSm8L1ELEwcc4htk9YhVK +ENDPOINT=https://localhost:3030 " > .env ``` @@ -100,8 +101,9 @@ Swap in the private key of the second bidder to `.env`. ```bash echo " -NETWORK=testnet3 +NETWORK=testnet PRIVATE_KEY=APrivateKey1zkpAFshdsj2EqQzXh5zHceDapFWVCwR6wMCJFfkLYRKupug +ENDPOINT=https://localhost:3030 " > .env ``` @@ -119,8 +121,9 @@ Swap in the private key of the auctioneer to `.env`. ```bash echo " -NETWORK=testnet3 +NETWORK=testnet PRIVATE_KEY=APrivateKey1zkp5wvamYgK3WCAdpBQxZqQX8XnuN2u11Y6QprZTriVwZVc +ENDPOINT=https://localhost:3030 " > .env ```