forked from ava-labs/avalanchego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport_tx.go
211 lines (184 loc) · 5.55 KB
/
export_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
// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package platformvm
import (
"errors"
"fmt"
"github.com/ava-labs/avalanchego/chains/atomic"
"github.com/ava-labs/avalanchego/codec"
"github.com/ava-labs/avalanchego/database"
"github.com/ava-labs/avalanchego/ids"
"github.com/ava-labs/avalanchego/snow"
"github.com/ava-labs/avalanchego/utils/crypto"
"github.com/ava-labs/avalanchego/vms/components/avax"
"github.com/ava-labs/avalanchego/vms/secp256k1fx"
safemath "github.com/ava-labs/avalanchego/utils/math"
)
var (
errNoExportOutputs = errors.New("no export outputs")
errOutputsNotSorted = errors.New("outputs not sorted")
errOverflowExport = errors.New("overflow when computing export amount + txFee")
errWrongChainID = errors.New("tx has wrong chain ID")
_ UnsignedAtomicTx = &UnsignedExportTx{}
)
// UnsignedExportTx is an unsigned ExportTx
type UnsignedExportTx struct {
BaseTx `serialize:"true"`
// Which chain to send the funds to
DestinationChain ids.ID `serialize:"true" json:"destinationChain"`
// Outputs that are exported to the chain
ExportedOutputs []*avax.TransferableOutput `serialize:"true" json:"exportedOutputs"`
}
// InputUTXOs returns an empty set
func (tx *UnsignedExportTx) InputUTXOs() ids.Set { return ids.Set{} }
// Verify this transaction is well-formed
func (tx *UnsignedExportTx) Verify(
avmID ids.ID,
ctx *snow.Context,
c codec.Manager,
feeAmount uint64,
feeAssetID ids.ID,
) error {
switch {
case tx == nil:
return errNilTx
case tx.syntacticallyVerified: // already passed syntactic verification
return nil
case tx.DestinationChain != avmID:
// TODO: remove this check if we allow for P->C swaps
return errWrongChainID
case len(tx.ExportedOutputs) == 0:
return errNoExportOutputs
}
if err := tx.BaseTx.Verify(ctx, c); err != nil {
return err
}
for _, out := range tx.ExportedOutputs {
if err := out.Verify(); err != nil {
return fmt.Errorf("output failed verification: %w", err)
}
if _, ok := out.Output().(*StakeableLockOut); ok {
return errWrongLocktime
}
}
if !avax.IsSortedTransferableOutputs(tx.ExportedOutputs, Codec) {
return errOutputsNotSorted
}
tx.syntacticallyVerified = true
return nil
}
// SemanticVerify this transaction is valid.
func (tx *UnsignedExportTx) SemanticVerify(
vm *VM,
db database.Database,
stx *Tx,
) TxError {
if err := tx.Verify(vm.Ctx.XChainID, vm.Ctx, vm.codec, vm.txFee, vm.Ctx.AVAXAssetID); err != nil {
return permError{err}
}
outs := make([]*avax.TransferableOutput, len(tx.Outs)+len(tx.ExportedOutputs))
copy(outs, tx.Outs)
copy(outs[len(tx.Outs):], tx.ExportedOutputs)
// Verify the flowcheck
if err := vm.semanticVerifySpend(db, tx, tx.Ins, outs, stx.Creds, vm.txFee, vm.Ctx.AVAXAssetID); err != nil {
switch err.(type) {
case permError:
return permError{
fmt.Errorf("failed semanticVerifySpend: %w", err),
}
default:
return tempError{
fmt.Errorf("failed semanticVerifySpend: %w", err),
}
}
}
txID := tx.ID()
// Consume the UTXOS
if err := vm.consumeInputs(db, tx.Ins); err != nil {
return tempError{
fmt.Errorf("failed to consume inputs: %w", err),
}
}
// Produce the UTXOS
if err := vm.produceOutputs(db, txID, tx.Outs); err != nil {
return tempError{
fmt.Errorf("failed to produce outputs: %w", err),
}
}
return nil
}
// Accept this transaction.
func (tx *UnsignedExportTx) Accept(ctx *snow.Context, batch database.Batch) error {
txID := tx.ID()
elems := make([]*atomic.Element, len(tx.ExportedOutputs))
for i, out := range tx.ExportedOutputs {
utxo := &avax.UTXO{
UTXOID: avax.UTXOID{
TxID: txID,
OutputIndex: uint32(len(tx.Outs) + i),
},
Asset: avax.Asset{ID: out.AssetID()},
Out: out.Out,
}
utxoBytes, err := Codec.Marshal(codecVersion, utxo)
if err != nil {
return fmt.Errorf("failed to marshal UTXO: %w", err)
}
utxoID := utxo.InputID()
elem := &atomic.Element{
Key: utxoID[:],
Value: utxoBytes,
}
if out, ok := utxo.Out.(avax.Addressable); ok {
elem.Traits = out.Addresses()
}
elems[i] = elem
}
return ctx.SharedMemory.Put(tx.DestinationChain, elems, batch)
}
// Create a new transaction
func (vm *VM) newExportTx(
amount uint64, // Amount of tokens to export
chainID ids.ID, // Chain to send the UTXOs to
to ids.ShortID, // Address of chain recipient
keys []*crypto.PrivateKeySECP256K1R, // Pay the fee and provide the tokens
changeAddr ids.ShortID, // Address to send change to, if there is any
) (*Tx, error) {
if vm.Ctx.XChainID != chainID {
return nil, errWrongChainID
}
toBurn, err := safemath.Add64(amount, vm.txFee)
if err != nil {
return nil, errOverflowExport
}
ins, outs, _, signers, err := vm.stake(vm.DB, keys, 0, toBurn, changeAddr)
if err != nil {
return nil, fmt.Errorf("couldn't generate tx inputs/outputs: %w", err)
}
// Create the transaction
utx := &UnsignedExportTx{
BaseTx: BaseTx{BaseTx: avax.BaseTx{
NetworkID: vm.Ctx.NetworkID,
BlockchainID: vm.Ctx.ChainID,
Ins: ins,
Outs: outs, // Non-exported outputs
}},
DestinationChain: chainID,
ExportedOutputs: []*avax.TransferableOutput{{ // Exported to X-Chain
Asset: avax.Asset{ID: vm.Ctx.AVAXAssetID},
Out: &secp256k1fx.TransferOutput{
Amt: amount,
OutputOwners: secp256k1fx.OutputOwners{
Locktime: 0,
Threshold: 1,
Addrs: []ids.ShortID{to},
},
},
}},
}
tx := &Tx{UnsignedTx: utx}
if err := tx.Sign(vm.codec, signers); err != nil {
return nil, err
}
return tx, utx.Verify(vm.Ctx.XChainID, vm.Ctx, vm.codec, vm.txFee, vm.Ctx.AVAXAssetID)
}