We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72aa94b commit e3ea539Copy full SHA for e3ea539
pool_creation.sh
@@ -3,6 +3,7 @@
3
set -e
4
5
# Variables
6
+MASTER_SEED="0x"
7
USER="ubuntu"
8
PASSWORD_FILE="/home/$USER/password.txt"
9
SECRET_DIR="/home/$USER/.secrets"
@@ -228,7 +229,7 @@ fund_account() {
228
229
account=$(cat "$SECRET_DIR/account.txt")
230
curl -X POST https://api.node3.functionyard.fula.network/account/fund \
231
-H "Content-Type: application/json" \
- -d "{\"seed\": \"$secret_seed\", \"amount\": 1000000000000000000, \"to\": \"$account\"}"
232
+ -d "{\"seed\": \"$MASTER_SEED\", \"amount\": 1000000000000000000, \"to\": \"$account\"}"
233
}
234
235
# Function to create a pool
0 commit comments