-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeployer_tx.go
270 lines (223 loc) · 7.65 KB
/
deployer_tx.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
package deployer
import (
"context"
"crypto/ecdsa"
"math/big"
"path/filepath"
"github.com/pkg/errors"
log "github.com/xlab/suplog"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
)
type ContractTxOpts struct {
From common.Address
FromPk *ecdsa.PrivateKey
SignerFn bind.SignerFn
SolSource string
ContractName string
Contract common.Address
Value *big.Int
BytecodeOnly bool
Await bool
CoverageAgent CoverageDataCollector
}
func (d *deployer) Tx(
ctx context.Context,
txOpts ContractTxOpts,
methodName string,
methodInputMapper AbiMethodInputMapperFunc,
) (txHash common.Hash, abiPackedCalldata []byte, err error) {
solSourceFullPath, _ := filepath.Abs(txOpts.SolSource)
contract := d.getCompiledContract(txOpts.ContractName, solSourceFullPath)
if contract == nil {
log.Errorln("contract compilation failed, check logs")
return noHash, nil, ErrCompilationFailed
}
contract.Address = txOpts.Contract
if txOpts.BytecodeOnly {
boundContract, err := BindContract(nil, contract)
if err != nil {
log.WithField("contract", txOpts.ContractName).WithError(err).Errorln("failed to bind contract")
return noHash, nil, err
}
method, ok := boundContract.ABI().Methods[methodName]
if !ok {
log.WithField("contract", txOpts.ContractName).Errorf("method not found: %s", methodName)
return noHash, nil, err
}
var mappedArgs []interface{}
if methodInputMapper != nil {
mappedArgs = methodInputMapper(method.Inputs)
}
abiPackedCalldata := append([]byte{}, method.ID...)
packedArgs, err := method.Inputs.PackValues(mappedArgs)
if err != nil {
err = errors.Wrap(err, "failed to ABI-encode method args")
return noHash, nil, err
}
abiPackedCalldata = append(abiPackedCalldata, packedArgs...)
return noHash, abiPackedCalldata, nil
}
client, err := d.Backend()
if err != nil {
return noHash, nil, err
}
chainCtx, cancelFn := context.WithTimeout(context.Background(), d.options.RPCTimeout)
defer cancelFn()
chainId, err := client.ChainID(chainCtx)
if err != nil {
log.WithError(err).Errorln("failed get valid chain ID")
return noHash, nil, ErrNoChainID
}
nonceCtx, cancelFn := context.WithTimeout(context.Background(), d.options.RPCTimeout)
defer cancelFn()
nonce, err := client.PendingNonceAt(nonceCtx, txOpts.From)
if err != nil {
log.WithField("from", txOpts.From.Hex()).WithError(err).Errorln("failed to get most recent nonce")
return noHash, nil, ErrNoNonce
}
boundContract, err := BindContract(client.Client, contract)
if err != nil {
log.WithField("contract", txOpts.ContractName).WithError(err).Errorln("failed to bind contract")
return noHash, nil, err
}
callCtx, cancelFn := context.WithTimeout(context.Background(), d.options.CallTimeout)
defer cancelFn()
var coverageEventABI abi.Event
var coverageTopic common.Hash
if d.options.EnableCoverage {
_, coverageEventABI, err = d.GetCoverageEventInfo(callCtx, txOpts.From, contract.Name, contract.Address)
if err != ErrNoCoverage {
if err != nil {
return noHash, nil, err
}
coverageTopic = coverageEventABI.ID
if txOpts.CoverageAgent != nil {
if err := txOpts.CoverageAgent.LoadContract(contract); err != nil {
log.WithError(err).Errorln("failed to open referenced dependecies for coverage reporting")
}
for _, statement := range contract.Statements {
if statement[0] < 0 || statement[1] < 0 || statement[2] < 0 {
continue
}
txOpts.CoverageAgent.AddStatement(contract.Name,
uint64(statement[0]),
uint64(statement[1]),
uint64(statement[2]),
)
}
}
}
}
method, ok := boundContract.ABI().Methods[methodName]
if !ok {
log.WithField("contract", txOpts.ContractName).Errorf("method not found: %s", methodName)
return noHash, nil, err
}
var mappedArgs []interface{}
if methodInputMapper != nil {
mappedArgs = methodInputMapper(method.Inputs)
}
boundContract.SetTransact(getTransactFn(client, contract.Address, &txHash))
txCtx, cancelFn := context.WithTimeout(context.Background(), d.options.RPCTimeout)
defer cancelFn()
var signerFn bind.SignerFn
if txOpts.SignerFn != nil {
signerFn = txOpts.SignerFn
} else {
signerFn, err = getSignerFn(d.options.SignerType, chainId, txOpts.From, txOpts.FromPk)
if err != nil {
log.WithError(err).Errorln("failed to get signer function")
return noHash, nil, err
}
}
ethTxOpts := &bind.TransactOpts{
From: txOpts.From,
Nonce: big.NewInt(int64(nonce)),
Signer: signerFn,
Value: txOpts.Value,
GasPrice: d.options.GasPrice,
GasLimit: d.options.GasLimit,
Context: txCtx,
}
txData, err := boundContract.Transact(ethTxOpts, methodName, mappedArgs...)
if err != nil {
if hasCoverageReport(err) {
if txOpts.CoverageAgent != nil {
coverageReportErr := txOpts.CoverageAgent.CollectCoverageRevert(contract.Name, err)
if coverageReportErr != nil {
log.WithError(coverageReportErr).Warningln("failed to collect coverage revert event")
}
}
err = trimCoverageReport(err)
}
log.WithError(err).Errorln("failed to send transaction")
return txHash, nil, err
}
if txOpts.Await || (d.options.EnableCoverage && txOpts.CoverageAgent != nil) {
awaitCtx, cancelFn := context.WithTimeout(context.Background(), d.options.TxTimeout)
defer cancelFn()
log.WithField("contract", contract.Address.Hex()).Debugln("awaiting tx", txHash.Hex())
blockNum, err := awaitTx(awaitCtx, client, txHash)
if err == ErrTransactionReverted {
// attempt to get reason
reason, err := getRevertReason(ctx, txOpts.From, contract.Address, client, txData.Data(), blockNum)
if err == nil && len(reason) > 0 {
err = errors.New(reason)
if hasCoverageReport(err) {
if txOpts.CoverageAgent != nil {
coverageReportErr := txOpts.CoverageAgent.CollectCoverageRevert(contract.Name, err)
if coverageReportErr != nil {
log.WithError(coverageReportErr).Warningln("failed to collect coverage revert event")
}
}
err = trimCoverageReport(err)
}
return txHash, nil, err
} else if err != nil {
log.WithError(err).Warningln("failed to get revert reason")
return txHash, nil, err
}
} else if err != nil {
if hasCoverageReport(err) {
if txOpts.CoverageAgent != nil {
coverageReportErr := txOpts.CoverageAgent.CollectCoverageRevert(contract.Name, err)
if coverageReportErr != nil {
log.WithError(coverageReportErr).Warningln("failed to collect coverage revert event")
}
}
err = trimCoverageReport(err)
}
return txHash, nil, err
}
}
if d.options.EnableCoverage && txOpts.CoverageAgent != nil && txHash != noHash {
callCtx, cancelFn = context.WithTimeout(context.Background(), d.options.CallTimeout)
defer cancelFn()
callLog := log.WithField("txHash", txHash.Hex())
receipt, err := client.TransactionReceipt(callCtx, txHash)
if err != nil {
if err == ethereum.NotFound {
callLog.Errorln("unable to collect coverage: transaction not found")
return txHash, nil, ErrTxNotFound
}
callLog.WithError(err).Errorln("failed to get transaction receipt")
return txHash, nil, err
}
for _, ethLog := range receipt.Logs {
if ethLog == nil || len(ethLog.Topics) == 0 {
continue
} else if ethLog.Topics[0] == coverageTopic {
if txOpts.CoverageAgent != nil {
if err := txOpts.CoverageAgent.CollectCoverageEvent(contract.Name, coverageEventABI, ethLog); err != nil {
log.WithError(err).WithField("contract", contract.Name).Warningln("failed to collect coverage event from contract")
}
}
continue
}
}
}
return txHash, nil, err
}