rippleapi

package
v1.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 16, 2022 License: MIT Imports: 14 Imported by: 0

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var (
	ErrInvalidLengthAccount        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowAccount          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupAccount = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthAddress        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowAddress          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupAddress = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTransaction        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTransaction          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTransaction = fmt.Errorf("proto: unexpected end of group")
)
View Source
var EnumTransactionType_name = map[int32]string{
	0:  "TX_ACCOUNT_SET",
	1:  "TX_ACCOUNT_DELETE",
	2:  "TX_CHECK_CANCEL",
	3:  "TX_CHECK_CASH",
	4:  "TX_CHECK_CREATE",
	5:  "TX_DEPOSIT_PREAUTH",
	6:  "TX_ESCROW_CANCEL",
	7:  "TX_ESCROW_CREATE",
	8:  "TX_ESCROW_FINISH",
	9:  "TX_OFFER_CANCEL",
	10: "TX_OFFER_CREATE",
	11: "TX_PAYMENT",
	12: "TX_PAYMENT_CHANNEL_CLAIM",
	13: "TX_PAYMENT_CHANNEL_CREATE",
	14: "TX_PAYMENT_CHANNEL_FUND",
	15: "TX_SET_REGULAR_KEY",
	16: "TX_SINGER_LIST_SET",
	17: "TX_TRUST_SET",
}
View Source
var EnumTransactionType_value = map[string]int32{
	"TX_ACCOUNT_SET":            0,
	"TX_ACCOUNT_DELETE":         1,
	"TX_CHECK_CANCEL":           2,
	"TX_CHECK_CASH":             3,
	"TX_CHECK_CREATE":           4,
	"TX_DEPOSIT_PREAUTH":        5,
	"TX_ESCROW_CANCEL":          6,
	"TX_ESCROW_CREATE":          7,
	"TX_ESCROW_FINISH":          8,
	"TX_OFFER_CANCEL":           9,
	"TX_OFFER_CREATE":           10,
	"TX_PAYMENT":                11,
	"TX_PAYMENT_CHANNEL_CLAIM":  12,
	"TX_PAYMENT_CHANNEL_CREATE": 13,
	"TX_PAYMENT_CHANNEL_FUND":   14,
	"TX_SET_REGULAR_KEY":        15,
	"TX_SINGER_LIST_SET":        16,
	"TX_TRUST_SET":              17,
}

Functions ¶

func RegisterRippleAccountAPIServer ¶

func RegisterRippleAccountAPIServer(s *grpc.Server, srv RippleAccountAPIServer)

func RegisterRippleAddressAPIServer ¶

func RegisterRippleAddressAPIServer(s *grpc.Server, srv RippleAddressAPIServer)

func RegisterRippleTransactionAPIServer ¶

func RegisterRippleTransactionAPIServer(s *grpc.Server, srv RippleTransactionAPIServer)

Types ¶

type EnumTransactionType ¶

type EnumTransactionType int32
const (
	TX_ACCOUNT_SET            EnumTransactionType = 0
	TX_ACCOUNT_DELETE         EnumTransactionType = 1
	TX_CHECK_CANCEL           EnumTransactionType = 2
	TX_CHECK_CASH             EnumTransactionType = 3
	TX_CHECK_CREATE           EnumTransactionType = 4
	TX_DEPOSIT_PREAUTH        EnumTransactionType = 5
	TX_ESCROW_CANCEL          EnumTransactionType = 6
	TX_ESCROW_CREATE          EnumTransactionType = 7
	TX_ESCROW_FINISH          EnumTransactionType = 8
	TX_OFFER_CANCEL           EnumTransactionType = 9
	TX_OFFER_CREATE           EnumTransactionType = 10
	TX_PAYMENT                EnumTransactionType = 11
	TX_PAYMENT_CHANNEL_CLAIM  EnumTransactionType = 12
	TX_PAYMENT_CHANNEL_CREATE EnumTransactionType = 13
	TX_PAYMENT_CHANNEL_FUND   EnumTransactionType = 14
	TX_SET_REGULAR_KEY        EnumTransactionType = 15
	TX_SINGER_LIST_SET        EnumTransactionType = 16
	TX_TRUST_SET              EnumTransactionType = 17
)

func (EnumTransactionType) EnumDescriptor ¶

func (EnumTransactionType) EnumDescriptor() ([]byte, []int)

func (EnumTransactionType) String ¶

func (x EnumTransactionType) String() string

type Instructions ¶

type Instructions struct {
	Fee                    string `protobuf:"bytes,1,opt,name=fee,proto3" json:"fee,omitempty"`
	MaxFee                 string `protobuf:"bytes,2,opt,name=maxFee,proto3" json:"maxFee,omitempty"`
	MaxLedgerVersion       uint64 `protobuf:"varint,3,opt,name=maxLedgerVersion,proto3" json:"maxLedgerVersion,omitempty"`
	MaxLedgerVersionOffset uint64 `protobuf:"varint,4,opt,name=maxLedgerVersionOffset,proto3" json:"maxLedgerVersionOffset,omitempty"`
	Sequence               uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
	SignersCount           uint64 `protobuf:"varint,6,opt,name=signersCount,proto3" json:"signersCount,omitempty"`
}

func (*Instructions) Descriptor ¶

func (*Instructions) Descriptor() ([]byte, []int)

func (*Instructions) Equal ¶

func (this *Instructions) Equal(that interface{}) bool

func (*Instructions) GetFee ¶

func (m *Instructions) GetFee() string

func (*Instructions) GetMaxFee ¶

func (m *Instructions) GetMaxFee() string

func (*Instructions) GetMaxLedgerVersion ¶

func (m *Instructions) GetMaxLedgerVersion() uint64

func (*Instructions) GetMaxLedgerVersionOffset ¶

func (m *Instructions) GetMaxLedgerVersionOffset() uint64

func (*Instructions) GetSequence ¶

func (m *Instructions) GetSequence() uint64

func (*Instructions) GetSignersCount ¶

func (m *Instructions) GetSignersCount() uint64

func (*Instructions) GoString ¶

func (this *Instructions) GoString() string

func (*Instructions) Marshal ¶

func (m *Instructions) Marshal() (dAtA []byte, err error)

func (*Instructions) MarshalTo ¶

func (m *Instructions) MarshalTo(dAtA []byte) (int, error)

func (*Instructions) MarshalToSizedBuffer ¶

func (m *Instructions) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Instructions) ProtoMessage ¶

func (*Instructions) ProtoMessage()

func (*Instructions) Reset ¶

func (m *Instructions) Reset()

func (*Instructions) Size ¶

func (m *Instructions) Size() (n int)

func (*Instructions) String ¶

func (this *Instructions) String() string

func (*Instructions) Unmarshal ¶

func (m *Instructions) Unmarshal(dAtA []byte) error

