diff --git a/README.md b/README.md index 27e604a3..9a0123e5 100644 --- a/README.md +++ b/README.md @@ -53,17 +53,17 @@ operations on the wallets. The package has excellent documentation for a smooth # Getting Started - library documentation available at [pkg.go.dev](https://pkg.go.dev/github.com/NethermindEth/starknet.go). -- [simple call example](./examples/simpleCall) to make a contract call to a mainnet contract +- [simple call example](./examples/simpleCall) to make a contract call to a testnet contract. - [deploy account example](./examples/deployAccount) to deploy a new account contract on testnet. - [invoke transaction example](./examples/simpleInvoke) to add a new invoke transaction on testnet. +- [deploy contract UDC example](./examples/deployContractUDC) to deploy an ERC20 token using [UDC (Universal Deployer Contract)](https://docs.starknet.io/architecture-and-concepts/accounts/universal-deployer/) on testnet. ### Run Examples ***starknet simpleCall*** - + ```sh cd examples/simpleCall -go mod tidy go run main.go ``` > Check [here](examples/simpleCall/README.md) for more details @@ -72,7 +72,6 @@ go run main.go ```sh cd examples/deployAccount -go mod tidy go run main.go ``` @@ -82,12 +81,22 @@ go run main.go ```sh cd examples/simpleInvoke -go mod tidy go run main.go ``` > Check [here](examples/simpleInvoke/README.md) for more details +***starknet deployContractUDC*** + +```sh +cd examples/deployContractUDC +go run main.go +``` + +> Check [here](examples/deployContractUDC/README.md) for more details. + +
Check [here](https://github.com/NethermindEth/starknet.go/tree/main/examples) for some FAQ answered by these examples. + ### RPC