From 96944d9100385dd49d337ed2bd6d9005c519ea25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carmen=20Irene=20Cabrera=20Rodr=C3=ADguez?= <49727740+cicr99@users.noreply.github.com> Date: Thu, 2 Nov 2023 06:21:59 -0400 Subject: [PATCH] Update readme and contributors (#457) * update readme * add check in workflow to build new example * update contributors section --- .github/workflows/main_ci_check.yml | 1 + README.md | 14 ++++++++++++-- examples/simpleInvoke/go.mod | 4 ++-- examples/simpleInvoke/go.work | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main_ci_check.yml b/.github/workflows/main_ci_check.yml index ebaf54a6..7370b125 100644 --- a/.github/workflows/main_ci_check.yml +++ b/.github/workflows/main_ci_check.yml @@ -72,3 +72,4 @@ jobs: run: | cd examples/deployAccount && go build cd ../simpleCall && go build + cd ../simpleInvoke && go build diff --git a/README.md b/README.md index ac6935cc..b225d4ab 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,7 @@ operations on the wallets. The package has excellent documentation for a smooth # 🌟 Features - Seamless interaction with the Starknet RPC -- Tight integration with Juno (uses the RPC types, resulting in updates and - breaking changes landing quickly) +- Tight integration with Juno - Account management: Deploy accounts easily - Good concurrency support @@ -192,6 +191,17 @@ Thanks goes to these wonderful people Kristijan Rebernisak
Kristijan Rebernisak

πŸ’» rianhughes
Rian Hughes

πŸ’» Carmen
Carmen Irene Cabrera RodrΓ­guez

πŸ’» + Josh
Josh Klopfenstein

πŸ’» + Antonio
Antonio Quental

πŸ“– + Jelilat
Jelilat Anofiu

πŸ’» + JorikSchellekens
Jorik Schellekens

πŸ“– + + + Akashneelesh
Akashneelesh

πŸ’‘ + fico
Fico

πŸ’» + Bitcoinnoobie
Bitcoinnoobie

πŸ’» + stranger80
stranger80

πŸ’» + omahs
omahs

πŸ“– diff --git a/examples/simpleInvoke/go.mod b/examples/simpleInvoke/go.mod index 96d7a8ee..e5089ee9 100644 --- a/examples/simpleInvoke/go.mod +++ b/examples/simpleInvoke/go.mod @@ -1,15 +1,15 @@ module account -go 1.20 +go 1.21 require ( - github.com/NethermindEth/juno v0.3.1 github.com/NethermindEth/starknet.go v0.4.6-0.20231005024141-742a82479868 github.com/ethereum/go-ethereum v1.10.26 github.com/joho/godotenv v1.4.0 ) require ( + github.com/NethermindEth/juno v0.3.1 // indirect github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect github.com/bits-and-blooms/bitset v1.7.0 // indirect github.com/consensys/gnark-crypto v0.11.0 // indirect diff --git a/examples/simpleInvoke/go.work b/examples/simpleInvoke/go.work index b32bc53a..01071242 100644 --- a/examples/simpleInvoke/go.work +++ b/examples/simpleInvoke/go.work @@ -1,4 +1,4 @@ -go 1.18 +go 1.21 use ( .