-
Notifications
You must be signed in to change notification settings - Fork 672
/
backend.go
102 lines (86 loc) · 2.26 KB
/
backend.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
// Copyright (C) 2019-2022, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package x
import (
"fmt"
stdcontext "context"
"github.com/ava-labs/avalanchego/ids"
"github.com/ava-labs/avalanchego/vms/avm/txs"
"github.com/ava-labs/avalanchego/vms/components/avax"
)
var _ Backend = (*backend)(nil)
type ChainUTXOs interface {
AddUTXO(ctx stdcontext.Context, destinationChainID ids.ID, utxo *avax.UTXO) error
RemoveUTXO(ctx stdcontext.Context, sourceChainID, utxoID ids.ID) error
UTXOs(ctx stdcontext.Context, sourceChainID ids.ID) ([]*avax.UTXO, error)
GetUTXO(ctx stdcontext.Context, sourceChainID, utxoID ids.ID) (*avax.UTXO, error)
}
// Backend defines the full interface required to support an X-chain wallet.
type Backend interface {
ChainUTXOs
BuilderBackend
SignerBackend
AcceptTx(ctx stdcontext.Context, tx *txs.Tx) error
}
type backend struct {
Context
ChainUTXOs
chainID ids.ID
}
func NewBackend(ctx Context, chainID ids.ID, utxos ChainUTXOs) Backend {
return &backend{
Context: ctx,
ChainUTXOs: utxos,
chainID: chainID,
}
}
// TODO: implement txs.Visitor here
func (b *backend) AcceptTx(ctx stdcontext.Context, tx *txs.Tx) error {
switch utx := tx.Unsigned.(type) {
case *txs.BaseTx, *txs.CreateAssetTx, *txs.OperationTx:
case *txs.ImportTx:
for _, input := range utx.ImportedIns {
utxoID := input.UTXOID.InputID()
if err := b.RemoveUTXO(ctx, utx.SourceChain, utxoID); err != nil {
return err
}
}
case *txs.ExportTx:
txID := tx.ID()
for i, out := range utx.ExportedOuts {
err := b.AddUTXO(
ctx,
utx.DestinationChain,
&avax.UTXO{
UTXOID: avax.UTXOID{
TxID: txID,
OutputIndex: uint32(len(utx.Outs) + i),
},
Asset: avax.Asset{ID: out.AssetID()},
Out: out.Out,
},
)
if err != nil {
return err
}
}
default:
return fmt.Errorf("%w: %T", errUnknownTxType, tx.Unsigned)
}
inputUTXOs := tx.Unsigned.InputUTXOs()
for _, utxoID := range inputUTXOs {
if utxoID.Symbol {
continue
}
if err := b.RemoveUTXO(ctx, b.chainID, utxoID.InputID()); err != nil {
return err
}
}
outputUTXOs := tx.UTXOs()
for _, utxo := range outputUTXOs {
if err := b.AddUTXO(ctx, b.chainID, utxo); err != nil {
return err
}
}
return nil
}