Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Etherscan proxy test #106

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/etherscan_proxy_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Curl URL

on:
workflow_dispatch:
push:
branches:
- etherscan-proxy-test

jobs:
curl-job:
runs-on: public-ledgerhq-shared-small

steps:
- name: Get ip - ifconfig
run: ifconfig
- name: Get ip
run: ip a
- name: Generate some traffic to proxy
run: |
for i in {1..100}; do
curl -L -vvv "https://proxyetherscan.api.live.ledger.com/api?module=contract&action=getabi&address=0x1111111254eeb25477b68fb85ed929f73a960582"
done
jnicoulaud-ledger marked this conversation as resolved.
Show resolved Hide resolved