forked from NethermindEth/starknet.go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
62 lines (52 loc) · 1.39 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package main
import (
"context"
"fmt"
"log"
"os"
"github.com/NethermindEth/starknet.go/rpc"
"github.com/NethermindEth/starknet.go/utils"
"github.com/joho/godotenv"
)
var (
name string = "mainnet"
someMainnetContract string = "0x024dE48Fb640DB135B3dc85ef0FE2789e032FbCA2fca54E58aB8dB93ca22F767"
contractMethod string = "getName"
)
// main entry point of the program.
//
// It initializes the environment and establishes a connection with the client.
// It then makes a contract call and prints the response.
//
// Parameters:
//
// none
//
// Returns:
//
// none
func main() {
fmt.Println("Starting simpeCall example")
godotenv.Load(fmt.Sprintf(".env.%s", name))
url := os.Getenv("INTEGRATION_BASE")
clientv02, err := rpc.NewProvider(url)
if err != nil {
log.Fatal(fmt.Sprintf("Error dialing the RPC provider: %s", err))
}
fmt.Println("Established connection with the client")
contractAddress, err := utils.HexToFelt(someMainnetContract)
if err != nil {
panic(err)
}
// Make read contract call
tx := rpc.FunctionCall{
ContractAddress: contractAddress,
EntryPointSelector: utils.GetSelectorFromNameFelt(contractMethod),
}
fmt.Println("Making Call() request")
callResp, err := clientv02.Call(context.Background(), tx, rpc.BlockID{Tag: "latest"})
if err != nil {
panic(err)
}
fmt.Println(fmt.Sprintf("Response to %s():%s ", contractMethod, callResp[0]))
}