-
Notifications
You must be signed in to change notification settings - Fork 501
/
begin_sponsoring_future_reserves.go
61 lines (52 loc) · 2.12 KB
/
begin_sponsoring_future_reserves.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
//lint:file-ignore U1001 Ignore all unused code, staticcheck doesn't understand testify/suite
package txnbuild
import (
"github.com/stellar/go/support/errors"
"github.com/stellar/go/xdr"
)
// BeginSponsoringFutureReserves represents the Stellar begin sponsoring future reserves operation. See
// https://developers.stellar.org/docs/start/list-of-operations/
type BeginSponsoringFutureReserves struct {
SponsoredID string
SourceAccount string
}
// BuildXDR for BeginSponsoringFutureReserves returns a fully configured XDR Operation.
func (bs *BeginSponsoringFutureReserves) BuildXDR() (xdr.Operation, error) {
xdrOp := xdr.BeginSponsoringFutureReservesOp{}
err := xdrOp.SponsoredId.SetAddress(bs.SponsoredID)
if err != nil {
return xdr.Operation{}, errors.Wrap(err, "failed to set sponsored id address")
}
opType := xdr.OperationTypeBeginSponsoringFutureReserves
body, err := xdr.NewOperationBody(opType, xdrOp)
if err != nil {
return xdr.Operation{}, errors.Wrap(err, "failed to build XDR OperationBody")
}
op := xdr.Operation{Body: body}
SetOpSourceAccount(&op, bs.SourceAccount)
return op, nil
}
// FromXDR for BeginSponsoringFutureReserves initializes the txnbuild struct from the corresponding xdr Operation.
func (bs *BeginSponsoringFutureReserves) FromXDR(xdrOp xdr.Operation) error {
result, ok := xdrOp.Body.GetBeginSponsoringFutureReservesOp()
if !ok {
return errors.New("error parsing begin_sponsoring_future_reserves operation from xdr")
}
bs.SourceAccount = accountFromXDR(xdrOp.SourceAccount)
bs.SponsoredID = result.SponsoredId.Address()
return nil
}
// Validate for BeginSponsoringFutureReserves validates the required struct fields. It returns an error if any of the fields are
// invalid. Otherwise, it returns nil.
func (bs *BeginSponsoringFutureReserves) Validate() error {
err := validateStellarPublicKey(bs.SponsoredID)
if err != nil {
return NewValidationError("SponsoredID", err.Error())
}
return nil
}
// GetSourceAccount returns the source account of the operation, or the empty string if not
// set.
func (bs *BeginSponsoringFutureReserves) GetSourceAccount() string {
return bs.SourceAccount
}