func (*Instructions) XXX_DiscardUnknown ¶

func (m *Instructions) XXX_DiscardUnknown()

func (*Instructions) XXX_Marshal ¶

func (m *Instructions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Instructions) XXX_Merge ¶

func (m *Instructions) XXX_Merge(src proto.Message)

func (*Instructions) XXX_Size ¶

func (m *Instructions) XXX_Size() int

func (*Instructions) XXX_Unmarshal ¶

func (m *Instructions) XXX_Unmarshal(b []byte) error

type RequestCombineTransaction ¶

type RequestCombineTransaction struct {
	SignedTransactions []string `protobuf:"bytes,1,rep,name=signedTransactions,proto3" json:"signedTransactions,omitempty"`
}

func (*RequestCombineTransaction) Descriptor ¶

func (*RequestCombineTransaction) Descriptor() ([]byte, []int)

func (*RequestCombineTransaction) Equal ¶

func (this *RequestCombineTransaction) Equal(that interface{}) bool

func (*RequestCombineTransaction) GetSignedTransactions ¶

func (m *RequestCombineTransaction) GetSignedTransactions() []string

func (*RequestCombineTransaction) GoString ¶

func (this *RequestCombineTransaction) GoString() string

func (*RequestCombineTransaction) Marshal ¶

func (m *RequestCombineTransaction) Marshal() (dAtA []byte, err error)

func (*RequestCombineTransaction) MarshalTo ¶

func (m *RequestCombineTransaction) MarshalTo(dAtA []byte) (int, error)

func (*RequestCombineTransaction) MarshalToSizedBuffer ¶

func (m *RequestCombineTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RequestCombineTransaction) ProtoMessage ¶

func (*RequestCombineTransaction) ProtoMessage()

func (*RequestCombineTransaction) Reset ¶

func (m *RequestCombineTransaction) Reset()

func (*RequestCombineTransaction) Size ¶

func (m *RequestCombineTransaction) Size() (n int)

func (*RequestCombineTransaction) String ¶

func (this *RequestCombineTransaction) String() string

func (*RequestCombineTransaction) Unmarshal ¶

func (m *RequestCombineTransaction) Unmarshal(dAtA []byte) error

func (*RequestCombineTransaction) XXX_DiscardUnknown ¶

func (m *RequestCombineTransaction) XXX_DiscardUnknown()

func (*RequestCombineTransaction) XXX_Marshal ¶

func (m *RequestCombineTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestCombineTransaction) XXX_Merge ¶

func (m *RequestCombineTransaction) XXX_Merge(src proto.Message)

func (*RequestCombineTransaction) XXX_Size ¶

func (m *RequestCombineTransaction) XXX_Size() int

func (*RequestCombineTransaction) XXX_Unmarshal ¶

func (m *RequestCombineTransaction) XXX_Unmarshal(b []byte) error

type RequestGetAccountInfo ¶

type RequestGetAccountInfo struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*RequestGetAccountInfo) Descriptor ¶

func (*RequestGetAccountInfo) Descriptor() ([]byte, []int)

func (*RequestGetAccountInfo) Equal ¶

func (this *RequestGetAccountInfo) Equal(that interface{}) bool

func (*RequestGetAccountInfo) GetAddress ¶

func (m *RequestGetAccountInfo) GetAddress() string

func (*RequestGetAccountInfo) GoString ¶

func (this *RequestGetAccountInfo) GoString() string

func (*RequestGetAccountInfo) Marshal ¶

func (m *RequestGetAccountInfo) Marshal() (dAtA []byte, err error)

func (*RequestGetAccountInfo) MarshalTo ¶

func (m *RequestGetAccountInfo) MarshalTo(dAtA []byte) (int, error)

func (*RequestGetAccountInfo) MarshalToSizedBuffer ¶

func (m *RequestGetAccountInfo) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RequestGetAccountInfo) ProtoMessage ¶

func (*RequestGetAccountInfo) ProtoMessage()

func (*RequestGetAccountInfo) Reset ¶

func (m *RequestGetAccountInfo) Reset()

func (*RequestGetAccountInfo) Size ¶

func (m *RequestGetAccountInfo) Size() (n int)

func (*RequestGetAccountInfo) String ¶

func (this *RequestGetAccountInfo) String() string

func (*RequestGetAccountInfo) Unmarshal ¶

func (m *RequestGetAccountInfo) Unmarshal(dAtA []byte) error

func (*RequestGetAccountInfo) XXX_DiscardUnknown ¶

func (m *RequestGetAccountInfo) XXX_DiscardUnknown()

func (*RequestGetAccountInfo) XXX_Marshal ¶

func (m *RequestGetAccountInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestGetAccountInfo) XXX_Merge ¶

func (m *RequestGetAccountInfo) XXX_Merge(src proto.Message)

func (*RequestGetAccountInfo) XXX_Size ¶

func (m *RequestGetAccountInfo) XXX_Size() int

func (*RequestGetAccountInfo) XXX_Unmarshal ¶

func (m *RequestGetAccountInfo) XXX_Unmarshal(b []byte) error

type RequestGetTransaction ¶

type RequestGetTransaction struct {
	TxID             string `protobuf:"bytes,1,opt,name=txID,proto3" json:"txID,omitempty"`
	MinLedgerVersion uint64 `protobuf:"varint,2,opt,name=minLedgerVersion,proto3" json:"minLedgerVersion,omitempty"`
}

func (*RequestGetTransaction) Descriptor ¶

func (*RequestGetTransaction) Descriptor() ([]byte, []int)

func (*RequestGetTransaction) Equal ¶

func (this *RequestGetTransaction) Equal(that interface{}) bool

func (*RequestGetTransaction) GetMinLedgerVersion ¶

func (m *RequestGetTransaction) GetMinLedgerVersion() uint64

func (*RequestGetTransaction) GetTxID ¶

func (m *RequestGetTransaction) GetTxID() string

func (*RequestGetTransaction) GoString ¶

func (this *RequestGetTransaction) GoString() string

func (*RequestGetTransaction) Marshal ¶

func (m *RequestGetTransaction) Marshal() (dAtA []byte, err error)

func (*RequestGetTransaction) MarshalTo ¶

func (m *RequestGetTransaction) MarshalTo(dAtA []byte) (int, error)

func (*RequestGetTransaction) MarshalToSizedBuffer ¶

func (m *RequestGetTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RequestGetTransaction) ProtoMessage ¶

func (*RequestGetTransaction) ProtoMessage()

func (*RequestGetTransaction) Reset ¶

func (m *RequestGetTransaction) Reset()

func (*RequestGetTransaction) Size ¶

func (m *RequestGetTransaction) Size() (n int)

func (*RequestGetTransaction) String ¶

func (this *RequestGetTransaction) String() string

