Skip to content

Commit

Permalink
fix(general): fix missing examples from list, move connect_builtin
Browse files Browse the repository at this point in the history
…to `builtin` (#72)

* fix missing examples from list, move connect_builtin to builtin

* authorization -> authentication
  • Loading branch information
zerosnacks authored May 3, 2024
1 parent be75c43 commit 18184f3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
-e 'trezor_signer' \
-e 'ledger_signer' \
-e 'yubi_signer' \
-e 'builtin' \
-e 'ipc' \
-e 'ws' \
-e 'ws_auth' \
-e 'connect_builtin' \
-e 'subscribe_logs' \
| xargs -n1 echo
)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
-e 'trezor_signer' \
-e 'ledger_signer' \
-e 'yubi_signer' \
-e 'builtin' \
-e 'ipc' \
-e 'ws' \
-e 'ws_auth' \
-e 'connect_builtin' \
-e 'subscribe_logs' \
| xargs -n1 echo
)"
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ cargo run --example 2>&1 \
-e 'trezor_signer' \
-e 'ledger_signer' \
-e 'yubi_signer' \
-e 'builtin' \
-e 'ipc' \
-e 'ws' \
-e 'ws_auth' \
-e 'connect_builtin' \
-e 'subscribe_logs' \
| xargs -I {} sh -c 'if cargo run --example {} --quiet 1>/dev/null; then \
echo "Successfully ran: {}"; \
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,15 @@ This repository contains the following examples:
- [x] [Event multiplexer](./examples/subscriptions/examples/event_multiplexer.rs)
- [x] Providers
- [x] [Builder](./examples/providers/examples/builder.rs)
- [x] [Builtin](./examples/providers/examples/builtin.rs)
- [x] [HTTP](./examples/providers/examples/http.rs)
- [x] [IPC](./examples/providers/examples/ipc.rs)
- [x] [WS](./examples/providers/examples/ws.rs)
- [x] [WS with authentication](./examples/providers/examples/ws_with_auth.rs)
- [x] Queries
- [x] [Contract storage](./examples/queries/examples/query_contract_storage.rs)
- [x] [Contract deployed bytecode](./examples/queries/examples/query_deployed_bytecode.rs)
- [x] [Logs](./examples/queries/examples/query_logs.rs)
- [x] [Query contract storage](./examples/queries/examples/query_contract_storage.rs)
- [x] [Query contract deployed bytecode](./examples/queries/examples/query_deployed_bytecode.rs)
- [x] [Query logs](./examples/queries/examples/query_logs.rs)
- [x] Transactions
- [x] [Decode input](./examples/transactions/examples/decode_input.rs)
- [x] [Get gas price in USD](./examples/transactions/examples/gas_price_usd.rs)
Expand All @@ -62,9 +64,8 @@ This repository contains the following examples:
- [x] [Transfer ETH](./examples/transactions/examples/transfer_eth.rs)
- [x] [Sign and send a raw transaction](./examples/transactions/examples/sign_transaction.rs)
- [x] [Send transaction with access list](./examples/transactions/examples/with_access_list.rs)
- [ ] Wallets
- [x] Wallets
- [x] [AWS signer](./examples/wallets/examples/aws_signer.rs)
- [ ] GCP signer
- [x] [Ledger signer](./examples/wallets/examples/ledger_signer.rs)
- [x] [Private key signer](./examples/wallets/examples/private_key_signer.rs)
- [x] [Mnemonic signer](./examples/wallets/examples/mnemonic_signer.rs)
Expand Down
File renamed without changes.

0 comments on commit 18184f3

Please sign in to comment.