From 3ffcef0ddce055d41b0f57f271958bbb28d0f56e Mon Sep 17 00:00:00 2001 From: Adam Wierzbicki Date: Mon, 1 Feb 2021 12:57:32 +0100 Subject: [PATCH] ZkSync driver: updated mainnet fund message Signed-off-by: Adam Wierzbicki --- core/payment-driver/zksync/src/driver.rs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/core/payment-driver/zksync/src/driver.rs b/core/payment-driver/zksync/src/driver.rs index 063ccca332..9cb840b0e6 100644 --- a/core/payment-driver/zksync/src/driver.rs +++ b/core/payment-driver/zksync/src/driver.rs @@ -249,9 +249,14 @@ impl PaymentDriver for ZksyncDriver { )) } DbNetwork::Mainnet => Ok(format!( - "Your mainnet zksync address is {}. \ - Go to https://chat.golem.network and channel #funding \ - Paste your address and we will fund it after some short verification.", + r#"Your mainnet zkSync address is {}. + +To fund your wallet and be able to pay for your activities on Golem head to +the https://chat.golem.network, join the #funding channel and type /terms +and follow instructions to request GLMs. + +Mind that to be eligible you have to run your app at least once on testnet - +- we will verify if that is true so we can avoid people requesting "free GLMs"."#, address )), }