2021-07-02 09:00:48 +00:00
|
|
|
package graphql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
|
|
gqlclient "github.com/machinebox/graphql"
|
|
|
|
)
|
|
|
|
|
|
|
|
type StorageResponse struct {
|
|
|
|
Cid string `json:"cid"`
|
|
|
|
Value common.Hash `json:"value"`
|
|
|
|
IpldBlock hexutil.Bytes `json:"ipldBlock"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetStorageAt struct {
|
|
|
|
Response StorageResponse `json:"getStorageAt"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type LogResponse struct {
|
2021-07-26 10:13:38 +00:00
|
|
|
Topics []common.Hash `json:"topics"`
|
|
|
|
Data hexutil.Bytes `json:"data"`
|
|
|
|
Transaction TransactionResp `json:"transaction"`
|
2021-09-01 07:02:28 +00:00
|
|
|
ReceiptCID string `json:"receiptCID"`
|
2021-08-30 15:29:54 +00:00
|
|
|
Status int32 `json:"status"`
|
2021-07-26 10:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type TransactionResp struct {
|
|
|
|
Hash common.Hash `json:"hash"`
|
2021-07-02 09:00:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type GetLogs struct {
|
|
|
|
Responses []LogResponse `json:"getLogs"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Client struct {
|
|
|
|
client *gqlclient.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewClient(endpoint string) *Client {
|
|
|
|
client := gqlclient.NewClient(endpoint)
|
|
|
|
return &Client{client: client}
|
|
|
|
}
|
|
|
|
|
2021-09-02 13:42:33 +00:00
|
|
|
func (c *Client) GetLogs(ctx context.Context, hash common.Hash, address *common.Address) ([]LogResponse, error) {
|
|
|
|
params := fmt.Sprintf(`blockHash: "%s"`, hash.String())
|
|
|
|
if address != nil {
|
|
|
|
params += fmt.Sprintf(`, contract: "%s"`, address.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
getLogsQuery := fmt.Sprintf(`query{
|
|
|
|
getLogs(%s) {
|
2021-07-02 09:00:48 +00:00
|
|
|
data
|
|
|
|
topics
|
2021-07-26 10:13:38 +00:00
|
|
|
transaction {
|
|
|
|
hash
|
|
|
|
}
|
2021-08-30 15:29:54 +00:00
|
|
|
status
|
2021-09-01 07:02:28 +00:00
|
|
|
receiptCID
|
2021-07-02 09:00:48 +00:00
|
|
|
}
|
2021-09-02 13:42:33 +00:00
|
|
|
}`, params)
|
2021-07-02 09:00:48 +00:00
|
|
|
|
|
|
|
req := gqlclient.NewRequest(getLogsQuery)
|
|
|
|
req.Header.Set("Cache-Control", "no-cache")
|
|
|
|
|
|
|
|
var respData map[string]interface{}
|
|
|
|
err := c.client.Run(ctx, req, &respData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonStr, err := json.Marshal(respData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var logs GetLogs
|
|
|
|
err = json.Unmarshal(jsonStr, &logs)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return logs.Responses, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) GetStorageAt(ctx context.Context, hash common.Hash, address common.Address, slot string) (*StorageResponse, error) {
|
|
|
|
getLogsQuery := fmt.Sprintf(`
|
|
|
|
query{
|
|
|
|
getStorageAt(blockHash: "%s", contract: "%s",slot: "%s") {
|
|
|
|
cid
|
|
|
|
value
|
|
|
|
ipldBlock
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`, hash.String(), address.String(), common.HexToHash(slot))
|
|
|
|
|
|
|
|
req := gqlclient.NewRequest(getLogsQuery)
|
|
|
|
req.Header.Set("Cache-Control", "no-cache")
|
|
|
|
|
|
|
|
var respData map[string]interface{}
|
|
|
|
err := c.client.Run(ctx, req, &respData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonStr, err := json.Marshal(respData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var storageAt GetStorageAt
|
|
|
|
err = json.Unmarshal(jsonStr, &storageAt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &storageAt.Response, nil
|
|
|
|
}
|