@@ -187,8 +187,8 @@ jobs:
187187 - name : Run tests (docker_03_problems)
188188 run : cargo test --test docker_03_problems --profile=release-fast -- --test-threads=10
189189
190- test_faucet_holesky :
191- name : Test Holesky faucet
190+ test_faucet_hoodi :
191+ name : Test Hoodi faucet
192192 timeout-minutes : 20
193193
194194 runs-on : ubuntu-latest
@@ -210,43 +210,43 @@ jobs:
210210
211211 - name : Check if balance is 0
212212 run : |
213- [ $(cargo run -- balance -c holesky | jq -r '.[] | .gasDecimal') == "0" ]
214- [ $(cargo run -- balance -c holesky | jq -r '.[] | .tokenDecimal') == "0" ]
213+ [ $(cargo run -- balance -c hoodi | jq -r '.[] | .gasDecimal') == "0" ]
214+ [ $(cargo run -- balance -c hoodi | jq -r '.[] | .tokenDecimal') == "0" ]
215215
216216 - name : Get ETH from faucet
217- run : cargo run -- get-dev-eth -c holesky
217+ run : cargo run -- get-dev-eth -c hoodi
218218
219219 - name : Check ETH balance after getting funds from faucet (should be 0.01)
220220 run : |
221221 sleep 60 # give time for the blockchain to propagate info about the transaction
222- [ $(cargo run -- balance -c holesky | jq -r '.[] | .gasDecimal') == "0.01" ]
222+ [ $(cargo run -- balance -c hoodi | jq -r '.[] | .gasDecimal') == "0.01" ]
223223
224224 - name : Mint tokens
225225 run : |
226- cargo run -- mint-test-tokens -c holesky
226+ cargo run -- mint-test-tokens -c hoodi
227227 cargo run -- run
228228
229229 - name : Check token balance
230230 run : |
231- [ $(cargo run -- balance -c holesky | jq -r '.[] | .tokenDecimal') == "1000" ]
231+ [ $(cargo run -- balance -c hoodi | jq -r '.[] | .tokenDecimal') == "1000" ]
232232
233233 - name : Transfer 166.6 GLM tokens
234234 run : |
235- cargo run -- transfer -c holesky --recipient 0x5b984629E2Cc7570cBa7dD745b83c3dD23Ba6d0f --token glm --amount 166.6
235+ cargo run -- transfer -c hoodi --recipient 0x5b984629E2Cc7570cBa7dD745b83c3dD23Ba6d0f --token glm --amount 166.6
236236 cargo run -- run
237237
238238 - name : Transfer all GLM tokens
239239 run : |
240- cargo run -- transfer -c holesky --recipient 0x5b984629E2Cc7570cBa7dD745b83c3dD23Ba6d0f --token glm --all
240+ cargo run -- transfer -c hoodi --recipient 0x5b984629E2Cc7570cBa7dD745b83c3dD23Ba6d0f --token glm --all
241241 cargo run -- run
242242
243243 - name : Check token balance zero
244244 run : |
245- [ $(cargo run -- balance -c holesky | jq -r '.[] | .tokenDecimal') == "0" ]
245+ [ $(cargo run -- balance -c hoodi | jq -r '.[] | .tokenDecimal') == "0" ]
246246
247247 - name : Transfer all left ETH tokens
248248 run : |
249- cargo run -- transfer -c holesky --recipient 0x5b984629E2Cc7570cBa7dD745b83c3dD23Ba6d0f --token eth --all
249+ cargo run -- transfer -c hoodi --recipient 0x5b984629E2Cc7570cBa7dD745b83c3dD23Ba6d0f --token eth --all
250250 cargo run -- run
251251
252252 payment_tests_custom :
0 commit comments