func (*RequestGetTransaction) Unmarshal ¶

func (m *RequestGetTransaction) Unmarshal(dAtA []byte) error

func (*RequestGetTransaction) XXX_DiscardUnknown ¶

func (m *RequestGetTransaction) XXX_DiscardUnknown()

func (*RequestGetTransaction) XXX_Marshal ¶

func (m *RequestGetTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestGetTransaction) XXX_Merge ¶

func (m *RequestGetTransaction) XXX_Merge(src proto.Message)

func (*RequestGetTransaction) XXX_Size ¶

func (m *RequestGetTransaction) XXX_Size() int

func (*RequestGetTransaction) XXX_Unmarshal ¶

func (m *RequestGetTransaction) XXX_Unmarshal(b []byte) error

type RequestIsValidAddress ¶

type RequestIsValidAddress struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*RequestIsValidAddress) Descriptor ¶

func (*RequestIsValidAddress) Descriptor() ([]byte, []int)

func (*RequestIsValidAddress) Equal ¶

func (this *RequestIsValidAddress) Equal(that interface{}) bool

func (*RequestIsValidAddress) GetAddress ¶

func (m *RequestIsValidAddress) GetAddress() string

func (*RequestIsValidAddress) GoString ¶

func (this *RequestIsValidAddress) GoString() string

func (*RequestIsValidAddress) Marshal ¶

func (m *RequestIsValidAddress) Marshal() (dAtA []byte, err error)

func (*RequestIsValidAddress) MarshalTo ¶

func (m *RequestIsValidAddress) MarshalTo(dAtA []byte) (int, error)

func (*RequestIsValidAddress) MarshalToSizedBuffer ¶

func (m *RequestIsValidAddress) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RequestIsValidAddress) ProtoMessage ¶

func (*RequestIsValidAddress) ProtoMessage()

func (*RequestIsValidAddress) Reset ¶

func (m *RequestIsValidAddress) Reset()

func (*RequestIsValidAddress) Size ¶

func (m *RequestIsValidAddress) Size() (n int)

func (*RequestIsValidAddress) String ¶

func (this *RequestIsValidAddress) String() string

func (*RequestIsValidAddress) Unmarshal ¶

func (m *RequestIsValidAddress) Unmarshal(dAtA []byte) error

func (*RequestIsValidAddress) XXX_DiscardUnknown ¶

func (m *RequestIsValidAddress) XXX_DiscardUnknown()

func (*RequestIsValidAddress) XXX_Marshal ¶

func (m *RequestIsValidAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestIsValidAddress) XXX_Merge ¶

func (m *RequestIsValidAddress) XXX_Merge(src proto.Message)

func (*RequestIsValidAddress) XXX_Size ¶

func (m *RequestIsValidAddress) XXX_Size() int

func (*RequestIsValidAddress) XXX_Unmarshal ¶

func (m *RequestIsValidAddress) XXX_Unmarshal(b []byte) error

type RequestPrepareTransaction ¶

type RequestPrepareTransaction struct {
	TxType        EnumTransactionType `` /* 127-byte string literal not displayed */
	SenderAccount string              `protobuf:"bytes,2,opt,name=senderAccount,proto3" json:"senderAccount,omitempty"`
	Amount        float64             `protobuf:"fixed64,3,opt,name=amount,proto3" json:"amount,omitempty"`
	//float amount = 3;
	ReceiverAccount string        `protobuf:"bytes,4,opt,name=receiverAccount,proto3" json:"receiverAccount,omitempty"`
	Instructions    *Instructions `protobuf:"bytes,5,opt,name=instructions,proto3" json:"instructions,omitempty"`
}

func (*RequestPrepareTransaction) Descriptor ¶

func (*RequestPrepareTransaction) Descriptor() ([]byte, []int)

func (*RequestPrepareTransaction) Equal ¶

func (this *RequestPrepareTransaction) Equal(that interface{}) bool

func (*RequestPrepareTransaction) GetAmount ¶

func (m *RequestPrepareTransaction) GetAmount() float64

func (*RequestPrepareTransaction) GetInstructions ¶

func (m *RequestPrepareTransaction) GetInstructions() *Instructions

func (*RequestPrepareTransaction) GetReceiverAccount ¶

func (m *RequestPrepareTransaction) GetReceiverAccount() string

func (*RequestPrepareTransaction) GetSenderAccount ¶

func (m *RequestPrepareTransaction) GetSenderAccount() string

func (*RequestPrepareTransaction) GetTxType ¶

func (*RequestPrepareTransaction) GoString ¶

func (this *RequestPrepareTransaction) GoString() string

func (*RequestPrepareTransaction) Marshal ¶

func (m *RequestPrepareTransaction) Marshal() (dAtA []byte, err error)

func (*RequestPrepareTransaction) MarshalTo ¶

func (m *RequestPrepareTransaction) MarshalTo(dAtA []byte) (int, error)

func (*RequestPrepareTransaction) MarshalToSizedBuffer ¶

func (m *RequestPrepareTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RequestPrepareTransaction) ProtoMessage ¶

func (*RequestPrepareTransaction) ProtoMessage()

func (*RequestPrepareTransaction) Reset ¶

func (m *RequestPrepareTransaction) Reset()

func (*RequestPrepareTransaction) Size ¶

func (m *RequestPrepareTransaction) Size() (n int)

func (*RequestPrepareTransaction) String ¶

func (this *RequestPrepareTransaction) String() string

func (*RequestPrepareTransaction) Unmarshal ¶

func (m *RequestPrepareTransaction) Unmarshal(dAtA []byte) error

func (*RequestPrepareTransaction) XXX_DiscardUnknown ¶

func (m *RequestPrepareTransaction) XXX_DiscardUnknown()

func (*RequestPrepareTransaction) XXX_Marshal ¶

func (m *RequestPrepareTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestPrepareTransaction) XXX_Merge ¶

func (m *RequestPrepareTransaction) XXX_Merge(src proto.Message)

func (*RequestPrepareTransaction) XXX_Size ¶

func (m *RequestPrepareTransaction) XXX_Size() int

func (*RequestPrepareTransaction) XXX_Unmarshal ¶

func (m *RequestPrepareTransaction) XXX_Unmarshal(b []byte) error

type RequestSignTransaction ¶

type RequestSignTransaction struct {
	TxJSON string `protobuf:"bytes,1,opt,name=txJSON,proto3" json:"txJSON,omitempty"`
	Secret string `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"`
}

func (*RequestSignTransaction) Descriptor ¶

func (*RequestSignTransaction) Descriptor() ([]byte, []int)

func (*RequestSignTransaction) Equal ¶

func (this *RequestSignTransaction) Equal(that interface{}) bool

func (*RequestSignTransaction) GetSecret ¶

func (m *RequestSignTransaction) GetSecret() string

