forked from onflow/flow-go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
111 lines (82 loc) · 5.26 KB
/
client.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
* Flow Go SDK
*
* Copyright 2019 Dapper Labs, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Package access contains an interface defining functions for the API clients.
//
// The Access API provides a set of methods that can be used to submit transactions
// and read state from Flow. Clients are compatible with the Access API implemented by the
// Access Node role, as well as the mock Access API exposed by the Flow Emulator.
package access
import (
"context"
"github.com/onflow/cadence"
"github.com/onflow/flow-go-sdk"
)
type Client interface {
// Ping is used to check if the access node is alive and healthy.
Ping(ctx context.Context) error
// GetNetworkParameters gets the network parameters.
GetNetworkParameters(ctx context.Context) (*flow.NetworkParameters, error)
// GetLatestBlockHeader gets the latest sealed or unsealed block header.
GetLatestBlockHeader(ctx context.Context, isSealed bool) (*flow.BlockHeader, error)
// GetBlockHeaderByID gets a block header by ID.
GetBlockHeaderByID(ctx context.Context, blockID flow.Identifier) (*flow.BlockHeader, error)
// GetBlockHeaderByHeight gets a block header by height.
GetBlockHeaderByHeight(ctx context.Context, height uint64) (*flow.BlockHeader, error)
// GetLatestBlock gets the full payload of the latest sealed or unsealed block.
GetLatestBlock(ctx context.Context, isSealed bool) (*flow.Block, error)
// GetBlockByID gets a full block by ID.
GetBlockByID(ctx context.Context, blockID flow.Identifier) (*flow.Block, error)
// GetBlockByHeight gets a full block by height.
GetBlockByHeight(ctx context.Context, height uint64) (*flow.Block, error)
// GetCollection gets a collection by ID.
GetCollection(ctx context.Context, colID flow.Identifier) (*flow.Collection, error)
// SendTransaction submits a transaction to the network.
SendTransaction(ctx context.Context, tx flow.Transaction) error
// GetTransaction gets a transaction by ID.
GetTransaction(ctx context.Context, txID flow.Identifier) (*flow.Transaction, error)
// GetTransactionsByBlockID gets all the transactions for a specified block.
GetTransactionsByBlockID(ctx context.Context, blockID flow.Identifier) ([]*flow.Transaction, error)
// GetTransactionResult gets the result of a transaction.
GetTransactionResult(ctx context.Context, txID flow.Identifier) (*flow.TransactionResult, error)
// GetTransactionResultsByBlockID gets all the transaction results for a specified block.
GetTransactionResultsByBlockID(ctx context.Context, blockID flow.Identifier) ([]*flow.TransactionResult, error)
// GetAccount is an alias for GetAccountAtLatestBlock.
GetAccount(ctx context.Context, address flow.Address) (*flow.Account, error)
// GetAccountAtLatestBlock gets an account by address at the latest sealed block.
GetAccountAtLatestBlock(ctx context.Context, address flow.Address) (*flow.Account, error)
// GetAccountAtBlockHeight gets an account by address at the given block height
GetAccountAtBlockHeight(ctx context.Context, address flow.Address, blockHeight uint64) (*flow.Account, error)
// ExecuteScriptAtLatestBlock executes a read-only Cadence script against the latest sealed execution state.
ExecuteScriptAtLatestBlock(ctx context.Context, script []byte, arguments []cadence.Value) (cadence.Value, error)
// ExecuteScriptAtBlockID executes a ready-only Cadence script against the execution state at the block with the given ID.
ExecuteScriptAtBlockID(ctx context.Context, blockID flow.Identifier, script []byte, arguments []cadence.Value) (cadence.Value, error)
// ExecuteScriptAtBlockHeight executes a ready-only Cadence script against the execution state at the given block height.
ExecuteScriptAtBlockHeight(ctx context.Context, height uint64, script []byte, arguments []cadence.Value) (cadence.Value, error)
// GetEventsForHeightRange retrieves events for all sealed blocks between the start and end block heights (inclusive) with the given type.
GetEventsForHeightRange(ctx context.Context, eventType string, startHeight uint64, endHeight uint64) ([]flow.BlockEvents, error)
// GetEventsForBlockIDs retrieves events with the given type from the specified block IDs.
GetEventsForBlockIDs(ctx context.Context, eventType string, blockIDs []flow.Identifier) ([]flow.BlockEvents, error)
// GetLatestProtocolStateSnapshot retrieves the latest snapshot of the protocol
// state in serialized form. This is used to generate a root snapshot file
// used by Flow nodes to bootstrap their local protocol state database.
GetLatestProtocolStateSnapshot(ctx context.Context) ([]byte, error)
// GetExecutionResultForBlockID gets the execution results at the block ID.
GetExecutionResultForBlockID(ctx context.Context, blockID flow.Identifier) (*flow.ExecutionResult, error)
// Close stops the client connection to the access node.
Close() error
}