-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.go
45 lines (38 loc) · 1.01 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
package main
import (
"context"
"encoding/json"
"fmt"
"log"
"os"
"github.com/1inch/1inch-sdk-go/sdk-clients/portfolio"
)
var (
devPortalToken = os.Getenv("DEV_PORTAL_TOKEN")
)
func main() {
config, err := portfolio.NewConfiguration(portfolio.ConfigurationParams{
ApiUrl: "https://api.1inch.dev",
ApiKey: devPortalToken,
})
if err != nil {
log.Fatalf("failed to create configuration: %v", err)
}
client, err := portfolio.NewClient(config)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
ctx := context.Background()
response, err := client.GetProtocolsCurrentValue(ctx, portfolio.GetCurrentValuePortfolioV4OverviewProtocolsCurrentValueGetParams{
Addresses: []string{"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"},
ChainId: 1,
})
if err != nil {
log.Fatalf("failed to get response: %v", err)
}
responseIndented, err := json.MarshalIndent(response, "", " ")
if err != nil {
log.Fatalf("failed to MarshalIndent: %v", err)
}
fmt.Printf("Response: %s\n", responseIndented)
}