func (*RequestSignTransaction) GetTxJSON ¶

func (m *RequestSignTransaction) GetTxJSON() string

func (*RequestSignTransaction) GoString ¶

func (this *RequestSignTransaction) GoString() string

func (*RequestSignTransaction) Marshal ¶

func (m *RequestSignTransaction) Marshal() (dAtA []byte, err error)

func (*RequestSignTransaction) MarshalTo ¶

func (m *RequestSignTransaction) MarshalTo(dAtA []byte) (int, error)

func (*RequestSignTransaction) MarshalToSizedBuffer ¶

func (m *RequestSignTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RequestSignTransaction) ProtoMessage ¶

func (*RequestSignTransaction) ProtoMessage()

func (*RequestSignTransaction) Reset ¶

func (m *RequestSignTransaction) Reset()

func (*RequestSignTransaction) Size ¶

func (m *RequestSignTransaction) Size() (n int)

func (*RequestSignTransaction) String ¶

func (this *RequestSignTransaction) String() string

func (*RequestSignTransaction) Unmarshal ¶

func (m *RequestSignTransaction) Unmarshal(dAtA []byte) error

func (*RequestSignTransaction) XXX_DiscardUnknown ¶

func (m *RequestSignTransaction) XXX_DiscardUnknown()

func (*RequestSignTransaction) XXX_Marshal ¶

func (m *RequestSignTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestSignTransaction) XXX_Merge ¶

func (m *RequestSignTransaction) XXX_Merge(src proto.Message)

func (*RequestSignTransaction) XXX_Size ¶

func (m *RequestSignTransaction) XXX_Size() int

func (*RequestSignTransaction) XXX_Unmarshal ¶

func (m *RequestSignTransaction) XXX_Unmarshal(b []byte) error

type RequestSubmitTransaction ¶

type RequestSubmitTransaction struct {
	TxBlob string `protobuf:"bytes,1,opt,name=txBlob,proto3" json:"txBlob,omitempty"`
}

func (*RequestSubmitTransaction) Descriptor ¶

func (*RequestSubmitTransaction) Descriptor() ([]byte, []int)

func (*RequestSubmitTransaction) Equal ¶

func (this *RequestSubmitTransaction) Equal(that interface{}) bool

func (*RequestSubmitTransaction) GetTxBlob ¶

func (m *RequestSubmitTransaction) GetTxBlob() string

func (*RequestSubmitTransaction) GoString ¶

func (this *RequestSubmitTransaction) GoString() string

func (*RequestSubmitTransaction) Marshal ¶

func (m *RequestSubmitTransaction) Marshal() (dAtA []byte, err error)

func (*RequestSubmitTransaction) MarshalTo ¶

func (m *RequestSubmitTransaction) MarshalTo(dAtA []byte) (int, error)

func (*RequestSubmitTransaction) MarshalToSizedBuffer ¶

func (m *RequestSubmitTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RequestSubmitTransaction) ProtoMessage ¶

func (*RequestSubmitTransaction) ProtoMessage()

func (*RequestSubmitTransaction) Reset ¶

func (m *RequestSubmitTransaction) Reset()

func (*RequestSubmitTransaction) Size ¶

func (m *RequestSubmitTransaction) Size() (n int)

func (*RequestSubmitTransaction) String ¶

func (this *RequestSubmitTransaction) String() string

func (*RequestSubmitTransaction) Unmarshal ¶

func (m *RequestSubmitTransaction) Unmarshal(dAtA []byte) error

func (*RequestSubmitTransaction) XXX_DiscardUnknown ¶

func (m *RequestSubmitTransaction) XXX_DiscardUnknown()

func (*RequestSubmitTransaction) XXX_Marshal ¶

func (m *RequestSubmitTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestSubmitTransaction) XXX_Merge ¶

func (m *RequestSubmitTransaction) XXX_Merge(src proto.Message)

func (*RequestSubmitTransaction) XXX_Size ¶

func (m *RequestSubmitTransaction) XXX_Size() int

func (*RequestSubmitTransaction) XXX_Unmarshal ¶

func (m *RequestSubmitTransaction) XXX_Unmarshal(b []byte) error

type ResponseCombineTransaction ¶

type ResponseCombineTransaction struct {
	SignedTransaction string `protobuf:"bytes,1,opt,name=signedTransaction,proto3" json:"signedTransaction,omitempty"`
	TxID              string `protobuf:"bytes,2,opt,name=txID,proto3" json:"txID,omitempty"`
}

func (*ResponseCombineTransaction) Descriptor ¶

func (*ResponseCombineTransaction) Descriptor() ([]byte, []int)

func (*ResponseCombineTransaction) Equal ¶

func (this *ResponseCombineTransaction) Equal(that interface{}) bool

func (*ResponseCombineTransaction) GetSignedTransaction ¶

func (m *ResponseCombineTransaction) GetSignedTransaction() string

func (*ResponseCombineTransaction) GetTxID ¶

func (m *ResponseCombineTransaction) GetTxID() string

func (*ResponseCombineTransaction) GoString ¶

func (this *ResponseCombineTransaction) GoString() string

func (*ResponseCombineTransaction) Marshal ¶

func (m *ResponseCombineTransaction) Marshal() (dAtA []byte, err error)

func (*ResponseCombineTransaction) MarshalTo ¶

func (m *ResponseCombineTransaction) MarshalTo(dAtA []byte) (int, error)

func (*ResponseCombineTransaction) MarshalToSizedBuffer ¶

func (m *ResponseCombineTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponseCombineTransaction) ProtoMessage ¶

func (*ResponseCombineTransaction) ProtoMessage()

func (*ResponseCombineTransaction) Reset ¶

func (m *ResponseCombineTransaction) Reset()

func (*ResponseCombineTransaction) Size ¶

func (m *ResponseCombineTransaction) Size() (n int)

func (*ResponseCombineTransaction) String ¶

func (this *ResponseCombineTransaction) String() string

func (*ResponseCombineTransaction) Unmarshal ¶

func (m *ResponseCombineTransaction) Unmarshal(dAtA []byte) error

func (*ResponseCombineTransaction) XXX_DiscardUnknown ¶

func (m *ResponseCombineTransaction) XXX_DiscardUnknown()

func (*ResponseCombineTransaction) XXX_Marshal ¶

func (m *ResponseCombineTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponseCombineTransaction) XXX_Merge ¶

func (m *ResponseCombineTransaction) XXX_Merge(src proto.Message)

func (*ResponseCombineTransaction) XXX_Size ¶

func (m *ResponseCombineTransaction) XXX_Size() int

func (*ResponseCombineTransaction) XXX_Unmarshal ¶

func (m *ResponseCombineTransaction) XXX_Unmarshal(b []byte) error

type ResponseGenerateAddress ¶

