78 lines
2.4 KiB
Go
78 lines
2.4 KiB
Go
|
// Copyright 2020 Coinbase, 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 services
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/coinbase/rosetta-bitcoin/bitcoin"
|
||
|
|
||
|
"github.com/coinbase/rosetta-sdk-go/types"
|
||
|
)
|
||
|
|
||
|
// Client is used by the servicers to get Peer information
|
||
|
// and to submit transactions.
|
||
|
type Client interface {
|
||
|
NetworkStatus(context.Context) (*types.NetworkStatusResponse, error)
|
||
|
SendRawTransaction(context.Context, string) (string, error)
|
||
|
SuggestedFeeRate(context.Context, int64) (float64, error)
|
||
|
}
|
||
|
|
||
|
// Indexer is used by the servicers to get block and account data.
|
||
|
type Indexer interface {
|
||
|
GetBlockLazy(context.Context, *types.PartialBlockIdentifier) (*types.BlockResponse, error)
|
||
|
GetBlockTransaction(
|
||
|
context.Context,
|
||
|
*types.BlockIdentifier,
|
||
|
*types.TransactionIdentifier,
|
||
|
) (*types.Transaction, error)
|
||
|
GetCoins(
|
||
|
context.Context,
|
||
|
*types.AccountIdentifier,
|
||
|
) ([]*types.Coin, *types.BlockIdentifier, error)
|
||
|
GetScriptPubKeys(
|
||
|
context.Context,
|
||
|
[]*types.Coin,
|
||
|
) ([]*bitcoin.ScriptPubKey, error)
|
||
|
}
|
||
|
|
||
|
type unsignedTransaction struct {
|
||
|
Transaction string `json:"transaction"`
|
||
|
ScriptPubKeys []*bitcoin.ScriptPubKey `json:"scriptPubKeys"`
|
||
|
InputAmounts []string `json:"input_amounts"`
|
||
|
InputAddresses []string `json:"input_addresses"`
|
||
|
}
|
||
|
|
||
|
type preprocessOptions struct {
|
||
|
Coins []*types.Coin `json:"coins"`
|
||
|
EstimatedSize float64 `json:"estimated_size"`
|
||
|
FeeMultiplier *float64 `json:"fee_multiplier,omitempty"`
|
||
|
}
|
||
|
|
||
|
type constructionMetadata struct {
|
||
|
ScriptPubKeys []*bitcoin.ScriptPubKey `json:"script_pub_keys"`
|
||
|
}
|
||
|
|
||
|
type signedTransaction struct {
|
||
|
Transaction string `json:"transaction"`
|
||
|
InputAmounts []string `json:"input_amounts"`
|
||
|
}
|
||
|
|
||
|
// ParseOperationMetadata is returned from
|
||
|
// ConstructionParse.
|
||
|
type ParseOperationMetadata struct {
|
||
|
ScriptPubKey *bitcoin.ScriptPubKey `json:"scriptPubKey"`
|
||
|
}
|