OSDN Git Service

modify estimate-transaction-gas display
[bytom/bytom.git] / api / transact.go
1 package api
2
3 import (
4         "context"
5         "encoding/json"
6         "fmt"
7         "strings"
8         "time"
9
10         log "github.com/sirupsen/logrus"
11
12         "github.com/bytom/blockchain/txbuilder"
13         "github.com/bytom/consensus"
14         "github.com/bytom/consensus/segwit"
15         "github.com/bytom/errors"
16         "github.com/bytom/math/checked"
17         "github.com/bytom/net/http/reqid"
18         "github.com/bytom/protocol/bc"
19         "github.com/bytom/protocol/bc/types"
20 )
21
22 var defaultTxTTL = 5 * time.Minute
23
24 func (a *API) actionDecoder(action string) (func([]byte) (txbuilder.Action, error), bool) {
25         var decoder func([]byte) (txbuilder.Action, error)
26         switch action {
27         case "control_address":
28                 decoder = txbuilder.DecodeControlAddressAction
29         case "control_program":
30                 decoder = txbuilder.DecodeControlProgramAction
31         case "control_receiver":
32                 decoder = txbuilder.DecodeControlReceiverAction
33         case "issue":
34                 decoder = a.wallet.AssetReg.DecodeIssueAction
35         case "retire":
36                 decoder = txbuilder.DecodeRetireAction
37         case "spend_account":
38                 decoder = a.wallet.AccountMgr.DecodeSpendAction
39         case "spend_account_unspent_output":
40                 decoder = a.wallet.AccountMgr.DecodeSpendUTXOAction
41         default:
42                 return nil, false
43         }
44         return decoder, true
45 }
46
47 func mergeActions(req *BuildRequest) []map[string]interface{} {
48         var actions []map[string]interface{}
49         actionMap := make(map[string]map[string]interface{})
50
51         for _, m := range req.Actions {
52                 if actionType := m["type"].(string); actionType != "spend_account" {
53                         actions = append(actions, m)
54                         continue
55                 }
56
57                 actionKey := m["asset_id"].(string) + m["account_id"].(string)
58                 amountNumber := m["amount"].(json.Number)
59                 amount, _ := amountNumber.Int64()
60
61                 if tmpM, ok := actionMap[actionKey]; ok {
62                         tmpNumber, _ := tmpM["amount"].(json.Number)
63                         tmpAmount, _ := tmpNumber.Int64()
64                         tmpM["amount"] = json.Number(fmt.Sprintf("%v", tmpAmount+amount))
65                 } else {
66                         actionMap[actionKey] = m
67                         actions = append(actions, m)
68                 }
69         }
70
71         return actions
72 }
73
74 func onlyHaveSpendActions(req *BuildRequest) bool {
75         count := 0
76         for _, m := range req.Actions {
77                 if actionType := m["type"].(string); strings.HasPrefix(actionType, "spend") {
78                         count++
79                 }
80         }
81
82         return count == len(req.Actions)
83 }
84
85 func (a *API) buildSingle(ctx context.Context, req *BuildRequest) (*txbuilder.Template, error) {
86         err := a.filterAliases(ctx, req)
87         if err != nil {
88                 return nil, err
89         }
90
91         if onlyHaveSpendActions(req) {
92                 return nil, errors.New("transaction only contain spend actions, didn't have output actions")
93         }
94
95         reqActions := mergeActions(req)
96         actions := make([]txbuilder.Action, 0, len(reqActions))
97         for i, act := range reqActions {
98                 typ, ok := act["type"].(string)
99                 if !ok {
100                         return nil, errors.WithDetailf(errBadActionType, "no action type provided on action %d", i)
101                 }
102                 decoder, ok := a.actionDecoder(typ)
103                 if !ok {
104                         return nil, errors.WithDetailf(errBadActionType, "unknown action type %q on action %d", typ, i)
105                 }
106
107                 // Remarshal to JSON, the action may have been modified when we
108                 // filtered aliases.
109                 b, err := json.Marshal(act)
110                 if err != nil {
111                         return nil, err
112                 }
113                 action, err := decoder(b)
114                 if err != nil {
115                         return nil, errors.WithDetailf(errBadAction, "%s on action %d", err.Error(), i)
116                 }
117                 actions = append(actions, action)
118         }
119
120         ttl := req.TTL.Duration
121         if ttl == 0 {
122                 ttl = defaultTxTTL
123         }
124         maxTime := time.Now().Add(ttl)
125
126         tpl, err := txbuilder.Build(ctx, req.Tx, actions, maxTime, req.TimeRange)
127         if errors.Root(err) == txbuilder.ErrAction {
128                 // append each of the inner errors contained in the data.
129                 var Errs string
130                 for _, innerErr := range errors.Data(err)["actions"].([]error) {
131                         Errs = Errs + "<" + innerErr.Error() + ">"
132                 }
133                 err = errors.New(err.Error() + "-" + Errs)
134         }
135         if err != nil {
136                 return nil, err
137         }
138
139         // ensure null is never returned for signing instructions
140         if tpl.SigningInstructions == nil {
141                 tpl.SigningInstructions = []*txbuilder.SigningInstruction{}
142         }
143         return tpl, nil
144 }
145
146 // POST /build-transaction
147 func (a *API) build(ctx context.Context, buildReqs *BuildRequest) Response {
148         subctx := reqid.NewSubContext(ctx, reqid.New())
149
150         tmpl, err := a.buildSingle(subctx, buildReqs)
151         if err != nil {
152                 return NewErrorResponse(err)
153         }
154
155         return NewSuccessResponse(tmpl)
156 }
157
158 type submitTxResp struct {
159         TxID *bc.Hash `json:"tx_id"`
160 }
161
162 // POST /submit-transaction
163 func (a *API) submit(ctx context.Context, ins struct {
164         Tx types.Tx `json:"raw_transaction"`
165 }) Response {
166         if err := txbuilder.FinalizeTx(ctx, a.chain, &ins.Tx); err != nil {
167                 return NewErrorResponse(err)
168         }
169
170         log.WithField("tx_id", ins.Tx.ID).Info("submit single tx")
171         return NewSuccessResponse(&submitTxResp{TxID: &ins.Tx.ID})
172 }
173
174 // EstimateTxGasResp estimate transaction consumed gas
175 type EstimateTxGasResp struct {
176         TotalNeu   float64 `json:"total_neu"`
177         StorageNeu float64 `json:"storage_neu"`
178         VMNeu      float64 `json:"vm_neu"`
179 }
180
181 // POST /estimate-transaction-gas
182 func (a *API) estimateTxGas(ctx context.Context, in struct {
183         TxTemplate txbuilder.Template `json:"transaction_template"`
184 }) Response {
185         // base tx size and not include sign
186         data, err := in.TxTemplate.Transaction.TxData.MarshalText()
187         if err != nil {
188                 return NewErrorResponse(err)
189         }
190         baseTxSize := int64(len(data))
191
192         // extra tx size for sign witness parts
193         baseWitnessSize := int64(300)
194         lenSignInst := int64(len(in.TxTemplate.SigningInstructions))
195         signSize := baseWitnessSize * lenSignInst
196
197         // total gas for tx storage
198         totalTxSizeGas, ok := checked.MulInt64(baseTxSize+signSize, consensus.StorageGasRate)
199         if !ok {
200                 return NewErrorResponse(errors.New("calculate txsize gas got a math error"))
201         }
202
203         // consume gas for run VM
204         totalP2WPKHGas := int64(0)
205         totalP2WSHGas := int64(0)
206         baseP2WPKHGas := int64(1419)
207         baseP2WSHGas := int64(2499)
208
209         for _, inpID := range in.TxTemplate.Transaction.Tx.InputIDs {
210                 sp, err := in.TxTemplate.Transaction.Spend(inpID)
211                 if err != nil {
212                         continue
213                 }
214
215                 resOut, err := in.TxTemplate.Transaction.Output(*sp.SpentOutputId)
216                 if err != nil {
217                         continue
218                 }
219
220                 if segwit.IsP2WPKHScript(resOut.ControlProgram.Code) {
221                         totalP2WPKHGas += baseP2WPKHGas
222                 } else if segwit.IsP2WSHScript(resOut.ControlProgram.Code) {
223                         totalP2WSHGas += baseP2WSHGas
224                 }
225         }
226
227         // total estimate gas
228         totalGas := totalTxSizeGas + totalP2WPKHGas + totalP2WSHGas
229
230         txGasResp := &EstimateTxGasResp{
231                 TotalNeu:   float64(totalGas) / consensus.NeuBtmRate,
232                 StorageNeu: float64(totalTxSizeGas) / consensus.NeuBtmRate,
233                 VMNeu:      float64(totalP2WPKHGas+totalP2WSHGas) / consensus.NeuBtmRate,
234         }
235
236         return NewSuccessResponse(txGasResp)
237 }