-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.go
46 lines (37 loc) · 1001 Bytes
/
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
package main
import (
"context"
"encoding/json"
"fmt"
"log"
"os"
"github.com/1inch/1inch-sdk-go/constants"
"github.com/1inch/1inch-sdk-go/sdk-clients/gasprices"
)
var (
devPortalToken = os.Getenv("DEV_PORTAL_TOKEN")
)
func main() {
config, err := gasprices.NewConfiguration(gasprices.ConfigurationParams{
ChainId: constants.EthereumChainId,
ApiUrl: "https://api.1inch.dev",
ApiKey: devPortalToken,
})
if err != nil {
log.Fatalf("failed to create configuration: %v", err)
}
client, err := gasprices.NewClient(config)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
ctx := context.Background()
gasPriceEIP1559, err := client.GetGasPriceEIP1559(ctx)
if err != nil {
log.Fatalf("failed to GetGasPriceEIP1559: %v", err)
}
gasPriceEIP1559Indented, err := json.MarshalIndent(gasPriceEIP1559, "", " ")
if err != nil {
log.Fatalf("failed to marshal gasPriceEIP1559: %v", err)
}
fmt.Printf("GetGasPriceEIP1559: %s\n", gasPriceEIP1559Indented)
}