type ResponseGenerateAddress struct {
	XAddress       string `protobuf:"bytes,1,opt,name=xAddress,proto3" json:"xAddress,omitempty"`
	ClassicAddress string `protobuf:"bytes,2,opt,name=classicAddress,proto3" json:"classicAddress,omitempty"`
	Address        string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	Secret         string `protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty"`
}

func (*ResponseGenerateAddress) Descriptor ¶

func (*ResponseGenerateAddress) Descriptor() ([]byte, []int)

func (*ResponseGenerateAddress) Equal ¶

func (this *ResponseGenerateAddress) Equal(that interface{}) bool

func (*ResponseGenerateAddress) GetAddress ¶

func (m *ResponseGenerateAddress) GetAddress() string

func (*ResponseGenerateAddress) GetClassicAddress ¶

func (m *ResponseGenerateAddress) GetClassicAddress() string

func (*ResponseGenerateAddress) GetSecret ¶

func (m *ResponseGenerateAddress) GetSecret() string

func (*ResponseGenerateAddress) GetXAddress ¶

func (m *ResponseGenerateAddress) GetXAddress() string

func (*ResponseGenerateAddress) GoString ¶

func (this *ResponseGenerateAddress) GoString() string

func (*ResponseGenerateAddress) Marshal ¶

func (m *ResponseGenerateAddress) Marshal() (dAtA []byte, err error)

func (*ResponseGenerateAddress) MarshalTo ¶

func (m *ResponseGenerateAddress) MarshalTo(dAtA []byte) (int, error)

func (*ResponseGenerateAddress) MarshalToSizedBuffer ¶

func (m *ResponseGenerateAddress) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponseGenerateAddress) ProtoMessage ¶

func (*ResponseGenerateAddress) ProtoMessage()

func (*ResponseGenerateAddress) Reset ¶

func (m *ResponseGenerateAddress) Reset()

func (*ResponseGenerateAddress) Size ¶

func (m *ResponseGenerateAddress) Size() (n int)

func (*ResponseGenerateAddress) String ¶

func (this *ResponseGenerateAddress) String() string

func (*ResponseGenerateAddress) Unmarshal ¶

func (m *ResponseGenerateAddress) Unmarshal(dAtA []byte) error

func (*ResponseGenerateAddress) XXX_DiscardUnknown ¶

func (m *ResponseGenerateAddress) XXX_DiscardUnknown()

func (*ResponseGenerateAddress) XXX_Marshal ¶

func (m *ResponseGenerateAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponseGenerateAddress) XXX_Merge ¶

func (m *ResponseGenerateAddress) XXX_Merge(src proto.Message)

func (*ResponseGenerateAddress) XXX_Size ¶

func (m *ResponseGenerateAddress) XXX_Size() int

func (*ResponseGenerateAddress) XXX_Unmarshal ¶

func (m *ResponseGenerateAddress) XXX_Unmarshal(b []byte) error

type ResponseGenerateXAddress ¶

type ResponseGenerateXAddress struct {
	XAddress string `protobuf:"bytes,1,opt,name=xAddress,proto3" json:"xAddress,omitempty"`
	Secret   string `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"`
}

func (*ResponseGenerateXAddress) Descriptor ¶

func (*ResponseGenerateXAddress) Descriptor() ([]byte, []int)

func (*ResponseGenerateXAddress) Equal ¶

func (this *ResponseGenerateXAddress) Equal(that interface{}) bool

func (*ResponseGenerateXAddress) GetSecret ¶

func (m *ResponseGenerateXAddress) GetSecret() string

func (*ResponseGenerateXAddress) GetXAddress ¶

func (m *ResponseGenerateXAddress) GetXAddress() string

func (*ResponseGenerateXAddress) GoString ¶

func (this *ResponseGenerateXAddress) GoString() string

func (*ResponseGenerateXAddress) Marshal ¶

func (m *ResponseGenerateXAddress) Marshal() (dAtA []byte, err error)

func (*ResponseGenerateXAddress) MarshalTo ¶

func (m *ResponseGenerateXAddress) MarshalTo(dAtA []byte) (int, error)

func (*ResponseGenerateXAddress) MarshalToSizedBuffer ¶

func (m *ResponseGenerateXAddress) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponseGenerateXAddress) ProtoMessage ¶

func (*ResponseGenerateXAddress) ProtoMessage()

func (*ResponseGenerateXAddress) Reset ¶

func (m *ResponseGenerateXAddress) Reset()

func (*ResponseGenerateXAddress) Size ¶

func (m *ResponseGenerateXAddress) Size() (n int)

func (*ResponseGenerateXAddress) String ¶

func (this *ResponseGenerateXAddress) String() string

func (*ResponseGenerateXAddress) Unmarshal ¶

func (m *ResponseGenerateXAddress) Unmarshal(dAtA []byte) error

func (*ResponseGenerateXAddress) XXX_DiscardUnknown ¶

func (m *ResponseGenerateXAddress) XXX_DiscardUnknown()

func (*ResponseGenerateXAddress) XXX_Marshal ¶

func (m *ResponseGenerateXAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponseGenerateXAddress) XXX_Merge ¶

func (m *ResponseGenerateXAddress) XXX_Merge(src proto.Message)

func (*ResponseGenerateXAddress) XXX_Size ¶

func (m *ResponseGenerateXAddress) XXX_Size() int

func (*ResponseGenerateXAddress) XXX_Unmarshal ¶

func (m *ResponseGenerateXAddress) XXX_Unmarshal(b []byte) error

type ResponseGetAccountInfo ¶

