Skip to content

Commit

Permalink
Merge branch 'main' into thiagodeev/upgrade-remaining-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rianhughes authored Jul 9, 2024
2 parents 189ee0d + b09c605 commit 43f6094
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -72,7 +72,6 @@ go run main.go

```sh
cd examples/deployAccount
go mod tidy
go run main.go
```

Expand All @@ -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.
<br/> Check [here](https://github.com/NethermindEth/starknet.go/tree/main/examples) for some FAQ answered by these examples.


### RPC

Expand Down

0 comments on commit 43f6094

Please sign in to comment.