220 lines
6.5 KiB
Go
220 lines
6.5 KiB
Go
package utils
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
"github.com/cosmos/cosmos-sdk/client/keys"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
auth "github.com/cosmos/cosmos-sdk/x/auth"
|
|
authtxb "github.com/cosmos/cosmos-sdk/x/auth/client/txbuilder"
|
|
amino "github.com/tendermint/go-amino"
|
|
"github.com/tendermint/tendermint/libs/common"
|
|
)
|
|
|
|
// SendTx implements a auxiliary handler that facilitates sending a series of
|
|
// messages in a signed transaction given a TxBuilder and a QueryContext. It
|
|
// ensures that the account exists, has a proper number and sequence set. In
|
|
// addition, it builds and signs a transaction with the supplied messages.
|
|
// Finally, it broadcasts the signed transaction to a node.
|
|
func SendTx(txBldr authtxb.TxBuilder, cliCtx context.CLIContext, msgs []sdk.Msg) error {
|
|
txBldr, err := prepareTxContext(txBldr, cliCtx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if txBldr.SimulateGas || cliCtx.DryRun {
|
|
txBldr, err = EnrichCtxWithGas(txBldr, cliCtx, cliCtx.FromAddressName, msgs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Fprintf(os.Stderr, "estimated gas = %v\n", txBldr.Gas)
|
|
}
|
|
if cliCtx.DryRun {
|
|
return nil
|
|
}
|
|
|
|
passphrase, err := keys.GetPassphrase(cliCtx.FromAddressName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// build and sign the transaction
|
|
txBytes, err := txBldr.BuildAndSign(cliCtx.FromAddressName, passphrase, msgs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// broadcast to a Tendermint node
|
|
return cliCtx.EnsureBroadcastTx(txBytes)
|
|
}
|
|
|
|
// EnrichCtxWithGas calculates the gas estimate that would be consumed by the
|
|
// transaction and set the transaction's respective value accordingly.
|
|
func EnrichCtxWithGas(txBldr authtxb.TxBuilder, cliCtx context.CLIContext, name string, msgs []sdk.Msg) (authtxb.TxBuilder, error) {
|
|
_, adjusted, err := simulateMsgs(txBldr, cliCtx, name, msgs)
|
|
if err != nil {
|
|
return txBldr, err
|
|
}
|
|
return txBldr.WithGas(adjusted), nil
|
|
}
|
|
|
|
// CalculateGas simulates the execution of a transaction and returns
|
|
// both the estimate obtained by the query and the adjusted amount.
|
|
func CalculateGas(queryFunc func(string, common.HexBytes) ([]byte, error), cdc *amino.Codec, txBytes []byte, adjustment float64) (estimate, adjusted int64, err error) {
|
|
// run a simulation (via /app/simulate query) to
|
|
// estimate gas and update TxBuilder accordingly
|
|
rawRes, err := queryFunc("/app/simulate", txBytes)
|
|
if err != nil {
|
|
return
|
|
}
|
|
estimate, err = parseQueryResponse(cdc, rawRes)
|
|
if err != nil {
|
|
return
|
|
}
|
|
adjusted = adjustGasEstimate(estimate, adjustment)
|
|
return
|
|
}
|
|
|
|
// PrintUnsignedStdTx builds an unsigned StdTx and prints it to os.Stdout.
|
|
func PrintUnsignedStdTx(txBldr authtxb.TxBuilder, cliCtx context.CLIContext, msgs []sdk.Msg) (err error) {
|
|
stdTx, err := buildUnsignedStdTx(txBldr, cliCtx, msgs)
|
|
if err != nil {
|
|
return
|
|
}
|
|
json, err := txBldr.Codec.MarshalJSON(stdTx)
|
|
if err == nil {
|
|
fmt.Printf("%s\n", json)
|
|
}
|
|
return
|
|
}
|
|
|
|
// SignStdTx appends a signature to a StdTx and returns a copy of a it. If appendSig
|
|
// is false, it replaces the signatures already attached with the new signature.
|
|
func SignStdTx(txBldr authtxb.TxBuilder, cliCtx context.CLIContext, name string, stdTx auth.StdTx, appendSig bool) (auth.StdTx, error) {
|
|
var signedStdTx auth.StdTx
|
|
|
|
keybase, err := keys.GetKeyBase()
|
|
if err != nil {
|
|
return signedStdTx, err
|
|
}
|
|
info, err := keybase.Get(name)
|
|
if err != nil {
|
|
return signedStdTx, err
|
|
}
|
|
addr := info.GetPubKey().Address()
|
|
|
|
// Check whether the address is a signer
|
|
if !isTxSigner(sdk.AccAddress(addr), stdTx.GetSigners()) {
|
|
fmt.Fprintf(os.Stderr, "WARNING: The generated transaction's intended signer does not match the given signer: '%v'", name)
|
|
}
|
|
|
|
if txBldr.AccountNumber == 0 {
|
|
accNum, err := cliCtx.GetAccountNumber(addr)
|
|
if err != nil {
|
|
return signedStdTx, err
|
|
}
|
|
txBldr = txBldr.WithAccountNumber(accNum)
|
|
}
|
|
|
|
if txBldr.Sequence == 0 {
|
|
accSeq, err := cliCtx.GetAccountSequence(addr)
|
|
if err != nil {
|
|
return signedStdTx, err
|
|
}
|
|
txBldr = txBldr.WithSequence(accSeq)
|
|
}
|
|
|
|
passphrase, err := keys.GetPassphrase(name)
|
|
if err != nil {
|
|
return signedStdTx, err
|
|
}
|
|
return txBldr.SignStdTx(name, passphrase, stdTx, appendSig)
|
|
}
|
|
|
|
// nolint
|
|
// SimulateMsgs simulates the transaction and returns the gas estimate and the adjusted value.
|
|
func simulateMsgs(txBldr authtxb.TxBuilder, cliCtx context.CLIContext, name string, msgs []sdk.Msg) (estimated, adjusted int64, err error) {
|
|
txBytes, err := txBldr.BuildWithPubKey(name, msgs)
|
|
if err != nil {
|
|
return
|
|
}
|
|
estimated, adjusted, err = CalculateGas(cliCtx.Query, cliCtx.Codec, txBytes, txBldr.GasAdjustment)
|
|
return
|
|
}
|
|
|
|
func adjustGasEstimate(estimate int64, adjustment float64) int64 {
|
|
return int64(adjustment * float64(estimate))
|
|
}
|
|
|
|
func parseQueryResponse(cdc *amino.Codec, rawRes []byte) (int64, error) {
|
|
var simulationResult sdk.Result
|
|
if err := cdc.UnmarshalBinary(rawRes, &simulationResult); err != nil {
|
|
return 0, err
|
|
}
|
|
return simulationResult.GasUsed, nil
|
|
}
|
|
|
|
func prepareTxContext(txBldr authtxb.TxBuilder, cliCtx context.CLIContext) (authtxb.TxBuilder, error) {
|
|
if err := cliCtx.EnsureAccountExists(); err != nil {
|
|
return txBldr, err
|
|
}
|
|
|
|
from, err := cliCtx.GetFromAddress()
|
|
if err != nil {
|
|
return txBldr, err
|
|
}
|
|
|
|
// TODO: (ref #1903) Allow for user supplied account number without
|
|
// automatically doing a manual lookup.
|
|
if txBldr.AccountNumber == 0 {
|
|
accNum, err := cliCtx.GetAccountNumber(from)
|
|
if err != nil {
|
|
return txBldr, err
|
|
}
|
|
txBldr = txBldr.WithAccountNumber(accNum)
|
|
}
|
|
|
|
// TODO: (ref #1903) Allow for user supplied account sequence without
|
|
// automatically doing a manual lookup.
|
|
if txBldr.Sequence == 0 {
|
|
accSeq, err := cliCtx.GetAccountSequence(from)
|
|
if err != nil {
|
|
return txBldr, err
|
|
}
|
|
txBldr = txBldr.WithSequence(accSeq)
|
|
}
|
|
return txBldr, nil
|
|
}
|
|
|
|
// buildUnsignedStdTx builds a StdTx as per the parameters passed in the
|
|
// contexts. Gas is automatically estimated if gas wanted is set to 0.
|
|
func buildUnsignedStdTx(txBldr authtxb.TxBuilder, cliCtx context.CLIContext, msgs []sdk.Msg) (stdTx auth.StdTx, err error) {
|
|
txBldr, err = prepareTxContext(txBldr, cliCtx)
|
|
if err != nil {
|
|
return
|
|
}
|
|
if txBldr.SimulateGas {
|
|
txBldr, err = EnrichCtxWithGas(txBldr, cliCtx, cliCtx.FromAddressName, msgs)
|
|
if err != nil {
|
|
return
|
|
}
|
|
fmt.Fprintf(os.Stderr, "estimated gas = %v\n", txBldr.Gas)
|
|
}
|
|
stdSignMsg, err := txBldr.Build(msgs)
|
|
if err != nil {
|
|
return
|
|
}
|
|
return auth.NewStdTx(stdSignMsg.Msgs, stdSignMsg.Fee, nil, stdSignMsg.Memo), nil
|
|
}
|
|
|
|
func isTxSigner(user sdk.AccAddress, signers []sdk.AccAddress) bool {
|
|
for _, s := range signers {
|
|
if bytes.Equal(user.Bytes(), s.Bytes()) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|