Merge changes to implement postgraphile GraphQL queries #166
@ -23,7 +23,6 @@ import (
|
|||||||
"database/sql"
|
"database/sql"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"math/big"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/common"
|
"github.com/ethereum/go-ethereum/common"
|
||||||
@ -1164,10 +1163,10 @@ func (transactionCIDResult EthTransactionCidsConnection) Nodes(ctx context.Conte
|
|||||||
|
|
||||||
type EthHeaderCid struct {
|
type EthHeaderCid struct {
|
||||||
cid string
|
cid string
|
||||||
blockNumber hexutil.Uint64
|
blockNumber BigInt
|
||||||
blockHash string
|
blockHash string
|
||||||
parentHash string
|
parentHash string
|
||||||
timestamp hexutil.Uint64
|
timestamp BigInt
|
||||||
transactions []*EthTransactionCid
|
transactions []*EthTransactionCid
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1175,7 +1174,7 @@ func (h EthHeaderCid) Cid(ctx context.Context) string {
|
|||||||
return h.cid
|
return h.cid
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h EthHeaderCid) BlockNumber(ctx context.Context) hexutil.Uint64 {
|
func (h EthHeaderCid) BlockNumber(ctx context.Context) BigInt {
|
||||||
return h.blockNumber
|
return h.blockNumber
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1187,7 +1186,7 @@ func (h EthHeaderCid) ParentHash(ctx context.Context) string {
|
|||||||
return h.parentHash
|
return h.parentHash
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h EthHeaderCid) Timestamp(ctx context.Context) hexutil.Uint64 {
|
func (h EthHeaderCid) Timestamp(ctx context.Context) BigInt {
|
||||||
return h.timestamp
|
return h.timestamp
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1204,7 +1203,7 @@ func (headerCIDResult EthHeaderCidsConnection) Nodes(ctx context.Context) []*Eth
|
|||||||
}
|
}
|
||||||
|
|
||||||
type EthHeaderCidCondition struct {
|
type EthHeaderCidCondition struct {
|
||||||
BlockNumber *hexutil.Big
|
BlockNumber *BigInt
|
||||||
BlockHash *string
|
BlockHash *string
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1233,15 +1232,18 @@ func (r *Resolver) AllEthHeaderCids(ctx context.Context, args struct {
|
|||||||
|
|
||||||
var resultNodes []*EthHeaderCid
|
var resultNodes []*EthHeaderCid
|
||||||
for idx, headerCID := range headerCIDs {
|
for idx, headerCID := range headerCIDs {
|
||||||
blockNumber := new(big.Int)
|
var blockNumber BigInt
|
||||||
blockNumber.SetString(headerCID.BlockNumber, 10)
|
blockNumber.UnmarshalText([]byte(headerCID.BlockNumber))
|
||||||
|
|
||||||
|
var timestamp BigInt
|
||||||
|
timestamp.SetUint64(headerCID.Timestamp)
|
||||||
|
|
||||||
ethHeaderCidNode := EthHeaderCid{
|
ethHeaderCidNode := EthHeaderCid{
|
||||||
cid: headerCID.CID,
|
cid: headerCID.CID,
|
||||||
blockNumber: hexutil.Uint64(blockNumber.Uint64()),
|
blockNumber: blockNumber,
|
||||||
blockHash: headerCID.BlockHash,
|
blockHash: headerCID.BlockHash,
|
||||||
parentHash: headerCID.ParentHash,
|
parentHash: headerCID.ParentHash,
|
||||||
timestamp: hexutil.Uint64(headerCID.Timestamp),
|
timestamp: timestamp,
|
||||||
}
|
}
|
||||||
|
|
||||||
txCIDs := allTxCIDs[idx]
|
txCIDs := allTxCIDs[idx]
|
||||||
|
@ -25,8 +25,7 @@ const schema string = `
|
|||||||
# An empty byte string is represented as '0x'. Byte strings must have an even number of hexadecimal nybbles.
|
# An empty byte string is represented as '0x'. Byte strings must have an even number of hexadecimal nybbles.
|
||||||
scalar Bytes
|
scalar Bytes
|
||||||
# BigInt is a large integer. Input is accepted as either a JSON number or as a string.
|
# BigInt is a large integer. Input is accepted as either a JSON number or as a string.
|
||||||
# Strings may be either decimal or 0x-prefixed hexadecimal. Output values are all
|
# Input and output strings may be either decimal or 0x-prefixed hexadecimal depending upon the resolver implementation.
|
||||||
# 0x-prefixed hexadecimal.
|
|
||||||
scalar BigInt
|
scalar BigInt
|
||||||
# Long is a 64 bit unsigned integer.
|
# Long is a 64 bit unsigned integer.
|
||||||
scalar Long
|
scalar Long
|
||||||
@ -301,10 +300,10 @@ const schema string = `
|
|||||||
|
|
||||||
type EthHeaderCid {
|
type EthHeaderCid {
|
||||||
cid: String!
|
cid: String!
|
||||||
blockNumber: Long!
|
blockNumber: BigInt!
|
||||||
blockHash: String!
|
blockHash: String!
|
||||||
parentHash: String!
|
parentHash: String!
|
||||||
timestamp: Long!
|
timestamp: BigInt!
|
||||||
ethTransactionCidsByHeaderId: EthTransactionCidsConnection!
|
ethTransactionCidsByHeaderId: EthTransactionCidsConnection!
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -333,6 +332,7 @@ const schema string = `
|
|||||||
# Get contract logs by block hash and contract address.
|
# Get contract logs by block hash and contract address.
|
||||||
getLogs(blockHash: Bytes32!, contract: Address): [Log!]
|
getLogs(blockHash: Bytes32!, contract: Address): [Log!]
|
||||||
|
|
||||||
|
# PostGraphile alternative to get headers with transactions using block number or block hash.
|
||||||
allEthHeaderCids(condition: EthHeaderCidCondition): EthHeaderCidsConnection
|
allEthHeaderCids(condition: EthHeaderCidCondition): EthHeaderCidsConnection
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
94
pkg/graphql/types.go
Normal file
94
pkg/graphql/types.go
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
// VulcanizeDB
|
||||||
|
// Copyright © 2022 Vulcanize
|
||||||
|
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
package graphql
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"math/big"
|
||||||
|
|
||||||
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||||
|
)
|
||||||
|
|
||||||
|
type BigInt big.Int
|
||||||
|
|
||||||
|
// ToInt converts b to a big.Int.
|
||||||
|
func (b *BigInt) ToInt() *big.Int {
|
||||||
|
return (*big.Int)(b)
|
||||||
|
}
|
||||||
|
|
||||||
|
// String returns value of b as a decimal string.
|
||||||
|
func (b *BigInt) String() string {
|
||||||
|
return b.ToInt().String()
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetUint64 sets b to x and returns x.
|
||||||
|
func (b *BigInt) SetUint64(x uint64) *BigInt {
|
||||||
|
var val big.Int
|
||||||
|
val.SetUint64(x)
|
||||||
|
*b = (BigInt)(val)
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
|
||||||
|
// MarshalText implements encoding.TextMarshaler
|
||||||
|
func (b BigInt) MarshalText() ([]byte, error) {
|
||||||
|
return []byte(b.String()), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnmarshalText implements encoding.TextUnmarshaler
|
||||||
|
func (b *BigInt) UnmarshalText(input []byte) error {
|
||||||
|
raw, err := checkNumberText(input)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if len(raw) > 64 {
|
||||||
|
return hexutil.ErrBig256Range
|
||||||
|
}
|
||||||
|
|
||||||
|
var val big.Int
|
||||||
|
val.SetString(string(input[:]), 10)
|
||||||
|
*b = (BigInt)(val)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ImplementsGraphQLType returns true if BigInt implements the provided GraphQL type.
|
||||||
|
func (b BigInt) ImplementsGraphQLType(name string) bool { return name == "BigInt" }
|
||||||
|
|
||||||
|
// UnmarshalGraphQL unmarshals the provided GraphQL query data.
|
||||||
|
func (b *BigInt) UnmarshalGraphQL(input interface{}) error {
|
||||||
|
var err error
|
||||||
|
switch input := input.(type) {
|
||||||
|
case string:
|
||||||
|
return b.UnmarshalText([]byte(input))
|
||||||
|
case int32:
|
||||||
|
var num big.Int
|
||||||
|
num.SetInt64(int64(input))
|
||||||
|
*b = BigInt(num)
|
||||||
|
default:
|
||||||
|
err = fmt.Errorf("unexpected type %T for BigInt", input)
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func checkNumberText(input []byte) (raw []byte, err error) {
|
||||||
|
if len(input) == 0 {
|
||||||
|
return nil, nil // empty strings are allowed
|
||||||
|
}
|
||||||
|
if len(input) > 1 && input[0] == '0' {
|
||||||
|
return nil, hexutil.ErrLeadingZero
|
||||||
|
}
|
||||||
|
return input, nil
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user