type ResponseGetAccountInfo struct {
	Sequence                                  uint64 `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
	XrpBalance                                string `protobuf:"bytes,2,opt,name=xrpBalance,proto3" json:"xrpBalance,omitempty"`
	OwnerCount                                uint64 `protobuf:"varint,3,opt,name=ownerCount,proto3" json:"ownerCount,omitempty"`
	PreviousAffectingTransactionID            string `protobuf:"bytes,4,opt,name=previousAffectingTransactionID,proto3" json:"previousAffectingTransactionID,omitempty"`
	PreviousAffectingTransactionLedgerVersion uint64 `` /* 136-byte string literal not displayed */
}

func (*ResponseGetAccountInfo) Descriptor ¶

func (*ResponseGetAccountInfo) Descriptor() ([]byte, []int)

func (*ResponseGetAccountInfo) Equal ¶

func (this *ResponseGetAccountInfo) Equal(that interface{}) bool

func (*ResponseGetAccountInfo) GetOwnerCount ¶

func (m *ResponseGetAccountInfo) GetOwnerCount() uint64

func (*ResponseGetAccountInfo) GetPreviousAffectingTransactionID ¶

func (m *ResponseGetAccountInfo) GetPreviousAffectingTransactionID() string

func (*ResponseGetAccountInfo) GetPreviousAffectingTransactionLedgerVersion ¶

func (m *ResponseGetAccountInfo) GetPreviousAffectingTransactionLedgerVersion() uint64

func (*ResponseGetAccountInfo) GetSequence ¶

func (m *ResponseGetAccountInfo) GetSequence() uint64

func (*ResponseGetAccountInfo) GetXrpBalance ¶

func (m *ResponseGetAccountInfo) GetXrpBalance() string

func (*ResponseGetAccountInfo) GoString ¶

func (this *ResponseGetAccountInfo) GoString() string

func (*ResponseGetAccountInfo) Marshal ¶

func (m *ResponseGetAccountInfo) Marshal() (dAtA []byte, err error)

func (*ResponseGetAccountInfo) MarshalTo ¶

func (m *ResponseGetAccountInfo) MarshalTo(dAtA []byte) (int, error)

func (*ResponseGetAccountInfo) MarshalToSizedBuffer ¶

func (m *ResponseGetAccountInfo) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponseGetAccountInfo) ProtoMessage ¶

func (*ResponseGetAccountInfo) ProtoMessage()

func (*ResponseGetAccountInfo) Reset ¶

func (m *ResponseGetAccountInfo) Reset()

func (*ResponseGetAccountInfo) Size ¶

func (m *ResponseGetAccountInfo) Size() (n int)

func (*ResponseGetAccountInfo) String ¶

func (this *ResponseGetAccountInfo) String() string

func (*ResponseGetAccountInfo) Unmarshal ¶

func (m *ResponseGetAccountInfo) Unmarshal(dAtA []byte) error

func (*ResponseGetAccountInfo) XXX_DiscardUnknown ¶

func (m *ResponseGetAccountInfo) XXX_DiscardUnknown()

func (*ResponseGetAccountInfo) XXX_Marshal ¶

func (m *ResponseGetAccountInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponseGetAccountInfo) XXX_Merge ¶

func (m *ResponseGetAccountInfo) XXX_Merge(src proto.Message)

func (*ResponseGetAccountInfo) XXX_Size ¶

func (m *ResponseGetAccountInfo) XXX_Size() int

func (*ResponseGetAccountInfo) XXX_Unmarshal ¶

func (m *ResponseGetAccountInfo) XXX_Unmarshal(b []byte) error

type ResponseGetTransaction ¶

type ResponseGetTransaction struct {
	ResultJSONString string `protobuf:"bytes,1,opt,name=resultJSONString,proto3" json:"resultJSONString,omitempty"`
}

func (*ResponseGetTransaction) Descriptor ¶

func (*ResponseGetTransaction) Descriptor() ([]byte, []int)

func (*ResponseGetTransaction) Equal ¶

func (this *ResponseGetTransaction) Equal(that interface{}) bool

func (*ResponseGetTransaction) GetResultJSONString ¶

func (m *ResponseGetTransaction) GetResultJSONString() string

func (*ResponseGetTransaction) GoString ¶

func (this *ResponseGetTransaction) GoString() string

func (*ResponseGetTransaction) Marshal ¶

func (m *ResponseGetTransaction) Marshal() (dAtA []byte, err error)

func (*ResponseGetTransaction) MarshalTo ¶

func (m *ResponseGetTransaction) MarshalTo(dAtA []byte) (int, error)

func (*ResponseGetTransaction) MarshalToSizedBuffer ¶

func (m *ResponseGetTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponseGetTransaction) ProtoMessage ¶

func (*ResponseGetTransaction) ProtoMessage()

func (*ResponseGetTransaction) Reset ¶

func (m *ResponseGetTransaction) Reset()

func (*ResponseGetTransaction) Size ¶

func (m *ResponseGetTransaction) Size() (n int)

func (*ResponseGetTransaction) String ¶

func (this *ResponseGetTransaction) String() string

func (*ResponseGetTransaction) Unmarshal ¶

func (m *ResponseGetTransaction) Unmarshal(dAtA []byte) error

func (*ResponseGetTransaction) XXX_DiscardUnknown ¶

func (m *ResponseGetTransaction) XXX_DiscardUnknown()

func (*ResponseGetTransaction) XXX_Marshal ¶

func (m *ResponseGetTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponseGetTransaction) XXX_Merge ¶

func (m *ResponseGetTransaction) XXX_Merge(src proto.Message)

func (*ResponseGetTransaction) XXX_Size ¶

func (m *ResponseGetTransaction) XXX_Size() int

func (*ResponseGetTransaction) XXX_Unmarshal ¶

func (m *ResponseGetTransaction) XXX_Unmarshal(b []byte) error

type ResponseIsValidAddress ¶

type ResponseIsValidAddress struct {
	IsValid bool `protobuf:"varint,1,opt,name=isValid,proto3" json:"isValid,omitempty"`
}

func (*ResponseIsValidAddress) Descriptor ¶

func (*ResponseIsValidAddress) Descriptor() ([]byte, []int)

func (*ResponseIsValidAddress) Equal ¶

func (this *ResponseIsValidAddress) Equal(that interface{}) bool

func (*ResponseIsValidAddress) GetIsValid ¶

func (m *ResponseIsValidAddress) GetIsValid() bool

func (*ResponseIsValidAddress) GoString ¶

func (this *ResponseIsValidAddress) GoString() string

func (*ResponseIsValidAddress) Marshal ¶

func (m *ResponseIsValidAddress) Marshal() (dAtA []byte, err error)

func (*ResponseIsValidAddress) MarshalTo ¶

func (m *ResponseIsValidAddress) MarshalTo(dAtA []byte) (int, error)

func (*ResponseIsValidAddress) MarshalToSizedBuffer ¶

func (m *ResponseIsValidAddress) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponseIsValidAddress) ProtoMessage ¶

func (*ResponseIsValidAddress) ProtoMessage()

func (*ResponseIsValidAddress) Reset ¶

func (m *ResponseIsValidAddress) Reset()

func (*ResponseIsValidAddress) Size ¶

func (m *ResponseIsValidAddress) Size() (n int)

func (*ResponseIsValidAddress) String ¶

func (this *ResponseIsValidAddress) String() string

func (*ResponseIsValidAddress) Unmarshal ¶

func (m *ResponseIsValidAddress) Unmarshal(dAtA []byte) error

func (*ResponseIsValidAddress) XXX_DiscardUnknown ¶

func (m *ResponseIsValidAddress) XXX_DiscardUnknown()

func (*ResponseIsValidAddress) XXX_Marshal ¶

func (m *ResponseIsValidAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponseIsValidAddress) XXX_Merge ¶

func (m *ResponseIsValidAddress) XXX_Merge(src proto.Message)

func (*ResponseIsValidAddress) XXX_Size ¶

func (m *ResponseIsValidAddress) XXX_Size() int

func (*ResponseIsValidAddress) XXX_Unmarshal ¶

func (m *ResponseIsValidAddress) XXX_Unmarshal(b []byte) error

type ResponsePrepareTransaction ¶

type ResponsePrepareTransaction struct {
	TxJSON       string        `protobuf:"bytes,1,opt,name=txJSON,proto3" json:"txJSON,omitempty"`
	Instructions *Instructions `protobuf:"bytes,2,opt,name=instructions,proto3" json:"instructions,omitempty"`
}

func (*ResponsePrepareTransaction) Descriptor ¶

func (*ResponsePrepareTransaction) Descriptor() ([]byte, []int)

func (*ResponsePrepareTransaction) Equal ¶

func (this *ResponsePrepareTransaction) Equal(that interface{}) bool

func (*ResponsePrepareTransaction) GetInstructions ¶

func (m *ResponsePrepareTransaction) GetInstructions() *Instructions

func (*ResponsePrepareTransaction) GetTxJSON ¶

func (m *ResponsePrepareTransaction) GetTxJSON() string

func (*ResponsePrepareTransaction) GoString ¶

func (this *ResponsePrepareTransaction) GoString() string

func (*ResponsePrepareTransaction) Marshal ¶

func (m *ResponsePrepareTransaction) Marshal() (dAtA []byte, err error)

func (*ResponsePrepareTransaction) MarshalTo ¶

func (m *ResponsePrepareTransaction) MarshalTo(dAtA []byte) (int, error)

func (*ResponsePrepareTransaction) MarshalToSizedBuffer ¶

func (m *ResponsePrepareTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponsePrepareTransaction) ProtoMessage ¶

func (*ResponsePrepareTransaction) ProtoMessage()

func (*ResponsePrepareTransaction) Reset ¶

func (m *ResponsePrepareTransaction) Reset()

func (*ResponsePrepareTransaction) Size ¶

func (m *ResponsePrepareTransaction) Size() (n int)

func (*ResponsePrepareTransaction) String ¶

func (this *ResponsePrepareTransaction) String() string

func (*ResponsePrepareTransaction) Unmarshal ¶

func (m *ResponsePrepareTransaction) Unmarshal(dAtA []byte) error

func (*ResponsePrepareTransaction) XXX_DiscardUnknown ¶

func (m *ResponsePrepareTransaction) XXX_DiscardUnknown()

func (*ResponsePrepareTransaction) XXX_Marshal ¶

func (m *ResponsePrepareTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponsePrepareTransaction) XXX_Merge ¶

func (m *ResponsePrepareTransaction) XXX_Merge(src proto.Message)

func (*ResponsePrepareTransaction) XXX_Size ¶

func (m *ResponsePrepareTransaction) XXX_Size() int

func (*ResponsePrepareTransaction) XXX_Unmarshal ¶

func (m *ResponsePrepareTransaction) XXX_Unmarshal(b []byte) error

type ResponseSignTransaction ¶

type ResponseSignTransaction struct {
	TxID   string `protobuf:"bytes,1,opt,name=txID,proto3" json:"txID,omitempty"`
	TxBlob string `protobuf:"bytes,2,opt,name=txBlob,proto3" json:"txBlob,omitempty"`
}

func (*ResponseSignTransaction) Descriptor ¶

func (*ResponseSignTransaction) Descriptor() ([]byte, []int)

func (*ResponseSignTransaction) Equal ¶

func (this *ResponseSignTransaction) Equal(that interface{}) bool

func (*ResponseSignTransaction) GetTxBlob ¶

func (m *ResponseSignTransaction) GetTxBlob() string

func (*ResponseSignTransaction) GetTxID ¶

func (m *ResponseSignTransaction) GetTxID() string

func (*ResponseSignTransaction) GoString ¶

func (this *ResponseSignTransaction) GoString() string

func (*ResponseSignTransaction) Marshal ¶

func (m *ResponseSignTransaction) Marshal() (dAtA []byte, err error)

func (*ResponseSignTransaction) MarshalTo ¶

func (m *ResponseSignTransaction) MarshalTo(dAtA []byte) (int, error)

func (*ResponseSignTransaction) MarshalToSizedBuffer ¶

func (m *ResponseSignTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponseSignTransaction) ProtoMessage ¶

func (*ResponseSignTransaction) ProtoMessage()

func (*ResponseSignTransaction) Reset ¶

func (m *ResponseSignTransaction) Reset()

func (*ResponseSignTransaction) Size ¶

func (m *ResponseSignTransaction) Size() (n int)

func (*ResponseSignTransaction) String ¶

func (this *ResponseSignTransaction) String() string

func (*ResponseSignTransaction) Unmarshal ¶

func (m *ResponseSignTransaction) Unmarshal(dAtA []byte) error

func (*ResponseSignTransaction) XXX_DiscardUnknown ¶

func (m *ResponseSignTransaction) XXX_DiscardUnknown()

func (*ResponseSignTransaction) XXX_Marshal ¶

func (m *ResponseSignTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponseSignTransaction) XXX_Merge ¶

func (m *ResponseSignTransaction) XXX_Merge(src proto.Message)

func (*ResponseSignTransaction) XXX_Size ¶

func (m *ResponseSignTransaction) XXX_Size() int

func (*ResponseSignTransaction) XXX_Unmarshal ¶

func (m *ResponseSignTransaction) XXX_Unmarshal(b []byte) error

type ResponseSubmitTransaction ¶

type ResponseSubmitTransaction struct {
	ResultJSONString      string `protobuf:"bytes,1,opt,name=resultJSONString,proto3" json:"resultJSONString,omitempty"`
	EarliestLedgerVersion uint64 `protobuf:"varint,2,opt,name=earliestLedgerVersion,proto3" json:"earliestLedgerVersion,omitempty"`
}

func (*ResponseSubmitTransaction) Descriptor ¶

func (*ResponseSubmitTransaction) Descriptor() ([]byte, []int)

func (*ResponseSubmitTransaction) Equal ¶

func (this *ResponseSubmitTransaction) Equal(that interface{}) bool

func (*ResponseSubmitTransaction) GetEarliestLedgerVersion ¶

func (m *ResponseSubmitTransaction) GetEarliestLedgerVersion() uint64

func (*ResponseSubmitTransaction) GetResultJSONString ¶

func (m *ResponseSubmitTransaction) GetResultJSONString() string

func (*ResponseSubmitTransaction) GoString ¶

func (this *ResponseSubmitTransaction) GoString() string

func (*ResponseSubmitTransaction) Marshal ¶

func (m *ResponseSubmitTransaction) Marshal() (dAtA []byte, err error)

func (*ResponseSubmitTransaction) MarshalTo ¶

func (m *ResponseSubmitTransaction) MarshalTo(dAtA []byte) (int, error)

func (*ResponseSubmitTransaction) MarshalToSizedBuffer ¶

func (m *ResponseSubmitTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponseSubmitTransaction) ProtoMessage ¶

func (*ResponseSubmitTransaction) ProtoMessage()

func (*ResponseSubmitTransaction) Reset ¶

func (m *ResponseSubmitTransaction) Reset()

func (*ResponseSubmitTransaction) Size ¶

func (m *ResponseSubmitTransaction) Size() (n int)

func (*ResponseSubmitTransaction) String ¶

func (this *ResponseSubmitTransaction) String() string

func (*ResponseSubmitTransaction) Unmarshal ¶

func (m *ResponseSubmitTransaction) Unmarshal(dAtA []byte) error

func (*ResponseSubmitTransaction) XXX_DiscardUnknown ¶

func (m *ResponseSubmitTransaction) XXX_DiscardUnknown()

func (*ResponseSubmitTransaction) XXX_Marshal ¶

func (m *ResponseSubmitTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponseSubmitTransaction) XXX_Merge ¶

func (m *ResponseSubmitTransaction) XXX_Merge(src proto.Message)

func (*ResponseSubmitTransaction) XXX_Size ¶

func (m *ResponseSubmitTransaction) XXX_Size() int

func (*ResponseSubmitTransaction) XXX_Unmarshal ¶

func (m *ResponseSubmitTransaction) XXX_Unmarshal(b []byte) error

type ResponseWaitValidation ¶

type ResponseWaitValidation struct {
	LedgerVersion uint64 `protobuf:"varint,1,opt,name=ledgerVersion,proto3" json:"ledgerVersion,omitempty"`
}

func (*ResponseWaitValidation) Descriptor ¶

func (*ResponseWaitValidation) Descriptor() ([]byte, []int)

func (*ResponseWaitValidation) Equal ¶

func (this *ResponseWaitValidation) Equal(that interface{}) bool

func (*ResponseWaitValidation) GetLedgerVersion ¶

func (m *ResponseWaitValidation) GetLedgerVersion() uint64

func (*ResponseWaitValidation) GoString ¶

func (this *ResponseWaitValidation) GoString() string

func (*ResponseWaitValidation) Marshal ¶

func (m *ResponseWaitValidation) Marshal() (dAtA []byte, err error)

func (*ResponseWaitValidation) MarshalTo ¶

func (m *ResponseWaitValidation) MarshalTo(dAtA []byte) (int, error)

func (*ResponseWaitValidation) MarshalToSizedBuffer ¶

func (m *ResponseWaitValidation) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ResponseWaitValidation) ProtoMessage ¶

func (*ResponseWaitValidation) ProtoMessage()

func (*ResponseWaitValidation) Reset ¶

func (m *ResponseWaitValidation) Reset()

func (*ResponseWaitValidation) Size ¶

func (m *ResponseWaitValidation) Size() (n int)

func (*ResponseWaitValidation) String ¶

func (this *ResponseWaitValidation) String() string

func (*ResponseWaitValidation) Unmarshal ¶

func (m *ResponseWaitValidation) Unmarshal(dAtA []byte) error

func (*ResponseWaitValidation) XXX_DiscardUnknown ¶

func (m *ResponseWaitValidation) XXX_DiscardUnknown()

func (*ResponseWaitValidation) XXX_Marshal ¶

func (m *ResponseWaitValidation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResponseWaitValidation) XXX_Merge ¶

func (m *ResponseWaitValidation) XXX_Merge(src proto.Message)

func (*ResponseWaitValidation) XXX_Size ¶

func (m *ResponseWaitValidation) XXX_Size() int

func (*ResponseWaitValidation) XXX_Unmarshal ¶

func (m *ResponseWaitValidation) XXX_Unmarshal(b []byte) error

type RippleAccountAPIClient ¶

type RippleAccountAPIClient interface {
	// https://xrpl.org/rippleapi-reference.html#getaccountinfo
	GetAccountInfo(ctx context.Context, in *RequestGetAccountInfo, opts ...grpc.CallOption) (*ResponseGetAccountInfo, error)
}

RippleAccountAPIClient is the client API for RippleAccountAPI service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewRippleAccountAPIClient ¶

func NewRippleAccountAPIClient(cc *grpc.ClientConn) RippleAccountAPIClient

type RippleAccountAPIServer ¶

RippleAccountAPIServer is the server API for RippleAccountAPI service.

type RippleAddressAPIClient ¶

RippleAddressAPIClient is the client API for RippleAddressAPI service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewRippleAddressAPIClient ¶

func NewRippleAddressAPIClient(cc *grpc.ClientConn) RippleAddressAPIClient

type RippleTransactionAPIClient ¶

RippleTransactionAPIClient is the client API for RippleTransactionAPI service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewRippleTransactionAPIClient ¶

func NewRippleTransactionAPIClient(cc *grpc.ClientConn) RippleTransactionAPIClient

type RippleTransactionAPI_WaitValidationClient ¶

type RippleTransactionAPI_WaitValidationClient interface {
	Recv() (*ResponseWaitValidation, error)
	grpc.ClientStream
}

type RippleTransactionAPI_WaitValidationServer ¶

type RippleTransactionAPI_WaitValidationServer interface {
	Send(*ResponseWaitValidation) error
	grpc.ServerStream
}

type UnimplementedRippleAccountAPIServer ¶

type UnimplementedRippleAccountAPIServer struct {
}

UnimplementedRippleAccountAPIServer can be embedded to have forward compatible implementations.

func (*UnimplementedRippleAccountAPIServer) GetAccountInfo ¶

type UnimplementedRippleAddressAPIServer ¶

type UnimplementedRippleAddressAPIServer struct {
}

UnimplementedRippleAddressAPIServer can be embedded to have forward compatible implementations.

func (*UnimplementedRippleAddressAPIServer) GenerateAddress ¶

func (*UnimplementedRippleAddressAPIServer) GenerateXAddress ¶

func (*UnimplementedRippleAddressAPIServer) IsValidAddress ¶

type UnimplementedRippleTransactionAPIServer ¶

type UnimplementedRippleTransactionAPIServer struct {
}

UnimplementedRippleTransactionAPIServer can be embedded to have forward compatible implementations.

func (*UnimplementedRippleTransactionAPIServer) CombineTransaction ¶

func (*UnimplementedRippleTransactionAPIServer) GetTransaction ¶

func (*UnimplementedRippleTransactionAPIServer) PrepareTransaction ¶

func (*UnimplementedRippleTransactionAPIServer) SignTransaction ¶

func (*UnimplementedRippleTransactionAPIServer) SubmitTransaction ¶

func (*UnimplementedRippleTransactionAPIServer) WaitValidation ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL