bisquit

package module
v0.1.14 Latest Latest
Warning

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

Go to latest
Published: Oct 29, 2023 License: AGPL-3.0 Imports: 12 Imported by: 0

README

Build Status Go Report Card GoDoc

Bisquit: Bisq API client

(c) 2021-2023 Bernd Fix brf@hoi-polloi.org >Y<

bisquit is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

bisquit is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.

SPDX-License-Identifier: AGPL3.0-or-later

Prerequisites

This library is intended to be used with Go1.20+ and might not work correctly on previous versions.

Protobuf compiler (optional)

You need to have a newer protobuf compiler for Go installed on your system; make sure you installed necessary dependencies:

go get google.golang.org/grpc/cmd/protoc-gen-go-grpc
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
go get google.golang.org/protobuf/cmd/protoc-gen-go
go install google.golang.org/protobuf/cmd/protoc-gen-go
Protobuf definitions (update optional)

You also need the Protobuf definitions from the Bisq source tree (found at proto/src/main/proto/grpc.proto and proto/src/main/proto/pb.proto to generate Go stubs for the gRPC process. These files are copied to this repository and are kept up to date if possible; if I miss to update them you can just copy them over from the newest Bisq source tree and modify both of them by adding

option go_package = ".;bisquit";

in the option section at the beginning of the *.proto files.

Building

Generating Protobuf stubs (optional)

The Go source code generated from the Protobuf definitions are included in the repository, so this step is optional and only required if newer Protobuf definitions are available.

To generate the Go code from the Protobuf definitions, run the following commands in the base directory:

protoc --go_out=. --go_opt=paths=source_relative pb.proto
protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative grpc.proto

This should generate three (new) Go files: grpc_grpc.pb.go, grpc.pb.go and pb.pb.go.

Compiling the library

Make sure all dependencies are installed by running

go mod tidy

and then build the library with

go build

Testing

Bisq daemon

You need a running Bisq daemon (v1.9.10+) with enabled gRPC and API password to run the unit tests. Use

export BISQ_API_PASSWORD="my_secret"
export BISQ_API_HOST="localhost:9998"

to pass the API password and host settings to the tests.

Documentation

Index

Constants

View Source
const (
	Offers_GetOfferCategory_FullMethodName   = "/io.bisq.protobuffer.Offers/GetOfferCategory"
	Offers_GetBsqSwapOffer_FullMethodName    = "/io.bisq.protobuffer.Offers/GetBsqSwapOffer"
	Offers_GetOffer_FullMethodName           = "/io.bisq.protobuffer.Offers/GetOffer"
	Offers_GetMyBsqSwapOffer_FullMethodName  = "/io.bisq.protobuffer.Offers/GetMyBsqSwapOffer"
	Offers_GetMyOffer_FullMethodName         = "/io.bisq.protobuffer.Offers/GetMyOffer"
	Offers_GetBsqSwapOffers_FullMethodName   = "/io.bisq.protobuffer.Offers/GetBsqSwapOffers"
	Offers_GetOffers_FullMethodName          = "/io.bisq.protobuffer.Offers/GetOffers"
	Offers_GetMyBsqSwapOffers_FullMethodName = "/io.bisq.protobuffer.Offers/GetMyBsqSwapOffers"
	Offers_GetMyOffers_FullMethodName        = "/io.bisq.protobuffer.Offers/GetMyOffers"
	Offers_CreateBsqSwapOffer_FullMethodName = "/io.bisq.protobuffer.Offers/CreateBsqSwapOffer"
	Offers_CreateOffer_FullMethodName        = "/io.bisq.protobuffer.Offers/CreateOffer"
	Offers_EditOffer_FullMethodName          = "/io.bisq.protobuffer.Offers/EditOffer"
	Offers_CancelOffer_FullMethodName        = "/io.bisq.protobuffer.Offers/CancelOffer"
)
View Source
const (
	PaymentAccounts_CreatePaymentAccount_FullMethodName               = "/io.bisq.protobuffer.PaymentAccounts/CreatePaymentAccount"
	PaymentAccounts_GetPaymentAccounts_FullMethodName                 = "/io.bisq.protobuffer.PaymentAccounts/GetPaymentAccounts"
	PaymentAccounts_GetPaymentMethods_FullMethodName                  = "/io.bisq.protobuffer.PaymentAccounts/GetPaymentMethods"
	PaymentAccounts_GetPaymentAccountForm_FullMethodName              = "/io.bisq.protobuffer.PaymentAccounts/GetPaymentAccountForm"
	PaymentAccounts_CreateCryptoCurrencyPaymentAccount_FullMethodName = "/io.bisq.protobuffer.PaymentAccounts/CreateCryptoCurrencyPaymentAccount"
	PaymentAccounts_GetCryptoCurrencyPaymentMethods_FullMethodName    = "/io.bisq.protobuffer.PaymentAccounts/GetCryptoCurrencyPaymentMethods"
)
View Source
const (
	Price_GetMarketPrice_FullMethodName          = "/io.bisq.protobuffer.Price/GetMarketPrice"
	Price_GetAverageBsqTradePrice_FullMethodName = "/io.bisq.protobuffer.Price/GetAverageBsqTradePrice"
)
View Source
const (
	Trades_GetTrade_FullMethodName               = "/io.bisq.protobuffer.Trades/GetTrade"
	Trades_GetTrades_FullMethodName              = "/io.bisq.protobuffer.Trades/GetTrades"
	Trades_TakeOffer_FullMethodName              = "/io.bisq.protobuffer.Trades/TakeOffer"
	Trades_ConfirmPaymentStarted_FullMethodName  = "/io.bisq.protobuffer.Trades/ConfirmPaymentStarted"
	Trades_ConfirmPaymentReceived_FullMethodName = "/io.bisq.protobuffer.Trades/ConfirmPaymentReceived"
	Trades_CloseTrade_FullMethodName             = "/io.bisq.protobuffer.Trades/CloseTrade"
	Trades_FailTrade_FullMethodName              = "/io.bisq.protobuffer.Trades/FailTrade"
	Trades_UnFailTrade_FullMethodName            = "/io.bisq.protobuffer.Trades/UnFailTrade"
	Trades_WithdrawFunds_FullMethodName          = "/io.bisq.protobuffer.Trades/WithdrawFunds"
)
View Source
const (
	Wallets_GetNetwork_FullMethodName               = "/io.bisq.protobuffer.Wallets/GetNetwork"
	Wallets_GetBalances_FullMethodName              = "/io.bisq.protobuffer.Wallets/GetBalances"
	Wallets_GetAddressBalance_FullMethodName        = "/io.bisq.protobuffer.Wallets/GetAddressBalance"
	Wallets_GetUnusedBsqAddress_FullMethodName      = "/io.bisq.protobuffer.Wallets/GetUnusedBsqAddress"
	Wallets_SendBsq_FullMethodName                  = "/io.bisq.protobuffer.Wallets/SendBsq"
	Wallets_SendBtc_FullMethodName                  = "/io.bisq.protobuffer.Wallets/SendBtc"
	Wallets_VerifyBsqSentToAddress_FullMethodName   = "/io.bisq.protobuffer.Wallets/VerifyBsqSentToAddress"
	Wallets_GetTxFeeRate_FullMethodName             = "/io.bisq.protobuffer.Wallets/GetTxFeeRate"
	Wallets_SetTxFeeRatePreference_FullMethodName   = "/io.bisq.protobuffer.Wallets/SetTxFeeRatePreference"
	Wallets_UnsetTxFeeRatePreference_FullMethodName = "/io.bisq.protobuffer.Wallets/UnsetTxFeeRatePreference"
	Wallets_GetTransactions_FullMethodName          = "/io.bisq.protobuffer.Wallets/GetTransactions"
	Wallets_GetTransaction_FullMethodName           = "/io.bisq.protobuffer.Wallets/GetTransaction"
	Wallets_GetFundingAddresses_FullMethodName      = "/io.bisq.protobuffer.Wallets/GetFundingAddresses"
	Wallets_SetWalletPassword_FullMethodName        = "/io.bisq.protobuffer.Wallets/SetWalletPassword"
	Wallets_RemoveWalletPassword_FullMethodName     = "/io.bisq.protobuffer.Wallets/RemoveWalletPassword"
	Wallets_LockWallet_FullMethodName               = "/io.bisq.protobuffer.Wallets/LockWallet"
	Wallets_UnlockWallet_FullMethodName             = "/io.bisq.protobuffer.Wallets/UnlockWallet"
)
View Source
const (
	DisputeAgents_RegisterDisputeAgent_FullMethodName = "/io.bisq.protobuffer.DisputeAgents/RegisterDisputeAgent"
)
View Source
const (
	GetVersion_GetVersion_FullMethodName = "/io.bisq.protobuffer.GetVersion/GetVersion"
)
View Source
const (
	Help_GetMethodHelp_FullMethodName = "/io.bisq.protobuffer.Help/GetMethodHelp"
)
View Source
const (
	ShutdownServer_Stop_FullMethodName = "/io.bisq.protobuffer.ShutdownServer/Stop"
)

Variables

View Source
var (
	ErrClientConnected    = fmt.Errorf("Client already connected")
	ErrClientNotConnected = fmt.Errorf("Client not connected")
)

Error codes

View Source
var (
	GetOfferCategoryReply_OfferCategory_name = map[int32]string{
		0: "UNKNOWN",
		1: "FIAT",
		2: "ALTCOIN",
		3: "BSQ_SWAP",
	}
	GetOfferCategoryReply_OfferCategory_value = map[string]int32{
		"UNKNOWN":  0,
		"FIAT":     1,
		"ALTCOIN":  2,
		"BSQ_SWAP": 3,
	}
)

Enum value maps for GetOfferCategoryReply_OfferCategory.

View Source
var (
	EditOfferRequest_EditType_name = map[int32]string{
		0: "ACTIVATION_STATE_ONLY",
		1: "FIXED_PRICE_ONLY",
		2: "FIXED_PRICE_AND_ACTIVATION_STATE",
		3: "MKT_PRICE_MARGIN_ONLY",
		4: "MKT_PRICE_MARGIN_AND_ACTIVATION_STATE",
		5: "TRIGGER_PRICE_ONLY",
		6: "TRIGGER_PRICE_AND_ACTIVATION_STATE",
		7: "MKT_PRICE_MARGIN_AND_TRIGGER_PRICE",
		8: "MKT_PRICE_MARGIN_AND_TRIGGER_PRICE_AND_ACTIVATION_STATE",
	}
	EditOfferRequest_EditType_value = map[string]int32{
		"ACTIVATION_STATE_ONLY":                                   0,
		"FIXED_PRICE_ONLY":                                        1,
		"FIXED_PRICE_AND_ACTIVATION_STATE":                        2,
		"MKT_PRICE_MARGIN_ONLY":                                   3,
		"MKT_PRICE_MARGIN_AND_ACTIVATION_STATE":                   4,
		"TRIGGER_PRICE_ONLY":                                      5,
		"TRIGGER_PRICE_AND_ACTIVATION_STATE":                      6,
		"MKT_PRICE_MARGIN_AND_TRIGGER_PRICE":                      7,
		"MKT_PRICE_MARGIN_AND_TRIGGER_PRICE_AND_ACTIVATION_STATE": 8,
	}
)

Enum value maps for EditOfferRequest_EditType.

View Source
var (
	GetTradesRequest_Category_name = map[int32]string{
		0: "OPEN",
		1: "CLOSED",
		2: "FAILED",
	}
	GetTradesRequest_Category_value = map[string]int32{
		"OPEN":   0,
		"CLOSED": 1,
		"FAILED": 2,
	}
)

Enum value maps for GetTradesRequest_Category.

View Source
var (
	SupportType_name = map[int32]string{
		0: "ARBITRATION",
		1: "MEDIATION",
		2: "TRADE",
		3: "REFUND",
	}
	SupportType_value = map[string]int32{
		"ARBITRATION": 0,
		"MEDIATION":   1,
		"TRADE":       2,
		"REFUND":      3,
	}
)

Enum value maps for SupportType.

View Source
var (
	OfferDirection_name = map[int32]string{
		0: "OFFER_DIRECTION_ERROR",
		1: "BUY",
		2: "SELL",
	}
	OfferDirection_value = map[string]int32{
		"OFFER_DIRECTION_ERROR": 0,
		"BUY":                   1,
		"SELL":                  2,
	}
)

Enum value maps for OfferDirection.

View Source
var (
	AvailabilityResult_name = map[int32]string{
		0:  "PB_ERROR",
		1:  "UNKNOWN_FAILURE",
		2:  "AVAILABLE",
		3:  "OFFER_TAKEN",
		4:  "PRICE_OUT_OF_TOLERANCE",
		5:  "MARKET_PRICE_NOT_AVAILABLE",
		6:  "NO_ARBITRATORS",
		7:  "NO_MEDIATORS",
		8:  "USER_IGNORED",
		9:  "MISSING_MANDATORY_CAPABILITY",
		10: "NO_REFUND_AGENTS",
		11: "UNCONF_TX_LIMIT_HIT",
		12: "MAKER_DENIED_API_USER",
		13: "PRICE_CHECK_FAILED",
		14: "INVALID_SNAPSHOT_HEIGHT",
	}
	AvailabilityResult_value = map[string]int32{
		"PB_ERROR":                     0,
		"UNKNOWN_FAILURE":              1,
		"AVAILABLE":                    2,
		"OFFER_TAKEN":                  3,
		"PRICE_OUT_OF_TOLERANCE":       4,
		"MARKET_PRICE_NOT_AVAILABLE":   5,
		"NO_ARBITRATORS":               6,
		"NO_MEDIATORS":                 7,
		"USER_IGNORED":                 8,
		"MISSING_MANDATORY_CAPABILITY": 9,
		"NO_REFUND_AGENTS":             10,
		"UNCONF_TX_LIMIT_HIT":          11,
		"MAKER_DENIED_API_USER":        12,
		"PRICE_CHECK_FAILED":           13,
		"INVALID_SNAPSHOT_HEIGHT":      14,
	}
)

Enum value maps for AvailabilityResult.

View Source
var (
	MediationResultState_name = map[int32]string{
		0:  "PB_ERROR_MEDIATION_RESULT",
		1:  "UNDEFINED_MEDIATION_RESULT",
		2:  "MEDIATION_RESULT_ACCEPTED",
		3:  "MEDIATION_RESULT_REJECTED",
		4:  "SIG_MSG_SENT",
		5:  "SIG_MSG_ARRIVED",
		6:  "SIG_MSG_IN_MAILBOX",
		7:  "SIG_MSG_SEND_FAILED",
		8:  "RECEIVED_SIG_MSG",
		9:  "PAYOUT_TX_PUBLISHED",
		10: "PAYOUT_TX_PUBLISHED_MSG_SENT",
		11: "PAYOUT_TX_PUBLISHED_MSG_ARRIVED",
		12: "PAYOUT_TX_PUBLISHED_MSG_IN_MAILBOX",
		13: "PAYOUT_TX_PUBLISHED_MSG_SEND_FAILED",
		14: "RECEIVED_PAYOUT_TX_PUBLISHED_MSG",
		15: "PAYOUT_TX_SEEN_IN_NETWORK",
	}
	MediationResultState_value = map[string]int32{
		"PB_ERROR_MEDIATION_RESULT":           0,
		"UNDEFINED_MEDIATION_RESULT":          1,
		"MEDIATION_RESULT_ACCEPTED":           2,
		"MEDIATION_RESULT_REJECTED":           3,
		"SIG_MSG_SENT":                        4,
		"SIG_MSG_ARRIVED":                     5,
		"SIG_MSG_IN_MAILBOX":                  6,
		"SIG_MSG_SEND_FAILED":                 7,
		"RECEIVED_SIG_MSG":                    8,
		"PAYOUT_TX_PUBLISHED":                 9,
		"PAYOUT_TX_PUBLISHED_MSG_SENT":        10,
		"PAYOUT_TX_PUBLISHED_MSG_ARRIVED":     11,
		"PAYOUT_TX_PUBLISHED_MSG_IN_MAILBOX":  12,
		"PAYOUT_TX_PUBLISHED_MSG_SEND_FAILED": 13,
		"RECEIVED_PAYOUT_TX_PUBLISHED_MSG":    14,
		"PAYOUT_TX_SEEN_IN_NETWORK":           15,
	}
)

Enum value maps for MediationResultState.

View Source
var (
	RefundResultState_name = map[int32]string{
		0: "PB_ERROR_REFUND_RESULT",
		1: "UNDEFINED_REFUND_RESULT",
	}
	RefundResultState_value = map[string]int32{
		"PB_ERROR_REFUND_RESULT":  0,
		"UNDEFINED_REFUND_RESULT": 1,
	}
)

Enum value maps for RefundResultState.

View Source
var (
	TxType_name = map[int32]string{
		0:  "PB_ERROR_TX_TYPE",
		1:  "UNDEFINED_TX_TYPE",
		2:  "UNVERIFIED",
		3:  "INVALID",
		4:  "GENESIS",
		5:  "TRANSFER_BSQ",
		6:  "PAY_TRADE_FEE",
		7:  "PROPOSAL",
		8:  "COMPENSATION_REQUEST",
		9:  "REIMBURSEMENT_REQUEST",
		10: "BLIND_VOTE",
		11: "VOTE_REVEAL",
		12: "LOCKUP",
		13: "UNLOCK",
		14: "ASSET_LISTING_FEE",
		15: "PROOF_OF_BURN",
		16: "IRREGULAR",
	}
	TxType_value = map[string]int32{
		"PB_ERROR_TX_TYPE":      0,
		"UNDEFINED_TX_TYPE":     1,
		"UNVERIFIED":            2,
		"INVALID":               3,
		"GENESIS":               4,
		"TRANSFER_BSQ":          5,
		"PAY_TRADE_FEE":         6,
		"PROPOSAL":              7,
		"COMPENSATION_REQUEST":  8,
		"REIMBURSEMENT_REQUEST": 9,
		"BLIND_VOTE":            10,
		"VOTE_REVEAL":           11,
		"LOCKUP":                12,
		"UNLOCK":                13,
		"ASSET_LISTING_FEE":     14,
		"PROOF_OF_BURN":         15,
		"IRREGULAR":             16,
	}
)

Enum value maps for TxType.

View Source
var (
	TxOutputType_name = map[int32]string{
		0:  "PB_ERROR_TX_OUTPUT_TYPE",
		1:  "UNDEFINED_OUTPUT",
		2:  "GENESIS_OUTPUT",
		3:  "BSQ_OUTPUT",
		4:  "BTC_OUTPUT",
		5:  "PROPOSAL_OP_RETURN_OUTPUT",
		6:  "COMP_REQ_OP_RETURN_OUTPUT",
		7:  "REIMBURSEMENT_OP_RETURN_OUTPUT",
		8:  "CONFISCATE_BOND_OP_RETURN_OUTPUT",
		9:  "ISSUANCE_CANDIDATE_OUTPUT",
		10: "BLIND_VOTE_LOCK_STAKE_OUTPUT",
		11: "BLIND_VOTE_OP_RETURN_OUTPUT",
		12: "VOTE_REVEAL_UNLOCK_STAKE_OUTPUT",
		13: "VOTE_REVEAL_OP_RETURN_OUTPUT",
		14: "ASSET_LISTING_FEE_OP_RETURN_OUTPUT",
		15: "PROOF_OF_BURN_OP_RETURN_OUTPUT",
		16: "LOCKUP_OUTPUT",
		17: "LOCKUP_OP_RETURN_OUTPUT",
		18: "UNLOCK_OUTPUT",
		19: "INVALID_OUTPUT",
	}
	TxOutputType_value = map[string]int32{
		"PB_ERROR_TX_OUTPUT_TYPE":            0,
		"UNDEFINED_OUTPUT":                   1,
		"GENESIS_OUTPUT":                     2,
		"BSQ_OUTPUT":                         3,
		"BTC_OUTPUT":                         4,
		"PROPOSAL_OP_RETURN_OUTPUT":          5,
		"COMP_REQ_OP_RETURN_OUTPUT":          6,
		"REIMBURSEMENT_OP_RETURN_OUTPUT":     7,
		"CONFISCATE_BOND_OP_RETURN_OUTPUT":   8,
		"ISSUANCE_CANDIDATE_OUTPUT":          9,
		"BLIND_VOTE_LOCK_STAKE_OUTPUT":       10,
		"BLIND_VOTE_OP_RETURN_OUTPUT":        11,
		"VOTE_REVEAL_UNLOCK_STAKE_OUTPUT":    12,
		"VOTE_REVEAL_OP_RETURN_OUTPUT":       13,
		"ASSET_LISTING_FEE_OP_RETURN_OUTPUT": 14,
		"PROOF_OF_BURN_OP_RETURN_OUTPUT":     15,
		"LOCKUP_OUTPUT":                      16,
		"LOCKUP_OP_RETURN_OUTPUT":            17,
		"UNLOCK_OUTPUT":                      18,
		"INVALID_OUTPUT":                     19,
	}
)

Enum value maps for TxOutputType.

View Source
var (
	ScriptType_name = map[int32]string{
		0:  "PB_ERROR_SCRIPT_TYPES",
		1:  "PUB_KEY",
		2:  "PUB_KEY_HASH",
		3:  "SCRIPT_HASH",
		4:  "MULTISIG",
		5:  "NULL_DATA",
		6:  "WITNESS_V0_KEYHASH",
		7:  "WITNESS_V0_SCRIPTHASH",
		8:  "NONSTANDARD",
		9:  "WITNESS_UNKNOWN",
		10: "WITNESS_V1_TAPROOT",
	}
	ScriptType_value = map[string]int32{
		"PB_ERROR_SCRIPT_TYPES": 0,
		"PUB_KEY":               1,
		"PUB_KEY_HASH":          2,
		"SCRIPT_HASH":           3,
		"MULTISIG":              4,
		"NULL_DATA":             5,
		"WITNESS_V0_KEYHASH":    6,
		"WITNESS_V0_SCRIPTHASH": 7,
		"NONSTANDARD":           8,
		"WITNESS_UNKNOWN":       9,
		"WITNESS_V1_TAPROOT":    10,
	}
)

Enum value maps for ScriptType.

View Source
var (
	SignedWitness_VerificationMethod_name = map[int32]string{
		0: "PB_ERROR",
		1: "ARBITRATOR",
		2: "TRADE",
	}
	SignedWitness_VerificationMethod_value = map[string]int32{
		"PB_ERROR":   0,
		"ARBITRATOR": 1,
		"TRADE":      2,
	}
)

Enum value maps for SignedWitness_VerificationMethod.

View Source
var (
	Dispute_State_name = map[int32]string{
		0: "NEEDS_UPGRADE",
		1: "NEW",
		2: "OPEN",
		3: "REOPENED",
		4: "CLOSED",
		5: "RESULT_PROPOSED",
	}
	Dispute_State_value = map[string]int32{
		"NEEDS_UPGRADE":   0,
		"NEW":             1,
		"OPEN":            2,
		"REOPENED":        3,
		"CLOSED":          4,
		"RESULT_PROPOSED": 5,
	}
)

Enum value maps for Dispute_State.

View Source
var (
	DisputeResult_Winner_name = map[int32]string{
		0: "PB_ERROR_WINNER",
		1: "BUYER",
		2: "SELLER",
	}
	DisputeResult_Winner_value = map[string]int32{
		"PB_ERROR_WINNER": 0,
		"BUYER":           1,
		"SELLER":          2,
	}
)

Enum value maps for DisputeResult_Winner.

View Source
var (
	DisputeResult_Reason_name = map[int32]string{
		0:  "PB_ERROR_REASON",
		1:  "OTHER",
		2:  "BUG",
		3:  "USABILITY",
		4:  "SCAM",
		5:  "PROTOCOL_VIOLATION",
		6:  "NO_REPLY",
		7:  "BANK_PROBLEMS",
		8:  "OPTION_TRADE",
		9:  "SELLER_NOT_RESPONDING",
		10: "WRONG_SENDER_ACCOUNT",
		11: "TRADE_ALREADY_SETTLED",
		12: "PEER_WAS_LATE",
	}
	DisputeResult_Reason_value = map[string]int32{
		"PB_ERROR_REASON":       0,
		"OTHER":                 1,
		"BUG":                   2,
		"USABILITY":             3,
		"SCAM":                  4,
		"PROTOCOL_VIOLATION":    5,
		"NO_REPLY":              6,
		"BANK_PROBLEMS":         7,
		"OPTION_TRADE":          8,
		"SELLER_NOT_RESPONDING": 9,
		"WRONG_SENDER_ACCOUNT":  10,
		"TRADE_ALREADY_SETTLED": 11,
		"PEER_WAS_LATE":         12,
	}
)

Enum value maps for DisputeResult_Reason.

View Source
var (
	DisputeResult_PayoutSuggestion_name = map[int32]string{
		0: "CUSTOM_PAYOUT",
		1: "BUYER_GETS_TRADE_AMOUNT",
		2: "BUYER_GETS_TRADE_AMOUNT_PLUS_COMPENSATION",
		3: "BUYER_GETS_TRADE_AMOUNT_MINUS_PENALTY",
		4: "SELLER_GETS_TRADE_AMOUNT",
		5: "SELLER_GETS_TRADE_AMOUNT_PLUS_COMPENSATION",
		6: "SELLER_GETS_TRADE_AMOUNT_MINUS_PENALTY",
	}
	DisputeResult_PayoutSuggestion_value = map[string]int32{
		"CUSTOM_PAYOUT":                              0,
		"BUYER_GETS_TRADE_AMOUNT":                    1,
		"BUYER_GETS_TRADE_AMOUNT_PLUS_COMPENSATION":  2,
		"BUYER_GETS_TRADE_AMOUNT_MINUS_PENALTY":      3,
		"SELLER_GETS_TRADE_AMOUNT":                   4,
		"SELLER_GETS_TRADE_AMOUNT_PLUS_COMPENSATION": 5,
		"SELLER_GETS_TRADE_AMOUNT_MINUS_PENALTY":     6,
	}
)

Enum value maps for DisputeResult_PayoutSuggestion.

View Source
var (
	AddressEntry_Context_name = map[int32]string{
		0: "PB_ERROR",
		1: "ARBITRATOR",
		2: "AVAILABLE",
		3: "OFFER_FUNDING",
		4: "RESERVED_FOR_TRADE",
		5: "MULTI_SIG",
		6: "TRADE_PAYOUT",
	}
	AddressEntry_Context_value = map[string]int32{
		"PB_ERROR":           0,
		"ARBITRATOR":         1,
		"AVAILABLE":          2,
		"OFFER_FUNDING":      3,
		"RESERVED_FOR_TRADE": 4,
		"MULTI_SIG":          5,
		"TRADE_PAYOUT":       6,
	}
)

Enum value maps for AddressEntry_Context.

View Source
var (
	Offer_State_name = map[int32]string{
		0: "PB_ERROR",
		1: "UNKNOWN",
		2: "OFFER_FEE_PAID",
		3: "AVAILABLE",
		4: "NOT_AVAILABLE",
		5: "REMOVED",
		6: "MAKER_OFFLINE",
	}
	Offer_State_value = map[string]int32{
		"PB_ERROR":       0,
		"UNKNOWN":        1,
		"OFFER_FEE_PAID": 2,
		"AVAILABLE":      3,
		"NOT_AVAILABLE":  4,
		"REMOVED":        5,
		"MAKER_OFFLINE":  6,
	}
)

Enum value maps for Offer_State.

View Source
var (
	OpenOffer_State_name = map[int32]string{
		0: "PB_ERROR",
		1: "AVAILABLE",
		2: "RESERVED",
		3: "CLOSED",
		4: "CANCELED",
		5: "DEACTIVATED",
	}
	OpenOffer_State_value = map[string]int32{
		"PB_ERROR":    0,
		"AVAILABLE":   1,
		"RESERVED":    2,
		"CLOSED":      3,
		"CANCELED":    4,
		"DEACTIVATED": 5,
	}
)

Enum value maps for OpenOffer_State.

View Source
var (
	Trade_State_name = map[int32]string{
		0:  "PB_ERROR_STATE",
		1:  "PREPARATION",
		2:  "TAKER_PUBLISHED_TAKER_FEE_TX",
		3:  "MAKER_SENT_PUBLISH_DEPOSIT_TX_REQUEST",
		4:  "MAKER_SAW_ARRIVED_PUBLISH_DEPOSIT_TX_REQUEST",
		5:  "MAKER_STORED_IN_MAILBOX_PUBLISH_DEPOSIT_TX_REQUEST",
		6:  "MAKER_SEND_FAILED_PUBLISH_DEPOSIT_TX_REQUEST",
		7:  "TAKER_RECEIVED_PUBLISH_DEPOSIT_TX_REQUEST",
		8:  "SELLER_PUBLISHED_DEPOSIT_TX",
		9:  "SELLER_SENT_DEPOSIT_TX_PUBLISHED_MSG",
		10: "SELLER_SAW_ARRIVED_DEPOSIT_TX_PUBLISHED_MSG",
		11: "SELLER_STORED_IN_MAILBOX_DEPOSIT_TX_PUBLISHED_MSG",
		12: "SELLER_SEND_FAILED_DEPOSIT_TX_PUBLISHED_MSG",
		13: "BUYER_RECEIVED_DEPOSIT_TX_PUBLISHED_MSG",
		14: "BUYER_SAW_DEPOSIT_TX_IN_NETWORK",
		15: "DEPOSIT_CONFIRMED_IN_BLOCK_CHAIN",
		16: "BUYER_CONFIRMED_IN_UI_FIAT_PAYMENT_INITIATED",
		17: "BUYER_SENT_FIAT_PAYMENT_INITIATED_MSG",
		18: "BUYER_SAW_ARRIVED_FIAT_PAYMENT_INITIATED_MSG",
		19: "BUYER_STORED_IN_MAILBOX_FIAT_PAYMENT_INITIATED_MSG",
		20: "BUYER_SEND_FAILED_FIAT_PAYMENT_INITIATED_MSG",
		21: "SELLER_RECEIVED_FIAT_PAYMENT_INITIATED_MSG",
		22: "SELLER_CONFIRMED_IN_UI_FIAT_PAYMENT_RECEIPT",
		23: "SELLER_PUBLISHED_PAYOUT_TX",
		24: "SELLER_SENT_PAYOUT_TX_PUBLISHED_MSG",
		25: "SELLER_SAW_ARRIVED_PAYOUT_TX_PUBLISHED_MSG",
		26: "SELLER_STORED_IN_MAILBOX_PAYOUT_TX_PUBLISHED_MSG",
		27: "SELLER_SEND_FAILED_PAYOUT_TX_PUBLISHED_MSG",
		28: "BUYER_RECEIVED_PAYOUT_TX_PUBLISHED_MSG",
		29: "BUYER_SAW_PAYOUT_TX_IN_NETWORK",
		30: "WITHDRAW_COMPLETED",
	}
	Trade_State_value = map[string]int32{
		"PB_ERROR_STATE":                                     0,
		"PREPARATION":                                        1,
		"TAKER_PUBLISHED_TAKER_FEE_TX":                       2,
		"MAKER_SENT_PUBLISH_DEPOSIT_TX_REQUEST":              3,
		"MAKER_SAW_ARRIVED_PUBLISH_DEPOSIT_TX_REQUEST":       4,
		"MAKER_STORED_IN_MAILBOX_PUBLISH_DEPOSIT_TX_REQUEST": 5,
		"MAKER_SEND_FAILED_PUBLISH_DEPOSIT_TX_REQUEST":       6,
		"TAKER_RECEIVED_PUBLISH_DEPOSIT_TX_REQUEST":          7,
		"SELLER_PUBLISHED_DEPOSIT_TX":                        8,
		"SELLER_SENT_DEPOSIT_TX_PUBLISHED_MSG":               9,
		"SELLER_SAW_ARRIVED_DEPOSIT_TX_PUBLISHED_MSG":        10,
		"SELLER_STORED_IN_MAILBOX_DEPOSIT_TX_PUBLISHED_MSG":  11,
		"SELLER_SEND_FAILED_DEPOSIT_TX_PUBLISHED_MSG":        12,
		"BUYER_RECEIVED_DEPOSIT_TX_PUBLISHED_MSG":            13,
		"BUYER_SAW_DEPOSIT_TX_IN_NETWORK":                    14,
		"DEPOSIT_CONFIRMED_IN_BLOCK_CHAIN":                   15,
		"BUYER_CONFIRMED_IN_UI_FIAT_PAYMENT_INITIATED":       16,
		"BUYER_SENT_FIAT_PAYMENT_INITIATED_MSG":              17,
		"BUYER_SAW_ARRIVED_FIAT_PAYMENT_INITIATED_MSG":       18,
		"BUYER_STORED_IN_MAILBOX_FIAT_PAYMENT_INITIATED_MSG": 19,
		"BUYER_SEND_FAILED_FIAT_PAYMENT_INITIATED_MSG":       20,
		"SELLER_RECEIVED_FIAT_PAYMENT_INITIATED_MSG":         21,
		"SELLER_CONFIRMED_IN_UI_FIAT_PAYMENT_RECEIPT":        22,
		"SELLER_PUBLISHED_PAYOUT_TX":                         23,
		"SELLER_SENT_PAYOUT_TX_PUBLISHED_MSG":                24,
		"SELLER_SAW_ARRIVED_PAYOUT_TX_PUBLISHED_MSG":         25,
		"SELLER_STORED_IN_MAILBOX_PAYOUT_TX_PUBLISHED_MSG":   26,
		"SELLER_SEND_FAILED_PAYOUT_TX_PUBLISHED_MSG":         27,
		"BUYER_RECEIVED_PAYOUT_TX_PUBLISHED_MSG":             28,
		"BUYER_SAW_PAYOUT_TX_IN_NETWORK":                     29,
		"WITHDRAW_COMPLETED":                                 30,
	}
)

Enum value maps for Trade_State.

View Source
var (
	Trade_Phase_name = map[int32]string{
		0: "PB_ERROR_PHASE",
		1: "INIT",
		2: "TAKER_FEE_PUBLISHED",
		3: "DEPOSIT_PUBLISHED",
		4: "DEPOSIT_CONFIRMED",
		5: "FIAT_SENT",
		6: "FIAT_RECEIVED",
		7: "PAYOUT_PUBLISHED",
		8: "WITHDRAWN",
	}
	Trade_Phase_value = map[string]int32{
		"PB_ERROR_PHASE":      0,
		"INIT":                1,
		"TAKER_FEE_PUBLISHED": 2,
		"DEPOSIT_PUBLISHED":   3,
		"DEPOSIT_CONFIRMED":   4,
		"FIAT_SENT":           5,
		"FIAT_RECEIVED":       6,
		"PAYOUT_PUBLISHED":    7,
		"WITHDRAWN":           8,
	}
)

Enum value maps for Trade_Phase.

View Source
var (
	Trade_DisputeState_name = map[int32]string{
		0:  "PB_ERROR_DISPUTE_STATE",
		1:  "NO_DISPUTE",
		2:  "DISPUTE_REQUESTED",
		3:  "DISPUTE_STARTED_BY_PEER",
		4:  "DISPUTE_CLOSED",
		5:  "MEDIATION_REQUESTED",
		6:  "MEDIATION_STARTED_BY_PEER",
		7:  "MEDIATION_CLOSED",
		8:  "REFUND_REQUESTED",
		9:  "REFUND_REQUEST_STARTED_BY_PEER",
		10: "REFUND_REQUEST_CLOSED",
	}
	Trade_DisputeState_value = map[string]int32{
		"PB_ERROR_DISPUTE_STATE":         0,
		"NO_DISPUTE":                     1,
		"DISPUTE_REQUESTED":              2,
		"DISPUTE_STARTED_BY_PEER":        3,
		"DISPUTE_CLOSED":                 4,
		"MEDIATION_REQUESTED":            5,
		"MEDIATION_STARTED_BY_PEER":      6,
		"MEDIATION_CLOSED":               7,
		"REFUND_REQUESTED":               8,
		"REFUND_REQUEST_STARTED_BY_PEER": 9,
		"REFUND_REQUEST_CLOSED":          10,
	}
)

Enum value maps for Trade_DisputeState.

View Source
var (
	Trade_TradePeriodState_name = map[int32]string{
		0: "PB_ERROR_TRADE_PERIOD_STATE",
		1: "FIRST_HALF",
		2: "SECOND_HALF",
		3: "TRADE_PERIOD_OVER",
	}
	Trade_TradePeriodState_value = map[string]int32{
		"PB_ERROR_TRADE_PERIOD_STATE": 0,
		"FIRST_HALF":                  1,
		"SECOND_HALF":                 2,
		"TRADE_PERIOD_OVER":           3,
	}
)

Enum value maps for Trade_TradePeriodState.

View Source
var (
	BsqSwapTrade_State_name = map[int32]string{
		0: "PB_ERROR_STATE",
		1: "PREPARATION",
		2: "COMPLETED",
		3: "FAILED",
	}
	BsqSwapTrade_State_value = map[string]int32{
		"PB_ERROR_STATE": 0,
		"PREPARATION":    1,
		"COMPLETED":      2,
		"FAILED":         3,
	}
)

Enum value maps for BsqSwapTrade_State.

View Source
var DisputeAgents_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "io.bisq.protobuffer.DisputeAgents",
	HandlerType: (*DisputeAgentsServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "RegisterDisputeAgent",
			Handler:    _DisputeAgents_RegisterDisputeAgent_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "grpc.proto",
}

DisputeAgents_ServiceDesc is the grpc.ServiceDesc for DisputeAgents service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var GetVersion_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "io.bisq.protobuffer.GetVersion",
	HandlerType: (*GetVersionServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetVersion",
			Handler:    _GetVersion_GetVersion_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "grpc.proto",
}

GetVersion_ServiceDesc is the grpc.ServiceDesc for GetVersion service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Help_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "io.bisq.protobuffer.Help",
	HandlerType: (*HelpServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetMethodHelp",
			Handler:    _Help_GetMethodHelp_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "grpc.proto",
}

Help_ServiceDesc is the grpc.ServiceDesc for Help service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Offers_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "io.bisq.protobuffer.Offers",
	HandlerType: (*OffersServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetOfferCategory",
			Handler:    _Offers_GetOfferCategory_Handler,
		},
		{
			MethodName: "GetBsqSwapOffer",
			Handler:    _Offers_GetBsqSwapOffer_Handler,
		},
		{
			MethodName: "GetOffer",
			Handler:    _Offers_GetOffer_Handler,
		},
		{
			MethodName: "GetMyBsqSwapOffer",
			Handler:    _Offers_GetMyBsqSwapOffer_Handler,
		},
		{
			MethodName: "GetMyOffer",
			Handler:    _Offers_GetMyOffer_Handler,
		},
		{
			MethodName: "GetBsqSwapOffers",
			Handler:    _Offers_GetBsqSwapOffers_Handler,
		},
		{
			MethodName: "GetOffers",
			Handler:    _Offers_GetOffers_Handler,
		},
		{
			MethodName: "GetMyBsqSwapOffers",
			Handler:    _Offers_GetMyBsqSwapOffers_Handler,
		},
		{
			MethodName: "GetMyOffers",
			Handler:    _Offers_GetMyOffers_Handler,
		},
		{
			MethodName: "CreateBsqSwapOffer",
			Handler:    _Offers_CreateBsqSwapOffer_Handler,
		},
		{
			MethodName: "CreateOffer",
			Handler:    _Offers_CreateOffer_Handler,
		},
		{
			MethodName: "EditOffer",
			Handler:    _Offers_EditOffer_Handler,
		},
		{
			MethodName: "CancelOffer",
			Handler:    _Offers_CancelOffer_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "grpc.proto",
}

Offers_ServiceDesc is the grpc.ServiceDesc for Offers service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var PaymentAccounts_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "io.bisq.protobuffer.PaymentAccounts",
	HandlerType: (*PaymentAccountsServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreatePaymentAccount",
			Handler:    _PaymentAccounts_CreatePaymentAccount_Handler,
		},
		{
			MethodName: "GetPaymentAccounts",
			Handler:    _PaymentAccounts_GetPaymentAccounts_Handler,
		},
		{
			MethodName: "GetPaymentMethods",
			Handler:    _PaymentAccounts_GetPaymentMethods_Handler,
		},
		{
			MethodName: "GetPaymentAccountForm",
			Handler:    _PaymentAccounts_GetPaymentAccountForm_Handler,
		},
		{
			MethodName: "CreateCryptoCurrencyPaymentAccount",
			Handler:    _PaymentAccounts_CreateCryptoCurrencyPaymentAccount_Handler,
		},
		{
			MethodName: "GetCryptoCurrencyPaymentMethods",
			Handler:    _PaymentAccounts_GetCryptoCurrencyPaymentMethods_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "grpc.proto",
}

PaymentAccounts_ServiceDesc is the grpc.ServiceDesc for PaymentAccounts service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Price_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "io.bisq.protobuffer.Price",
	HandlerType: (*PriceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetMarketPrice",
			Handler:    _Price_GetMarketPrice_Handler,
		},
		{
			MethodName: "GetAverageBsqTradePrice",
			Handler:    _Price_GetAverageBsqTradePrice_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "grpc.proto",
}

Price_ServiceDesc is the grpc.ServiceDesc for Price service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var ShutdownServer_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "io.bisq.protobuffer.ShutdownServer",
	HandlerType: (*ShutdownServerServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Stop",
			Handler:    _ShutdownServer_Stop_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "grpc.proto",
}

ShutdownServer_ServiceDesc is the grpc.ServiceDesc for ShutdownServer service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Trades_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "io.bisq.protobuffer.Trades",
	HandlerType: (*TradesServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetTrade",
			Handler:    _Trades_GetTrade_Handler,
		},
		{
			MethodName: "GetTrades",
			Handler:    _Trades_GetTrades_Handler,
		},
		{
			MethodName: "TakeOffer",
			Handler:    _Trades_TakeOffer_Handler,
		},
		{
			MethodName: "ConfirmPaymentStarted",
			Handler:    _Trades_ConfirmPaymentStarted_Handler,
		},
		{
			MethodName: "ConfirmPaymentReceived",
			Handler:    _Trades_ConfirmPaymentReceived_Handler,
		},
		{
			MethodName: "CloseTrade",
			Handler:    _Trades_CloseTrade_Handler,
		},
		{
			MethodName: "FailTrade",
			Handler:    _Trades_FailTrade_Handler,
		},
		{
			MethodName: "UnFailTrade",
			Handler:    _Trades_UnFailTrade_Handler,
		},
		{
			MethodName: "WithdrawFunds",
			Handler:    _Trades_WithdrawFunds_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "grpc.proto",
}

Trades_ServiceDesc is the grpc.ServiceDesc for Trades service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Wallets_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "io.bisq.protobuffer.Wallets",
	HandlerType: (*WalletsServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetNetwork",
			Handler:    _Wallets_GetNetwork_Handler,
		},
		{
			MethodName: "GetBalances",
			Handler:    _Wallets_GetBalances_Handler,
		},
		{
			MethodName: "GetAddressBalance",
			Handler:    _Wallets_GetAddressBalance_Handler,
		},
		{
			MethodName: "GetUnusedBsqAddress",
			Handler:    _Wallets_GetUnusedBsqAddress_Handler,
		},
		{
			MethodName: "SendBsq",
			Handler:    _Wallets_SendBsq_Handler,
		},
		{
			MethodName: "SendBtc",
			Handler:    _Wallets_SendBtc_Handler,
		},
		{
			MethodName: "VerifyBsqSentToAddress",
			Handler:    _Wallets_VerifyBsqSentToAddress_Handler,
		},
		{
			MethodName: "GetTxFeeRate",
			Handler:    _Wallets_GetTxFeeRate_Handler,
		},
		{
			MethodName: "SetTxFeeRatePreference",
			Handler:    _Wallets_SetTxFeeRatePreference_Handler,
		},
		{
			MethodName: "UnsetTxFeeRatePreference",
			Handler:    _Wallets_UnsetTxFeeRatePreference_Handler,
		},
		{
			MethodName: "GetTransactions",
			Handler:    _Wallets_GetTransactions_Handler,
		},
		{
			MethodName: "GetTransaction",
			Handler:    _Wallets_GetTransaction_Handler,
		},
		{
			MethodName: "GetFundingAddresses",
			Handler:    _Wallets_GetFundingAddresses_Handler,
		},
		{
			MethodName: "SetWalletPassword",
			Handler:    _Wallets_SetWalletPassword_Handler,
		},
		{
			MethodName: "RemoveWalletPassword",
			Handler:    _Wallets_RemoveWalletPassword_Handler,
		},
		{
			MethodName: "LockWallet",
			Handler:    _Wallets_LockWallet_Handler,
		},
		{
			MethodName: "UnlockWallet",
			Handler:    _Wallets_UnlockWallet_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "grpc.proto",
}

Wallets_ServiceDesc is the grpc.ServiceDesc for Wallets service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterDisputeAgentsServer added in v0.1.4

func RegisterDisputeAgentsServer(s grpc.ServiceRegistrar, srv DisputeAgentsServer)

func RegisterGetVersionServer added in v0.1.4

func RegisterGetVersionServer(s grpc.ServiceRegistrar, srv GetVersionServer)

func RegisterHelpServer added in v0.1.4

func RegisterHelpServer(s grpc.ServiceRegistrar, srv HelpServer)

func RegisterOffersServer added in v0.1.4

func RegisterOffersServer(s grpc.ServiceRegistrar, srv OffersServer)

func RegisterPaymentAccountsServer added in v0.1.4

func RegisterPaymentAccountsServer(s grpc.ServiceRegistrar, srv PaymentAccountsServer)

func RegisterPriceServer added in v0.1.4

func RegisterPriceServer(s grpc.ServiceRegistrar, srv PriceServer)

func RegisterShutdownServerServer added in v0.1.4

func RegisterShutdownServerServer(s grpc.ServiceRegistrar, srv ShutdownServerServer)

func RegisterTradesServer added in v0.1.4

func RegisterTradesServer(s grpc.ServiceRegistrar, srv TradesServer)

func RegisterWalletsServer added in v0.1.4

func RegisterWalletsServer(s grpc.ServiceRegistrar, srv WalletsServer)

Types

type AccountAgeWitness added in v0.1.4

type AccountAgeWitness struct {
	Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	Date int64  `protobuf:"varint,2,opt,name=date,proto3" json:"date,omitempty"`
	// contains filtered or unexported fields
}

func (*AccountAgeWitness) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AccountAgeWitness.ProtoReflect.Descriptor instead.

func (*AccountAgeWitness) GetDate added in v0.1.4

func (x *AccountAgeWitness) GetDate() int64

func (*AccountAgeWitness) GetHash added in v0.1.4

func (x *AccountAgeWitness) GetHash() []byte

func (*AccountAgeWitness) ProtoMessage added in v0.1.4

func (*AccountAgeWitness) ProtoMessage()

func (*AccountAgeWitness) ProtoReflect added in v0.1.4

func (x *AccountAgeWitness) ProtoReflect() protoreflect.Message

func (*AccountAgeWitness) Reset added in v0.1.4

func (x *AccountAgeWitness) Reset()

func (*AccountAgeWitness) String added in v0.1.4

func (x *AccountAgeWitness) String() string

type AccountAgeWitnessStore added in v0.1.4

type AccountAgeWitnessStore struct {
	Items []*AccountAgeWitness `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

We use a list not a hash map to save disc space. The hash can be calculated from the payload anyway.

func (*AccountAgeWitnessStore) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AccountAgeWitnessStore.ProtoReflect.Descriptor instead.

func (*AccountAgeWitnessStore) GetItems added in v0.1.4

func (x *AccountAgeWitnessStore) GetItems() []*AccountAgeWitness

func (*AccountAgeWitnessStore) ProtoMessage added in v0.1.4

func (*AccountAgeWitnessStore) ProtoMessage()

func (*AccountAgeWitnessStore) ProtoReflect added in v0.1.4

func (x *AccountAgeWitnessStore) ProtoReflect() protoreflect.Message

func (*AccountAgeWitnessStore) Reset added in v0.1.4

func (x *AccountAgeWitnessStore) Reset()

func (*AccountAgeWitnessStore) String added in v0.1.4

func (x *AccountAgeWitnessStore) String() string

type AccountingBlock added in v0.1.10

type AccountingBlock struct {
	Height                     uint32          `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	TimeInSec                  uint32          `protobuf:"varint,2,opt,name=time_in_sec,json=timeInSec,proto3" json:"time_in_sec,omitempty"`
	TruncatedHash              []byte          `protobuf:"bytes,3,opt,name=truncated_hash,json=truncatedHash,proto3" json:"truncated_hash,omitempty"`
	TruncatedPreviousBlockHash []byte          `` /* 143-byte string literal not displayed */
	Txs                        []*AccountingTx `protobuf:"bytes,5,rep,name=txs,proto3" json:"txs,omitempty"`
	// contains filtered or unexported fields
}

func (*AccountingBlock) Descriptor deprecated added in v0.1.10

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

Deprecated: Use AccountingBlock.ProtoReflect.Descriptor instead.

func (*AccountingBlock) GetHeight added in v0.1.10

func (x *AccountingBlock) GetHeight() uint32

func (*AccountingBlock) GetTimeInSec added in v0.1.10

func (x *AccountingBlock) GetTimeInSec() uint32

func (*AccountingBlock) GetTruncatedHash added in v0.1.10

func (x *AccountingBlock) GetTruncatedHash() []byte

func (*AccountingBlock) GetTruncatedPreviousBlockHash added in v0.1.10

func (x *AccountingBlock) GetTruncatedPreviousBlockHash() []byte

func (*AccountingBlock) GetTxs added in v0.1.10

func (x *AccountingBlock) GetTxs() []*AccountingTx

func (*AccountingBlock) ProtoMessage added in v0.1.10

func (*AccountingBlock) ProtoMessage()

func (*AccountingBlock) ProtoReflect added in v0.1.10

func (x *AccountingBlock) ProtoReflect() protoreflect.Message

func (*AccountingBlock) Reset added in v0.1.10

func (x *AccountingBlock) Reset()

func (*AccountingBlock) String added in v0.1.10

func (x *AccountingBlock) String() string

type AccountingTx added in v0.1.10

type AccountingTx struct {
	Type          uint32                `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	Outputs       []*AccountingTxOutput `protobuf:"bytes,2,rep,name=outputs,proto3" json:"outputs,omitempty"`
	TruncatedTxId []byte                `protobuf:"bytes,3,opt,name=truncated_tx_id,json=truncatedTxId,proto3" json:"truncated_tx_id,omitempty"`
	// contains filtered or unexported fields
}

func (*AccountingTx) Descriptor deprecated added in v0.1.10

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

Deprecated: Use AccountingTx.ProtoReflect.Descriptor instead.

func (*AccountingTx) GetOutputs added in v0.1.10

func (x *AccountingTx) GetOutputs() []*AccountingTxOutput

func (*AccountingTx) GetTruncatedTxId added in v0.1.10

func (x *AccountingTx) GetTruncatedTxId() []byte

func (*AccountingTx) GetType added in v0.1.10

func (x *AccountingTx) GetType() uint32

func (*AccountingTx) ProtoMessage added in v0.1.10

func (*AccountingTx) ProtoMessage()

func (*AccountingTx) ProtoReflect added in v0.1.10

func (x *AccountingTx) ProtoReflect() protoreflect.Message

func (*AccountingTx) Reset added in v0.1.10

func (x *AccountingTx) Reset()

func (*AccountingTx) String added in v0.1.10

func (x *AccountingTx) String() string

type AccountingTxOutput added in v0.1.10

type AccountingTxOutput struct {
	Value uint32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	Name  string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

Burningman accounting data

func (*AccountingTxOutput) Descriptor deprecated added in v0.1.10

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

Deprecated: Use AccountingTxOutput.ProtoReflect.Descriptor instead.

func (*AccountingTxOutput) GetName added in v0.1.10

func (x *AccountingTxOutput) GetName() string

func (*AccountingTxOutput) GetValue added in v0.1.10

func (x *AccountingTxOutput) GetValue() uint32

func (*AccountingTxOutput) ProtoMessage added in v0.1.10

func (*AccountingTxOutput) ProtoMessage()

func (*AccountingTxOutput) ProtoReflect added in v0.1.10

func (x *AccountingTxOutput) ProtoReflect() protoreflect.Message

func (*AccountingTxOutput) Reset added in v0.1.10

func (x *AccountingTxOutput) Reset()

func (*AccountingTxOutput) String added in v0.1.10

func (x *AccountingTxOutput) String() string

type AchTransferAccountPayload added in v0.1.6

type AchTransferAccountPayload struct {
	HolderAddress string `protobuf:"bytes,1,opt,name=holder_address,json=holderAddress,proto3" json:"holder_address,omitempty"`
	// contains filtered or unexported fields
}

func (*AchTransferAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use AchTransferAccountPayload.ProtoReflect.Descriptor instead.

func (*AchTransferAccountPayload) GetHolderAddress added in v0.1.6

func (x *AchTransferAccountPayload) GetHolderAddress() string

func (*AchTransferAccountPayload) ProtoMessage added in v0.1.6

func (*AchTransferAccountPayload) ProtoMessage()

func (*AchTransferAccountPayload) ProtoReflect added in v0.1.6

func (*AchTransferAccountPayload) Reset added in v0.1.6

func (x *AchTransferAccountPayload) Reset()

func (*AchTransferAccountPayload) String added in v0.1.6

func (x *AchTransferAccountPayload) String() string

type AckMessage added in v0.1.4

type AckMessage struct {
	Uid                string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	SenderNodeAddress  *NodeAddress `protobuf:"bytes,2,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	SourceType         string       `protobuf:"bytes,3,opt,name=source_type,json=sourceType,proto3" json:"source_type,omitempty"` // enum name. e.g.  TradeMessage, DisputeMessage,...
	SourceMsgClassName string       `protobuf:"bytes,4,opt,name=source_msg_class_name,json=sourceMsgClassName,proto3" json:"source_msg_class_name,omitempty"`
	SourceUid          string       `protobuf:"bytes,5,opt,name=source_uid,json=sourceUid,proto3" json:"source_uid,omitempty"`          // uid of source (TradeMessage)
	SourceId           string       `protobuf:"bytes,6,opt,name=source_id,json=sourceId,proto3" json:"source_id,omitempty"`             // id of source (tradeId, disputeId)
	Success            bool         `protobuf:"varint,7,opt,name=success,proto3" json:"success,omitempty"`                              // true if source message was processed successfully
	ErrorMessage       string       `protobuf:"bytes,8,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"` // optional error message if source message processing failed
	// contains filtered or unexported fields
}

func (*AckMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AckMessage.ProtoReflect.Descriptor instead.

func (*AckMessage) GetErrorMessage added in v0.1.4

func (x *AckMessage) GetErrorMessage() string

func (*AckMessage) GetSenderNodeAddress added in v0.1.4

func (x *AckMessage) GetSenderNodeAddress() *NodeAddress

func (*AckMessage) GetSourceId added in v0.1.4

func (x *AckMessage) GetSourceId() string

func (*AckMessage) GetSourceMsgClassName added in v0.1.4

func (x *AckMessage) GetSourceMsgClassName() string

func (*AckMessage) GetSourceType added in v0.1.4

func (x *AckMessage) GetSourceType() string

func (*AckMessage) GetSourceUid added in v0.1.4

func (x *AckMessage) GetSourceUid() string

func (*AckMessage) GetSuccess added in v0.1.4

func (x *AckMessage) GetSuccess() bool

func (*AckMessage) GetUid added in v0.1.4

func (x *AckMessage) GetUid() string

func (*AckMessage) ProtoMessage added in v0.1.4

func (*AckMessage) ProtoMessage()

func (*AckMessage) ProtoReflect added in v0.1.4

func (x *AckMessage) ProtoReflect() protoreflect.Message

func (*AckMessage) Reset added in v0.1.4

func (x *AckMessage) Reset()

func (*AckMessage) String added in v0.1.4

func (x *AckMessage) String() string

type AddDataMessage added in v0.1.4

type AddDataMessage struct {
	Entry *StorageEntryWrapper `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*AddDataMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AddDataMessage.ProtoReflect.Descriptor instead.

func (*AddDataMessage) GetEntry added in v0.1.4

func (x *AddDataMessage) GetEntry() *StorageEntryWrapper

func (*AddDataMessage) ProtoMessage added in v0.1.4

func (*AddDataMessage) ProtoMessage()

func (*AddDataMessage) ProtoReflect added in v0.1.4

func (x *AddDataMessage) ProtoReflect() protoreflect.Message

func (*AddDataMessage) Reset added in v0.1.4

func (x *AddDataMessage) Reset()

func (*AddDataMessage) String added in v0.1.4

func (x *AddDataMessage) String() string

type AddPersistableNetworkPayloadMessage added in v0.1.4

type AddPersistableNetworkPayloadMessage struct {
	Payload *PersistableNetworkPayload `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
	// contains filtered or unexported fields
}

func (*AddPersistableNetworkPayloadMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AddPersistableNetworkPayloadMessage.ProtoReflect.Descriptor instead.

func (*AddPersistableNetworkPayloadMessage) GetPayload added in v0.1.4

func (*AddPersistableNetworkPayloadMessage) ProtoMessage added in v0.1.4

func (*AddPersistableNetworkPayloadMessage) ProtoMessage()

func (*AddPersistableNetworkPayloadMessage) ProtoReflect added in v0.1.4

func (*AddPersistableNetworkPayloadMessage) Reset added in v0.1.4

func (*AddPersistableNetworkPayloadMessage) String added in v0.1.4

type AddressBalanceInfo added in v0.1.4

type AddressBalanceInfo struct {
	Address          string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`                                            // The bitcoin wallet address.
	Balance          int64  `protobuf:"varint,2,opt,name=balance,proto3" json:"balance,omitempty"`                                           // The address' BTC balance in satoshis.
	NumConfirmations int64  `protobuf:"varint,3,opt,name=num_confirmations,json=numConfirmations,proto3" json:"num_confirmations,omitempty"` // The number of confirmations for the most recent transaction referencing the output address.
	IsAddressUnused  bool   `protobuf:"varint,4,opt,name=is_address_unused,json=isAddressUnused,proto3" json:"is_address_unused,omitempty"`  // Whether the bitcoin address has ever been used, or not.
	// contains filtered or unexported fields
}

func (*AddressBalanceInfo) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AddressBalanceInfo.ProtoReflect.Descriptor instead.

func (*AddressBalanceInfo) GetAddress added in v0.1.4

func (x *AddressBalanceInfo) GetAddress() string

func (*AddressBalanceInfo) GetBalance added in v0.1.4

func (x *AddressBalanceInfo) GetBalance() int64

func (*AddressBalanceInfo) GetIsAddressUnused added in v0.1.5

func (x *AddressBalanceInfo) GetIsAddressUnused() bool

func (*AddressBalanceInfo) GetNumConfirmations added in v0.1.4

func (x *AddressBalanceInfo) GetNumConfirmations() int64

func (*AddressBalanceInfo) ProtoMessage added in v0.1.4

func (*AddressBalanceInfo) ProtoMessage()

func (*AddressBalanceInfo) ProtoReflect added in v0.1.4

func (x *AddressBalanceInfo) ProtoReflect() protoreflect.Message

func (*AddressBalanceInfo) Reset added in v0.1.4

func (x *AddressBalanceInfo) Reset()

func (*AddressBalanceInfo) String added in v0.1.4

func (x *AddressBalanceInfo) String() string

type AddressEntry added in v0.1.4

type AddressEntry struct {
	OfferId              string               `protobuf:"bytes,7,opt,name=offer_id,json=offerId,proto3" json:"offer_id,omitempty"`
	Context              AddressEntry_Context `protobuf:"varint,8,opt,name=context,proto3,enum=io.bisq.protobuffer.AddressEntry_Context" json:"context,omitempty"`
	PubKey               []byte               `protobuf:"bytes,9,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	PubKeyHash           []byte               `protobuf:"bytes,10,opt,name=pub_key_hash,json=pubKeyHash,proto3" json:"pub_key_hash,omitempty"`
	CoinLockedInMultiSig int64                `` /* 129-byte string literal not displayed */
	Segwit               bool                 `protobuf:"varint,12,opt,name=segwit,proto3" json:"segwit,omitempty"`
	// contains filtered or unexported fields
}

func (*AddressEntry) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AddressEntry.ProtoReflect.Descriptor instead.

func (*AddressEntry) GetCoinLockedInMultiSig added in v0.1.4

func (x *AddressEntry) GetCoinLockedInMultiSig() int64

func (*AddressEntry) GetContext added in v0.1.4

func (x *AddressEntry) GetContext() AddressEntry_Context

func (*AddressEntry) GetOfferId added in v0.1.4

func (x *AddressEntry) GetOfferId() string

func (*AddressEntry) GetPubKey added in v0.1.4

func (x *AddressEntry) GetPubKey() []byte

func (*AddressEntry) GetPubKeyHash added in v0.1.4

func (x *AddressEntry) GetPubKeyHash() []byte

func (*AddressEntry) GetSegwit added in v0.1.4

func (x *AddressEntry) GetSegwit() bool

func (*AddressEntry) ProtoMessage added in v0.1.4

func (*AddressEntry) ProtoMessage()

func (*AddressEntry) ProtoReflect added in v0.1.4

func (x *AddressEntry) ProtoReflect() protoreflect.Message

func (*AddressEntry) Reset added in v0.1.4

func (x *AddressEntry) Reset()

func (*AddressEntry) String added in v0.1.4

func (x *AddressEntry) String() string

type AddressEntryList added in v0.1.4

type AddressEntryList struct {
	AddressEntry []*AddressEntry `protobuf:"bytes,1,rep,name=address_entry,json=addressEntry,proto3" json:"address_entry,omitempty"`
	// contains filtered or unexported fields
}

func (*AddressEntryList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AddressEntryList.ProtoReflect.Descriptor instead.

func (*AddressEntryList) GetAddressEntry added in v0.1.4

func (x *AddressEntryList) GetAddressEntry() []*AddressEntry

func (*AddressEntryList) ProtoMessage added in v0.1.4

func (*AddressEntryList) ProtoMessage()

func (*AddressEntryList) ProtoReflect added in v0.1.4

func (x *AddressEntryList) ProtoReflect() protoreflect.Message

func (*AddressEntryList) Reset added in v0.1.4

func (x *AddressEntryList) Reset()

func (*AddressEntryList) String added in v0.1.4

func (x *AddressEntryList) String() string

type AddressEntry_Context added in v0.1.4

type AddressEntry_Context int32
const (
	AddressEntry_PB_ERROR           AddressEntry_Context = 0
	AddressEntry_ARBITRATOR         AddressEntry_Context = 1
	AddressEntry_AVAILABLE          AddressEntry_Context = 2
	AddressEntry_OFFER_FUNDING      AddressEntry_Context = 3
	AddressEntry_RESERVED_FOR_TRADE AddressEntry_Context = 4
	AddressEntry_MULTI_SIG          AddressEntry_Context = 5
	AddressEntry_TRADE_PAYOUT       AddressEntry_Context = 6
)

func (AddressEntry_Context) Descriptor added in v0.1.4

func (AddressEntry_Context) Enum added in v0.1.4

func (AddressEntry_Context) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use AddressEntry_Context.Descriptor instead.

func (AddressEntry_Context) Number added in v0.1.4

func (AddressEntry_Context) String added in v0.1.4

func (x AddressEntry_Context) String() string

func (AddressEntry_Context) Type added in v0.1.4

type AdvancedCashAccountPayload added in v0.1.4

type AdvancedCashAccountPayload struct {
	AccountNr string `protobuf:"bytes,1,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvancedCashAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AdvancedCashAccountPayload.ProtoReflect.Descriptor instead.

func (*AdvancedCashAccountPayload) GetAccountNr added in v0.1.4

func (x *AdvancedCashAccountPayload) GetAccountNr() string

func (*AdvancedCashAccountPayload) ProtoMessage added in v0.1.4

func (*AdvancedCashAccountPayload) ProtoMessage()

func (*AdvancedCashAccountPayload) ProtoReflect added in v0.1.4

func (*AdvancedCashAccountPayload) Reset added in v0.1.4

func (x *AdvancedCashAccountPayload) Reset()

func (*AdvancedCashAccountPayload) String added in v0.1.4

func (x *AdvancedCashAccountPayload) String() string

type Alert added in v0.1.4

type Alert struct {
	Message           string            `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	Version           string            `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	IsUpdateInfo      bool              `protobuf:"varint,3,opt,name=is_update_info,json=isUpdateInfo,proto3" json:"is_update_info,omitempty"`
	SignatureAsBase64 string            `protobuf:"bytes,4,opt,name=signature_as_base64,json=signatureAsBase64,proto3" json:"signature_as_base64,omitempty"`
	OwnerPubKeyBytes  []byte            `protobuf:"bytes,5,opt,name=owner_pub_key_bytes,json=ownerPubKeyBytes,proto3" json:"owner_pub_key_bytes,omitempty"`
	ExtraData         map[string]string `` /* 176-byte string literal not displayed */
	IsPreReleaseInfo  bool              `protobuf:"varint,7,opt,name=is_pre_release_info,json=isPreReleaseInfo,proto3" json:"is_pre_release_info,omitempty"`
	// contains filtered or unexported fields
}

func (*Alert) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Alert.ProtoReflect.Descriptor instead.

func (*Alert) GetExtraData added in v0.1.4

func (x *Alert) GetExtraData() map[string]string

func (*Alert) GetIsPreReleaseInfo added in v0.1.4

func (x *Alert) GetIsPreReleaseInfo() bool

func (*Alert) GetIsUpdateInfo added in v0.1.4

func (x *Alert) GetIsUpdateInfo() bool

func (*Alert) GetMessage added in v0.1.4

func (x *Alert) GetMessage() string

func (*Alert) GetOwnerPubKeyBytes added in v0.1.4

func (x *Alert) GetOwnerPubKeyBytes() []byte

func (*Alert) GetSignatureAsBase64 added in v0.1.4

func (x *Alert) GetSignatureAsBase64() string

func (*Alert) GetVersion added in v0.1.4

func (x *Alert) GetVersion() string

func (*Alert) ProtoMessage added in v0.1.4

func (*Alert) ProtoMessage()

func (*Alert) ProtoReflect added in v0.1.4

func (x *Alert) ProtoReflect() protoreflect.Message

func (*Alert) Reset added in v0.1.4

func (x *Alert) Reset()

func (*Alert) String added in v0.1.4

func (x *Alert) String() string

type AliPayAccountPayload added in v0.1.4

type AliPayAccountPayload struct {
	AccountNr string `protobuf:"bytes,1,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*AliPayAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AliPayAccountPayload.ProtoReflect.Descriptor instead.

func (*AliPayAccountPayload) GetAccountNr added in v0.1.4

func (x *AliPayAccountPayload) GetAccountNr() string

func (*AliPayAccountPayload) ProtoMessage added in v0.1.4

func (*AliPayAccountPayload) ProtoMessage()

func (*AliPayAccountPayload) ProtoReflect added in v0.1.4

func (x *AliPayAccountPayload) ProtoReflect() protoreflect.Message

func (*AliPayAccountPayload) Reset added in v0.1.4

func (x *AliPayAccountPayload) Reset()

func (*AliPayAccountPayload) String added in v0.1.4

func (x *AliPayAccountPayload) String() string

type AmazonGiftCardAccountPayload added in v0.1.4

type AmazonGiftCardAccountPayload struct {
	EmailOrMobileNr string `protobuf:"bytes,1,opt,name=email_or_mobile_nr,json=emailOrMobileNr,proto3" json:"email_or_mobile_nr,omitempty"`
	CountryCode     string `protobuf:"bytes,2,opt,name=country_code,json=countryCode,proto3" json:"country_code,omitempty"`
	// contains filtered or unexported fields
}

func (*AmazonGiftCardAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AmazonGiftCardAccountPayload.ProtoReflect.Descriptor instead.

func (*AmazonGiftCardAccountPayload) GetCountryCode added in v0.1.4

func (x *AmazonGiftCardAccountPayload) GetCountryCode() string

func (*AmazonGiftCardAccountPayload) GetEmailOrMobileNr added in v0.1.4

func (x *AmazonGiftCardAccountPayload) GetEmailOrMobileNr() string

func (*AmazonGiftCardAccountPayload) ProtoMessage added in v0.1.4

func (*AmazonGiftCardAccountPayload) ProtoMessage()

func (*AmazonGiftCardAccountPayload) ProtoReflect added in v0.1.4

func (*AmazonGiftCardAccountPayload) Reset added in v0.1.4

func (x *AmazonGiftCardAccountPayload) Reset()

func (*AmazonGiftCardAccountPayload) String added in v0.1.4

type ArbitrationDisputeList added in v0.1.4

type ArbitrationDisputeList struct {
	Dispute []*Dispute `protobuf:"bytes,1,rep,name=dispute,proto3" json:"dispute,omitempty"`
	// contains filtered or unexported fields
}

func (*ArbitrationDisputeList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ArbitrationDisputeList.ProtoReflect.Descriptor instead.

func (*ArbitrationDisputeList) GetDispute added in v0.1.4

func (x *ArbitrationDisputeList) GetDispute() []*Dispute

func (*ArbitrationDisputeList) ProtoMessage added in v0.1.4

func (*ArbitrationDisputeList) ProtoMessage()

func (*ArbitrationDisputeList) ProtoReflect added in v0.1.4

func (x *ArbitrationDisputeList) ProtoReflect() protoreflect.Message

func (*ArbitrationDisputeList) Reset added in v0.1.4

func (x *ArbitrationDisputeList) Reset()

func (*ArbitrationDisputeList) String added in v0.1.4

func (x *ArbitrationDisputeList) String() string

type Arbitrator added in v0.1.4

type Arbitrator struct {
	NodeAddress           *NodeAddress      `protobuf:"bytes,1,opt,name=node_address,json=nodeAddress,proto3" json:"node_address,omitempty"`
	LanguageCodes         []string          `protobuf:"bytes,2,rep,name=language_codes,json=languageCodes,proto3" json:"language_codes,omitempty"`
	RegistrationDate      int64             `protobuf:"varint,3,opt,name=registration_date,json=registrationDate,proto3" json:"registration_date,omitempty"`
	RegistrationSignature string            `protobuf:"bytes,4,opt,name=registration_signature,json=registrationSignature,proto3" json:"registration_signature,omitempty"`
	RegistrationPubKey    []byte            `protobuf:"bytes,5,opt,name=registration_pub_key,json=registrationPubKey,proto3" json:"registration_pub_key,omitempty"`
	PubKeyRing            *PubKeyRing       `protobuf:"bytes,6,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	BtcPubKey             []byte            `protobuf:"bytes,7,opt,name=btc_pub_key,json=btcPubKey,proto3" json:"btc_pub_key,omitempty"`
	BtcAddress            string            `protobuf:"bytes,8,opt,name=btc_address,json=btcAddress,proto3" json:"btc_address,omitempty"`
	EmailAddress          string            `protobuf:"bytes,9,opt,name=email_address,json=emailAddress,proto3" json:"email_address,omitempty"`
	Info                  string            `protobuf:"bytes,10,opt,name=info,proto3" json:"info,omitempty"`
	ExtraData             map[string]string `` /* 177-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Arbitrator) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Arbitrator.ProtoReflect.Descriptor instead.

func (*Arbitrator) GetBtcAddress added in v0.1.4

func (x *Arbitrator) GetBtcAddress() string

func (*Arbitrator) GetBtcPubKey added in v0.1.4

func (x *Arbitrator) GetBtcPubKey() []byte

func (*Arbitrator) GetEmailAddress added in v0.1.4

func (x *Arbitrator) GetEmailAddress() string

func (*Arbitrator) GetExtraData added in v0.1.4

func (x *Arbitrator) GetExtraData() map[string]string

func (*Arbitrator) GetInfo added in v0.1.4

func (x *Arbitrator) GetInfo() string

func (*Arbitrator) GetLanguageCodes added in v0.1.4

func (x *Arbitrator) GetLanguageCodes() []string

func (*Arbitrator) GetNodeAddress added in v0.1.4

func (x *Arbitrator) GetNodeAddress() *NodeAddress

func (*Arbitrator) GetPubKeyRing added in v0.1.4

func (x *Arbitrator) GetPubKeyRing() *PubKeyRing

func (*Arbitrator) GetRegistrationDate added in v0.1.4

func (x *Arbitrator) GetRegistrationDate() int64

func (*Arbitrator) GetRegistrationPubKey added in v0.1.4

func (x *Arbitrator) GetRegistrationPubKey() []byte

func (*Arbitrator) GetRegistrationSignature added in v0.1.4

func (x *Arbitrator) GetRegistrationSignature() string

func (*Arbitrator) ProtoMessage added in v0.1.4

func (*Arbitrator) ProtoMessage()

func (*Arbitrator) ProtoReflect added in v0.1.4

func (x *Arbitrator) ProtoReflect() protoreflect.Message

func (*Arbitrator) Reset added in v0.1.4

func (x *Arbitrator) Reset()

func (*Arbitrator) String added in v0.1.4

func (x *Arbitrator) String() string

type Attachment added in v0.1.4

type Attachment struct {
	FileName string `protobuf:"bytes,1,opt,name=file_name,json=fileName,proto3" json:"file_name,omitempty"`
	Bytes    []byte `protobuf:"bytes,2,opt,name=bytes,proto3" json:"bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*Attachment) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Attachment.ProtoReflect.Descriptor instead.

func (*Attachment) GetBytes added in v0.1.4

func (x *Attachment) GetBytes() []byte

func (*Attachment) GetFileName added in v0.1.4

func (x *Attachment) GetFileName() string

func (*Attachment) ProtoMessage added in v0.1.4

func (*Attachment) ProtoMessage()

func (*Attachment) ProtoReflect added in v0.1.4

func (x *Attachment) ProtoReflect() protoreflect.Message

func (*Attachment) Reset added in v0.1.4

func (x *Attachment) Reset()

func (*Attachment) String added in v0.1.4

func (x *Attachment) String() string

type AustraliaPayidPayload added in v0.1.4

type AustraliaPayidPayload struct {
	BankAccountName string `protobuf:"bytes,1,opt,name=bank_account_name,json=bankAccountName,proto3" json:"bank_account_name,omitempty"`
	Payid           string `protobuf:"bytes,2,opt,name=payid,proto3" json:"payid,omitempty"`
	// contains filtered or unexported fields
}

func (*AustraliaPayidPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AustraliaPayidPayload.ProtoReflect.Descriptor instead.

func (*AustraliaPayidPayload) GetBankAccountName added in v0.1.4

func (x *AustraliaPayidPayload) GetBankAccountName() string

func (*AustraliaPayidPayload) GetPayid added in v0.1.4

func (x *AustraliaPayidPayload) GetPayid() string

func (*AustraliaPayidPayload) ProtoMessage added in v0.1.4

func (*AustraliaPayidPayload) ProtoMessage()

func (*AustraliaPayidPayload) ProtoReflect added in v0.1.4

func (x *AustraliaPayidPayload) ProtoReflect() protoreflect.Message

func (*AustraliaPayidPayload) Reset added in v0.1.4

func (x *AustraliaPayidPayload) Reset()

func (*AustraliaPayidPayload) String added in v0.1.4

func (x *AustraliaPayidPayload) String() string

type AutoConfirmSettings added in v0.1.4

type AutoConfirmSettings struct {
	Enabled               bool     `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	RequiredConfirmations int32    `protobuf:"varint,2,opt,name=required_confirmations,json=requiredConfirmations,proto3" json:"required_confirmations,omitempty"`
	TradeLimit            int64    `protobuf:"varint,3,opt,name=trade_limit,json=tradeLimit,proto3" json:"trade_limit,omitempty"`
	ServiceAddresses      []string `protobuf:"bytes,4,rep,name=service_addresses,json=serviceAddresses,proto3" json:"service_addresses,omitempty"`
	CurrencyCode          string   `protobuf:"bytes,5,opt,name=currency_code,json=currencyCode,proto3" json:"currency_code,omitempty"`
	// contains filtered or unexported fields
}

func (*AutoConfirmSettings) Descriptor deprecated added in v0.1.4

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

Deprecated: Use AutoConfirmSettings.ProtoReflect.Descriptor instead.

func (*AutoConfirmSettings) GetCurrencyCode added in v0.1.4

func (x *AutoConfirmSettings) GetCurrencyCode() string

func (*AutoConfirmSettings) GetEnabled added in v0.1.4

func (x *AutoConfirmSettings) GetEnabled() bool

func (*AutoConfirmSettings) GetRequiredConfirmations added in v0.1.4

func (x *AutoConfirmSettings) GetRequiredConfirmations() int32

func (*AutoConfirmSettings) GetServiceAddresses added in v0.1.4

func (x *AutoConfirmSettings) GetServiceAddresses() []string

func (*AutoConfirmSettings) GetTradeLimit added in v0.1.4

func (x *AutoConfirmSettings) GetTradeLimit() int64

func (*AutoConfirmSettings) ProtoMessage added in v0.1.4

func (*AutoConfirmSettings) ProtoMessage()

func (*AutoConfirmSettings) ProtoReflect added in v0.1.4

func (x *AutoConfirmSettings) ProtoReflect() protoreflect.Message

func (*AutoConfirmSettings) Reset added in v0.1.4

func (x *AutoConfirmSettings) Reset()

func (*AutoConfirmSettings) String added in v0.1.4

func (x *AutoConfirmSettings) String() string

type AvailabilityResult added in v0.1.4

type AvailabilityResult int32
const (
	AvailabilityResult_PB_ERROR                     AvailabilityResult = 0
	AvailabilityResult_UNKNOWN_FAILURE              AvailabilityResult = 1
	AvailabilityResult_AVAILABLE                    AvailabilityResult = 2
	AvailabilityResult_OFFER_TAKEN                  AvailabilityResult = 3
	AvailabilityResult_PRICE_OUT_OF_TOLERANCE       AvailabilityResult = 4
	AvailabilityResult_MARKET_PRICE_NOT_AVAILABLE   AvailabilityResult = 5
	AvailabilityResult_NO_ARBITRATORS               AvailabilityResult = 6
	AvailabilityResult_NO_MEDIATORS                 AvailabilityResult = 7
	AvailabilityResult_USER_IGNORED                 AvailabilityResult = 8
	AvailabilityResult_MISSING_MANDATORY_CAPABILITY AvailabilityResult = 9
	AvailabilityResult_NO_REFUND_AGENTS             AvailabilityResult = 10
	AvailabilityResult_UNCONF_TX_LIMIT_HIT          AvailabilityResult = 11
	AvailabilityResult_MAKER_DENIED_API_USER        AvailabilityResult = 12
	AvailabilityResult_PRICE_CHECK_FAILED           AvailabilityResult = 13
	AvailabilityResult_INVALID_SNAPSHOT_HEIGHT      AvailabilityResult = 14
)

func (AvailabilityResult) Descriptor added in v0.1.4

func (AvailabilityResult) Enum added in v0.1.4

func (AvailabilityResult) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use AvailabilityResult.Descriptor instead.

func (AvailabilityResult) Number added in v0.1.4

func (AvailabilityResult) String added in v0.1.4

func (x AvailabilityResult) String() string

func (AvailabilityResult) Type added in v0.1.4

type AvailabilityResultWithDescription added in v0.1.5

type AvailabilityResultWithDescription struct {

	// An offer's current status as an eum.
	AvailabilityResult AvailabilityResult `` /* 160-byte string literal not displayed */
	// A user friendly description of an offer's current availability status.
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

An offer's current availability status.

func (*AvailabilityResultWithDescription) Descriptor deprecated added in v0.1.5

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

Deprecated: Use AvailabilityResultWithDescription.ProtoReflect.Descriptor instead.

func (*AvailabilityResultWithDescription) GetAvailabilityResult added in v0.1.5

func (x *AvailabilityResultWithDescription) GetAvailabilityResult() AvailabilityResult

func (*AvailabilityResultWithDescription) GetDescription added in v0.1.5

func (x *AvailabilityResultWithDescription) GetDescription() string

func (*AvailabilityResultWithDescription) ProtoMessage added in v0.1.5

func (*AvailabilityResultWithDescription) ProtoMessage()

func (*AvailabilityResultWithDescription) ProtoReflect added in v0.1.5

func (*AvailabilityResultWithDescription) Reset added in v0.1.5

func (*AvailabilityResultWithDescription) String added in v0.1.5

type AverageBsqTradePrice added in v0.1.10

type AverageBsqTradePrice struct {
	UsdPrice string `protobuf:"bytes,1,opt,name=usd_price,json=usdPrice,proto3" json:"usd_price,omitempty"` // The average BSQ trade price in USD to 4 decimal places.
	BtcPrice string `protobuf:"bytes,2,opt,name=btc_price,json=btcPrice,proto3" json:"btc_price,omitempty"` // The average BSQ trade price in BTC to 8 decimal places.
	// contains filtered or unexported fields
}

The average BSQ trade price in USD and BTC.

func (*AverageBsqTradePrice) Descriptor deprecated added in v0.1.10

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

Deprecated: Use AverageBsqTradePrice.ProtoReflect.Descriptor instead.

func (*AverageBsqTradePrice) GetBtcPrice added in v0.1.10

func (x *AverageBsqTradePrice) GetBtcPrice() string

func (*AverageBsqTradePrice) GetUsdPrice added in v0.1.10

func (x *AverageBsqTradePrice) GetUsdPrice() string

func (*AverageBsqTradePrice) ProtoMessage added in v0.1.10

func (*AverageBsqTradePrice) ProtoMessage()

func (*AverageBsqTradePrice) ProtoReflect added in v0.1.10

func (x *AverageBsqTradePrice) ProtoReflect() protoreflect.Message

func (*AverageBsqTradePrice) Reset added in v0.1.10

func (x *AverageBsqTradePrice) Reset()

func (*AverageBsqTradePrice) String added in v0.1.10

func (x *AverageBsqTradePrice) String() string

type BalancesInfo added in v0.1.4

type BalancesInfo struct {
	Bsq *BsqBalanceInfo `protobuf:"bytes,1,opt,name=bsq,proto3" json:"bsq,omitempty"` // BSQ wallet balance information.
	Btc *BtcBalanceInfo `protobuf:"bytes,2,opt,name=btc,proto3" json:"btc,omitempty"` // BTC wallet balance information.
	// contains filtered or unexported fields
}

func (*BalancesInfo) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BalancesInfo.ProtoReflect.Descriptor instead.

func (*BalancesInfo) GetBsq added in v0.1.4

func (x *BalancesInfo) GetBsq() *BsqBalanceInfo

func (*BalancesInfo) GetBtc added in v0.1.4

func (x *BalancesInfo) GetBtc() *BtcBalanceInfo

func (*BalancesInfo) ProtoMessage added in v0.1.4

func (*BalancesInfo) ProtoMessage()

func (*BalancesInfo) ProtoReflect added in v0.1.4

func (x *BalancesInfo) ProtoReflect() protoreflect.Message

func (*BalancesInfo) Reset added in v0.1.4

func (x *BalancesInfo) Reset()

func (*BalancesInfo) String added in v0.1.4

func (x *BalancesInfo) String() string

type Ballot added in v0.1.4

type Ballot struct {
	Proposal *Proposal `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	Vote     *Vote     `protobuf:"bytes,2,opt,name=vote,proto3" json:"vote,omitempty"`
	// contains filtered or unexported fields
}

func (*Ballot) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Ballot.ProtoReflect.Descriptor instead.

func (*Ballot) GetProposal added in v0.1.4

func (x *Ballot) GetProposal() *Proposal

func (*Ballot) GetVote added in v0.1.4

func (x *Ballot) GetVote() *Vote

func (*Ballot) ProtoMessage added in v0.1.4

func (*Ballot) ProtoMessage()

func (*Ballot) ProtoReflect added in v0.1.4

func (x *Ballot) ProtoReflect() protoreflect.Message

func (*Ballot) Reset added in v0.1.4

func (x *Ballot) Reset()

func (*Ballot) String added in v0.1.4

func (x *Ballot) String() string

type BallotList added in v0.1.4

type BallotList struct {
	Ballot []*Ballot `protobuf:"bytes,1,rep,name=ballot,proto3" json:"ballot,omitempty"`
	// contains filtered or unexported fields
}

func (*BallotList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BallotList.ProtoReflect.Descriptor instead.

func (*BallotList) GetBallot added in v0.1.4

func (x *BallotList) GetBallot() []*Ballot

func (*BallotList) ProtoMessage added in v0.1.4

func (*BallotList) ProtoMessage()

func (*BallotList) ProtoReflect added in v0.1.4

func (x *BallotList) ProtoReflect() protoreflect.Message

func (*BallotList) Reset added in v0.1.4

func (x *BallotList) Reset()

func (*BallotList) String added in v0.1.4

func (x *BallotList) String() string

type BankAccountPayload added in v0.1.4

type BankAccountPayload struct {
	HolderName  string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	BankName    string `protobuf:"bytes,2,opt,name=bank_name,json=bankName,proto3" json:"bank_name,omitempty"`
	BankId      string `protobuf:"bytes,3,opt,name=bank_id,json=bankId,proto3" json:"bank_id,omitempty"`
	BranchId    string `protobuf:"bytes,4,opt,name=branch_id,json=branchId,proto3" json:"branch_id,omitempty"`
	AccountNr   string `protobuf:"bytes,5,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	AccountType string `protobuf:"bytes,6,opt,name=account_type,json=accountType,proto3" json:"account_type,omitempty"`
	HolderTaxId string `protobuf:"bytes,7,opt,name=holder_tax_id,json=holderTaxId,proto3" json:"holder_tax_id,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	Email string `protobuf:"bytes,8,opt,name=email,proto3" json:"email,omitempty"`
	// Types that are assignable to Message:
	//
	//	*BankAccountPayload_NationalBankAccountPayload
	//	*BankAccountPayload_SameBankAccontPayload
	//	*BankAccountPayload_SpecificBanksAccountPayload
	//	*BankAccountPayload_AchTransferAccountPayload
	//	*BankAccountPayload_DomesticWireTransferAccountPayload
	Message           isBankAccountPayload_Message `protobuf_oneof:"message"`
	NationalAccountId string                       `protobuf:"bytes,12,opt,name=national_account_id,json=nationalAccountId,proto3" json:"national_account_id,omitempty"`
	// contains filtered or unexported fields
}

func (*BankAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BankAccountPayload.ProtoReflect.Descriptor instead.

func (*BankAccountPayload) GetAccountNr added in v0.1.4

func (x *BankAccountPayload) GetAccountNr() string

func (*BankAccountPayload) GetAccountType added in v0.1.4

func (x *BankAccountPayload) GetAccountType() string

func (*BankAccountPayload) GetAchTransferAccountPayload added in v0.1.6

func (x *BankAccountPayload) GetAchTransferAccountPayload() *AchTransferAccountPayload

func (*BankAccountPayload) GetBankId added in v0.1.4

func (x *BankAccountPayload) GetBankId() string

func (*BankAccountPayload) GetBankName added in v0.1.4

func (x *BankAccountPayload) GetBankName() string

func (*BankAccountPayload) GetBranchId added in v0.1.4

func (x *BankAccountPayload) GetBranchId() string

func (*BankAccountPayload) GetDomesticWireTransferAccountPayload added in v0.1.6

func (x *BankAccountPayload) GetDomesticWireTransferAccountPayload() *DomesticWireTransferAccountPayload

func (*BankAccountPayload) GetEmail deprecated added in v0.1.4

func (x *BankAccountPayload) GetEmail() string

Deprecated: Marked as deprecated in pb.proto.

func (*BankAccountPayload) GetHolderName added in v0.1.4

func (x *BankAccountPayload) GetHolderName() string

func (*BankAccountPayload) GetHolderTaxId added in v0.1.4

func (x *BankAccountPayload) GetHolderTaxId() string

func (*BankAccountPayload) GetMessage added in v0.1.4

func (m *BankAccountPayload) GetMessage() isBankAccountPayload_Message

func (*BankAccountPayload) GetNationalAccountId added in v0.1.4

func (x *BankAccountPayload) GetNationalAccountId() string

func (*BankAccountPayload) GetNationalBankAccountPayload added in v0.1.4

func (x *BankAccountPayload) GetNationalBankAccountPayload() *NationalBankAccountPayload

func (*BankAccountPayload) GetSameBankAccontPayload added in v0.1.4

func (x *BankAccountPayload) GetSameBankAccontPayload() *SameBankAccountPayload

func (*BankAccountPayload) GetSpecificBanksAccountPayload added in v0.1.4

func (x *BankAccountPayload) GetSpecificBanksAccountPayload() *SpecificBanksAccountPayload

func (*BankAccountPayload) ProtoMessage added in v0.1.4

func (*BankAccountPayload) ProtoMessage()

func (*BankAccountPayload) ProtoReflect added in v0.1.4

func (x *BankAccountPayload) ProtoReflect() protoreflect.Message

func (*BankAccountPayload) Reset added in v0.1.4

func (x *BankAccountPayload) Reset()

func (*BankAccountPayload) String added in v0.1.4

func (x *BankAccountPayload) String() string

type BankAccountPayload_AchTransferAccountPayload added in v0.1.6

type BankAccountPayload_AchTransferAccountPayload struct {
	AchTransferAccountPayload *AchTransferAccountPayload `protobuf:"bytes,13,opt,name=ach_transfer_account_payload,json=achTransferAccountPayload,proto3,oneof"`
}

type BankAccountPayload_DomesticWireTransferAccountPayload added in v0.1.6

type BankAccountPayload_DomesticWireTransferAccountPayload struct {
	DomesticWireTransferAccountPayload *DomesticWireTransferAccountPayload `protobuf:"bytes,14,opt,name=domestic_wire_transfer_account_payload,json=domesticWireTransferAccountPayload,proto3,oneof"`
}

type BankAccountPayload_NationalBankAccountPayload added in v0.1.4

type BankAccountPayload_NationalBankAccountPayload struct {
	NationalBankAccountPayload *NationalBankAccountPayload `protobuf:"bytes,9,opt,name=national_bank_account_payload,json=nationalBankAccountPayload,proto3,oneof"`
}

type BankAccountPayload_SameBankAccontPayload added in v0.1.4

type BankAccountPayload_SameBankAccontPayload struct {
	SameBankAccontPayload *SameBankAccountPayload `protobuf:"bytes,10,opt,name=same_bank_accont_payload,json=sameBankAccontPayload,proto3,oneof"`
}

type BankAccountPayload_SpecificBanksAccountPayload added in v0.1.4

type BankAccountPayload_SpecificBanksAccountPayload struct {
	SpecificBanksAccountPayload *SpecificBanksAccountPayload `protobuf:"bytes,11,opt,name=specific_banks_account_payload,json=specificBanksAccountPayload,proto3,oneof"`
}

type BaseBlock added in v0.1.4

type BaseBlock struct {
	Height            int32  `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Time              int64  `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"`
	Hash              string `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
	PreviousBlockHash string `protobuf:"bytes,4,opt,name=previous_block_hash,json=previousBlockHash,proto3" json:"previous_block_hash,omitempty"`
	// Types that are assignable to Message:
	//
	//	*BaseBlock_RawBlock
	//	*BaseBlock_Block
	Message isBaseBlock_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

DAO

func (*BaseBlock) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BaseBlock.ProtoReflect.Descriptor instead.

func (*BaseBlock) GetBlock added in v0.1.4

func (x *BaseBlock) GetBlock() *Block

func (*BaseBlock) GetHash added in v0.1.4

func (x *BaseBlock) GetHash() string

func (*BaseBlock) GetHeight added in v0.1.4

func (x *BaseBlock) GetHeight() int32

func (*BaseBlock) GetMessage added in v0.1.4

func (m *BaseBlock) GetMessage() isBaseBlock_Message

func (*BaseBlock) GetPreviousBlockHash added in v0.1.4

func (x *BaseBlock) GetPreviousBlockHash() string

func (*BaseBlock) GetRawBlock added in v0.1.4

func (x *BaseBlock) GetRawBlock() *RawBlock

func (*BaseBlock) GetTime added in v0.1.4

func (x *BaseBlock) GetTime() int64

func (*BaseBlock) ProtoMessage added in v0.1.4

func (*BaseBlock) ProtoMessage()

func (*BaseBlock) ProtoReflect added in v0.1.4

func (x *BaseBlock) ProtoReflect() protoreflect.Message

func (*BaseBlock) Reset added in v0.1.4

func (x *BaseBlock) Reset()

func (*BaseBlock) String added in v0.1.4

func (x *BaseBlock) String() string

type BaseBlock_Block added in v0.1.4

type BaseBlock_Block struct {
	Block *Block `protobuf:"bytes,6,opt,name=block,proto3,oneof"`
}

type BaseBlock_RawBlock added in v0.1.4

type BaseBlock_RawBlock struct {
	RawBlock *RawBlock `protobuf:"bytes,5,opt,name=raw_block,json=rawBlock,proto3,oneof"`
}

type BaseTx added in v0.1.4

type BaseTx struct {
	TxVersion   string     `protobuf:"bytes,1,opt,name=tx_version,json=txVersion,proto3" json:"tx_version,omitempty"`
	Id          string     `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	BlockHeight int32      `protobuf:"varint,3,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	BlockHash   string     `protobuf:"bytes,4,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	Time        int64      `protobuf:"varint,5,opt,name=time,proto3" json:"time,omitempty"`
	TxInputs    []*TxInput `protobuf:"bytes,6,rep,name=tx_inputs,json=txInputs,proto3" json:"tx_inputs,omitempty"`
	// Types that are assignable to Message:
	//
	//	*BaseTx_RawTx
	//	*BaseTx_Tx
	Message isBaseTx_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*BaseTx) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BaseTx.ProtoReflect.Descriptor instead.

func (*BaseTx) GetBlockHash added in v0.1.4

func (x *BaseTx) GetBlockHash() string

func (*BaseTx) GetBlockHeight added in v0.1.4

func (x *BaseTx) GetBlockHeight() int32

func (*BaseTx) GetId added in v0.1.4

func (x *BaseTx) GetId() string

func (*BaseTx) GetMessage added in v0.1.4

func (m *BaseTx) GetMessage() isBaseTx_Message

func (*BaseTx) GetRawTx added in v0.1.4

func (x *BaseTx) GetRawTx() *RawTx

func (*BaseTx) GetTime added in v0.1.4

func (x *BaseTx) GetTime() int64

func (*BaseTx) GetTx added in v0.1.4

func (x *BaseTx) GetTx() *Tx

func (*BaseTx) GetTxInputs added in v0.1.4

func (x *BaseTx) GetTxInputs() []*TxInput

func (*BaseTx) GetTxVersion added in v0.1.4

func (x *BaseTx) GetTxVersion() string

func (*BaseTx) ProtoMessage added in v0.1.4

func (*BaseTx) ProtoMessage()

func (*BaseTx) ProtoReflect added in v0.1.4

func (x *BaseTx) ProtoReflect() protoreflect.Message

func (*BaseTx) Reset added in v0.1.4

func (x *BaseTx) Reset()

func (*BaseTx) String added in v0.1.4

func (x *BaseTx) String() string

type BaseTxOutput added in v0.1.4

type BaseTxOutput struct {
	Index        int32         `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
	Value        int64         `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
	TxId         string        `protobuf:"bytes,3,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	PubKeyScript *PubKeyScript `protobuf:"bytes,4,opt,name=pub_key_script,json=pubKeyScript,proto3" json:"pub_key_script,omitempty"`
	Address      string        `protobuf:"bytes,5,opt,name=address,proto3" json:"address,omitempty"`
	OpReturnData []byte        `protobuf:"bytes,6,opt,name=op_return_data,json=opReturnData,proto3" json:"op_return_data,omitempty"`
	BlockHeight  int32         `protobuf:"varint,7,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	// Types that are assignable to Message:
	//
	//	*BaseTxOutput_RawTxOutput
	//	*BaseTxOutput_TxOutput
	Message isBaseTxOutput_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*BaseTxOutput) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BaseTxOutput.ProtoReflect.Descriptor instead.

func (*BaseTxOutput) GetAddress added in v0.1.4

func (x *BaseTxOutput) GetAddress() string

func (*BaseTxOutput) GetBlockHeight added in v0.1.4

func (x *BaseTxOutput) GetBlockHeight() int32

func (*BaseTxOutput) GetIndex added in v0.1.4

func (x *BaseTxOutput) GetIndex() int32

func (*BaseTxOutput) GetMessage added in v0.1.4

func (m *BaseTxOutput) GetMessage() isBaseTxOutput_Message

func (*BaseTxOutput) GetOpReturnData added in v0.1.4

func (x *BaseTxOutput) GetOpReturnData() []byte

func (*BaseTxOutput) GetPubKeyScript added in v0.1.4

func (x *BaseTxOutput) GetPubKeyScript() *PubKeyScript

func (*BaseTxOutput) GetRawTxOutput added in v0.1.4

func (x *BaseTxOutput) GetRawTxOutput() *RawTxOutput

func (*BaseTxOutput) GetTxId added in v0.1.4

func (x *BaseTxOutput) GetTxId() string

func (*BaseTxOutput) GetTxOutput added in v0.1.4

func (x *BaseTxOutput) GetTxOutput() *TxOutput

func (*BaseTxOutput) GetValue added in v0.1.4

func (x *BaseTxOutput) GetValue() int64

func (*BaseTxOutput) ProtoMessage added in v0.1.4

func (*BaseTxOutput) ProtoMessage()

func (*BaseTxOutput) ProtoReflect added in v0.1.4

func (x *BaseTxOutput) ProtoReflect() protoreflect.Message

func (*BaseTxOutput) Reset added in v0.1.4

func (x *BaseTxOutput) Reset()

func (*BaseTxOutput) String added in v0.1.4

func (x *BaseTxOutput) String() string

type BaseTxOutput_RawTxOutput added in v0.1.4

type BaseTxOutput_RawTxOutput struct {
	RawTxOutput *RawTxOutput `protobuf:"bytes,8,opt,name=raw_tx_output,json=rawTxOutput,proto3,oneof"`
}

type BaseTxOutput_TxOutput added in v0.1.4

type BaseTxOutput_TxOutput struct {
	TxOutput *TxOutput `protobuf:"bytes,9,opt,name=tx_output,json=txOutput,proto3,oneof"`
}

type BaseTx_RawTx added in v0.1.4

type BaseTx_RawTx struct {
	RawTx *RawTx `protobuf:"bytes,7,opt,name=raw_tx,json=rawTx,proto3,oneof"`
}

type BaseTx_Tx added in v0.1.4

type BaseTx_Tx struct {
	Tx *Tx `protobuf:"bytes,8,opt,name=tx,proto3,oneof"`
}

type BizumAccountPayload added in v0.1.6

type BizumAccountPayload struct {
	MobileNr string `protobuf:"bytes,1,opt,name=mobile_nr,json=mobileNr,proto3" json:"mobile_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*BizumAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BizumAccountPayload.ProtoReflect.Descriptor instead.

func (*BizumAccountPayload) GetMobileNr added in v0.1.6

func (x *BizumAccountPayload) GetMobileNr() string

func (*BizumAccountPayload) ProtoMessage added in v0.1.6

func (*BizumAccountPayload) ProtoMessage()

func (*BizumAccountPayload) ProtoReflect added in v0.1.6

func (x *BizumAccountPayload) ProtoReflect() protoreflect.Message

func (*BizumAccountPayload) Reset added in v0.1.6

func (x *BizumAccountPayload) Reset()

func (*BizumAccountPayload) String added in v0.1.6

func (x *BizumAccountPayload) String() string

type BlindVote added in v0.1.4

type BlindVote struct {
	EncryptedVotes     []byte            `protobuf:"bytes,1,opt,name=encrypted_votes,json=encryptedVotes,proto3" json:"encrypted_votes,omitempty"`
	TxId               string            `protobuf:"bytes,2,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	Stake              int64             `protobuf:"varint,3,opt,name=stake,proto3" json:"stake,omitempty"`
	EncryptedMeritList []byte            `protobuf:"bytes,4,opt,name=encrypted_merit_list,json=encryptedMeritList,proto3" json:"encrypted_merit_list,omitempty"`
	Date               int64             `protobuf:"varint,5,opt,name=date,proto3" json:"date,omitempty"`
	ExtraData          map[string]string `` /* 176-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*BlindVote) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BlindVote.ProtoReflect.Descriptor instead.

func (*BlindVote) GetDate added in v0.1.4

func (x *BlindVote) GetDate() int64

func (*BlindVote) GetEncryptedMeritList added in v0.1.4

func (x *BlindVote) GetEncryptedMeritList() []byte

func (*BlindVote) GetEncryptedVotes added in v0.1.4

func (x *BlindVote) GetEncryptedVotes() []byte

func (*BlindVote) GetExtraData added in v0.1.4

func (x *BlindVote) GetExtraData() map[string]string

func (*BlindVote) GetStake added in v0.1.4

func (x *BlindVote) GetStake() int64

func (*BlindVote) GetTxId added in v0.1.4

func (x *BlindVote) GetTxId() string

func (*BlindVote) ProtoMessage added in v0.1.4

func (*BlindVote) ProtoMessage()

func (*BlindVote) ProtoReflect added in v0.1.4

func (x *BlindVote) ProtoReflect() protoreflect.Message

func (*BlindVote) Reset added in v0.1.4

func (x *BlindVote) Reset()

func (*BlindVote) String added in v0.1.4

func (x *BlindVote) String() string

type BlindVotePayload added in v0.1.4

type BlindVotePayload struct {
	BlindVote *BlindVote `protobuf:"bytes,1,opt,name=blind_vote,json=blindVote,proto3" json:"blind_vote,omitempty"`
	Hash      []byte     `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*BlindVotePayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BlindVotePayload.ProtoReflect.Descriptor instead.

func (*BlindVotePayload) GetBlindVote added in v0.1.4

func (x *BlindVotePayload) GetBlindVote() *BlindVote

func (*BlindVotePayload) GetHash added in v0.1.4

func (x *BlindVotePayload) GetHash() []byte

func (*BlindVotePayload) ProtoMessage added in v0.1.4

func (*BlindVotePayload) ProtoMessage()

func (*BlindVotePayload) ProtoReflect added in v0.1.4

func (x *BlindVotePayload) ProtoReflect() protoreflect.Message

func (*BlindVotePayload) Reset added in v0.1.4

func (x *BlindVotePayload) Reset()

func (*BlindVotePayload) String added in v0.1.4

func (x *BlindVotePayload) String() string

type BlindVoteStateHash added in v0.1.4

type BlindVoteStateHash struct {
	Height int32  `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Hash   []byte `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	PrevHash      []byte `protobuf:"bytes,3,opt,name=prev_hash,json=prevHash,proto3" json:"prev_hash,omitempty"`
	NumBlindVotes int32  `protobuf:"varint,4,opt,name=num_blind_votes,json=numBlindVotes,proto3" json:"num_blind_votes,omitempty"`
	// contains filtered or unexported fields
}

func (*BlindVoteStateHash) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BlindVoteStateHash.ProtoReflect.Descriptor instead.

func (*BlindVoteStateHash) GetHash added in v0.1.4

func (x *BlindVoteStateHash) GetHash() []byte

func (*BlindVoteStateHash) GetHeight added in v0.1.4

func (x *BlindVoteStateHash) GetHeight() int32

func (*BlindVoteStateHash) GetNumBlindVotes added in v0.1.4

func (x *BlindVoteStateHash) GetNumBlindVotes() int32

func (*BlindVoteStateHash) GetPrevHash deprecated added in v0.1.4

func (x *BlindVoteStateHash) GetPrevHash() []byte

Deprecated: Marked as deprecated in pb.proto.

func (*BlindVoteStateHash) ProtoMessage added in v0.1.4

func (*BlindVoteStateHash) ProtoMessage()

func (*BlindVoteStateHash) ProtoReflect added in v0.1.4

func (x *BlindVoteStateHash) ProtoReflect() protoreflect.Message

func (*BlindVoteStateHash) Reset added in v0.1.4

func (x *BlindVoteStateHash) Reset()

func (*BlindVoteStateHash) String added in v0.1.4

func (x *BlindVoteStateHash) String() string

type BlindVoteStore added in v0.1.4

type BlindVoteStore struct {
	Items []*BlindVotePayload `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*BlindVoteStore) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BlindVoteStore.ProtoReflect.Descriptor instead.

func (*BlindVoteStore) GetItems added in v0.1.4

func (x *BlindVoteStore) GetItems() []*BlindVotePayload

func (*BlindVoteStore) ProtoMessage added in v0.1.4

func (*BlindVoteStore) ProtoMessage()

func (*BlindVoteStore) ProtoReflect added in v0.1.4

func (x *BlindVoteStore) ProtoReflect() protoreflect.Message

func (*BlindVoteStore) Reset added in v0.1.4

func (x *BlindVoteStore) Reset()

func (*BlindVoteStore) String added in v0.1.4

func (x *BlindVoteStore) String() string

type Block added in v0.1.4

type Block struct {

	// Because of the way how PB implements inheritance we need to use the super class as type.
	Txs []*BaseTx `protobuf:"bytes,1,rep,name=txs,proto3" json:"txs,omitempty"`
	// contains filtered or unexported fields
}

func (*Block) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Block.ProtoReflect.Descriptor instead.

func (*Block) GetTxs added in v0.1.4

func (x *Block) GetTxs() []*BaseTx

func (*Block) ProtoMessage added in v0.1.4

func (*Block) ProtoMessage()

func (*Block) ProtoReflect added in v0.1.4

func (x *Block) ProtoReflect() protoreflect.Message

func (*Block) Reset added in v0.1.4

func (x *Block) Reset()

func (*Block) String added in v0.1.4

func (x *Block) String() string

type BlockChainExplorer added in v0.1.4

type BlockChainExplorer struct {
	Name       string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	TxUrl      string `protobuf:"bytes,2,opt,name=tx_url,json=txUrl,proto3" json:"tx_url,omitempty"`
	AddressUrl string `protobuf:"bytes,3,opt,name=address_url,json=addressUrl,proto3" json:"address_url,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockChainExplorer) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BlockChainExplorer.ProtoReflect.Descriptor instead.

func (*BlockChainExplorer) GetAddressUrl added in v0.1.4

func (x *BlockChainExplorer) GetAddressUrl() string

func (*BlockChainExplorer) GetName added in v0.1.4

func (x *BlockChainExplorer) GetName() string

func (*BlockChainExplorer) GetTxUrl added in v0.1.4

func (x *BlockChainExplorer) GetTxUrl() string

func (*BlockChainExplorer) ProtoMessage added in v0.1.4

func (*BlockChainExplorer) ProtoMessage()

func (*BlockChainExplorer) ProtoReflect added in v0.1.4

func (x *BlockChainExplorer) ProtoReflect() protoreflect.Message

func (*BlockChainExplorer) Reset added in v0.1.4

func (x *BlockChainExplorer) Reset()

func (*BlockChainExplorer) String added in v0.1.4

func (x *BlockChainExplorer) String() string

type BsqBalanceInfo added in v0.1.4

type BsqBalanceInfo struct {

	// The BSQ amount currently available to send to other addresses at the user's discretion, in satoshis.
	AvailableConfirmedBalance uint64 `` /* 139-byte string literal not displayed */
	// The BSQ amount currently being used in send transactions, in satoshis. Unverified BSQ balances are
	// not spendable until returned to the available_confirmed_balance when send transactions have been confirmed.
	UnverifiedBalance uint64 `protobuf:"varint,2,opt,name=unverified_balance,json=unverifiedBalance,proto3" json:"unverified_balance,omitempty"`
	// The BSQ transaction change amount tied up in unconfirmed transactions, remaining unspendable until transactions
	// have been confirmed and the change returned to the available_confirmed_balance.
	UnconfirmedChangeBalance uint64 `` /* 136-byte string literal not displayed */
	// The locked BSQ amount held by DAO voting transaction.
	LockedForVotingBalance uint64 `` /* 132-byte string literal not displayed */
	// The locked BSQ amount held by DAO bonding transaction.
	LockupBondsBalance uint64 `protobuf:"varint,5,opt,name=lockup_bonds_balance,json=lockupBondsBalance,proto3" json:"lockup_bonds_balance,omitempty"`
	// The BSQ bonding amount in unlocking state, awaiting a lockup transaction's lock time expiry before the funds
	// can be spent in normal transactions.
	UnlockingBondsBalance uint64 `` /* 127-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*BsqBalanceInfo) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BsqBalanceInfo.ProtoReflect.Descriptor instead.

func (*BsqBalanceInfo) GetAvailableConfirmedBalance added in v0.1.4

func (x *BsqBalanceInfo) GetAvailableConfirmedBalance() uint64

func (*BsqBalanceInfo) GetLockedForVotingBalance added in v0.1.4

func (x *BsqBalanceInfo) GetLockedForVotingBalance() uint64

func (*BsqBalanceInfo) GetLockupBondsBalance added in v0.1.4

func (x *BsqBalanceInfo) GetLockupBondsBalance() uint64

func (*BsqBalanceInfo) GetUnconfirmedChangeBalance added in v0.1.4

func (x *BsqBalanceInfo) GetUnconfirmedChangeBalance() uint64

func (*BsqBalanceInfo) GetUnlockingBondsBalance added in v0.1.4

func (x *BsqBalanceInfo) GetUnlockingBondsBalance() uint64

func (*BsqBalanceInfo) GetUnverifiedBalance added in v0.1.4

func (x *BsqBalanceInfo) GetUnverifiedBalance() uint64

func (*BsqBalanceInfo) ProtoMessage added in v0.1.4

func (*BsqBalanceInfo) ProtoMessage()

func (*BsqBalanceInfo) ProtoReflect added in v0.1.4

func (x *BsqBalanceInfo) ProtoReflect() protoreflect.Message

func (*BsqBalanceInfo) Reset added in v0.1.4

func (x *BsqBalanceInfo) Reset()

func (*BsqBalanceInfo) String added in v0.1.4

func (x *BsqBalanceInfo) String() string

type BsqBlockStore added in v0.1.6

type BsqBlockStore struct {
	Blocks []*BaseBlock `protobuf:"bytes,1,rep,name=blocks,proto3" json:"blocks,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqBlockStore) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqBlockStore.ProtoReflect.Descriptor instead.

func (*BsqBlockStore) GetBlocks added in v0.1.6

func (x *BsqBlockStore) GetBlocks() []*BaseBlock

func (*BsqBlockStore) ProtoMessage added in v0.1.6

func (*BsqBlockStore) ProtoMessage()

func (*BsqBlockStore) ProtoReflect added in v0.1.6

func (x *BsqBlockStore) ProtoReflect() protoreflect.Message

func (*BsqBlockStore) Reset added in v0.1.6

func (x *BsqBlockStore) Reset()

func (*BsqBlockStore) String added in v0.1.6

func (x *BsqBlockStore) String() string

type BsqSwapAccountPayload added in v0.1.6

type BsqSwapAccountPayload struct {
	// contains filtered or unexported fields
}

func (*BsqSwapAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapAccountPayload.ProtoReflect.Descriptor instead.

func (*BsqSwapAccountPayload) ProtoMessage added in v0.1.6

func (*BsqSwapAccountPayload) ProtoMessage()

func (*BsqSwapAccountPayload) ProtoReflect added in v0.1.6

func (x *BsqSwapAccountPayload) ProtoReflect() protoreflect.Message

func (*BsqSwapAccountPayload) Reset added in v0.1.6

func (x *BsqSwapAccountPayload) Reset()

func (*BsqSwapAccountPayload) String added in v0.1.6

func (x *BsqSwapAccountPayload) String() string

type BsqSwapBuyerAsMakerTrade added in v0.1.6

type BsqSwapBuyerAsMakerTrade struct {
	BsqSwapTrade *BsqSwapTrade `protobuf:"bytes,1,opt,name=bsq_swap_trade,json=bsqSwapTrade,proto3" json:"bsq_swap_trade,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapBuyerAsMakerTrade) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapBuyerAsMakerTrade.ProtoReflect.Descriptor instead.

func (*BsqSwapBuyerAsMakerTrade) GetBsqSwapTrade added in v0.1.6

func (x *BsqSwapBuyerAsMakerTrade) GetBsqSwapTrade() *BsqSwapTrade

func (*BsqSwapBuyerAsMakerTrade) ProtoMessage added in v0.1.6

func (*BsqSwapBuyerAsMakerTrade) ProtoMessage()

func (*BsqSwapBuyerAsMakerTrade) ProtoReflect added in v0.1.6

func (x *BsqSwapBuyerAsMakerTrade) ProtoReflect() protoreflect.Message

func (*BsqSwapBuyerAsMakerTrade) Reset added in v0.1.6

func (x *BsqSwapBuyerAsMakerTrade) Reset()

func (*BsqSwapBuyerAsMakerTrade) String added in v0.1.6

func (x *BsqSwapBuyerAsMakerTrade) String() string

type BsqSwapBuyerAsTakerTrade added in v0.1.6

type BsqSwapBuyerAsTakerTrade struct {
	BsqSwapTrade *BsqSwapTrade `protobuf:"bytes,1,opt,name=bsq_swap_trade,json=bsqSwapTrade,proto3" json:"bsq_swap_trade,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapBuyerAsTakerTrade) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapBuyerAsTakerTrade.ProtoReflect.Descriptor instead.

func (*BsqSwapBuyerAsTakerTrade) GetBsqSwapTrade added in v0.1.6

func (x *BsqSwapBuyerAsTakerTrade) GetBsqSwapTrade() *BsqSwapTrade

func (*BsqSwapBuyerAsTakerTrade) ProtoMessage added in v0.1.6

func (*BsqSwapBuyerAsTakerTrade) ProtoMessage()

func (*BsqSwapBuyerAsTakerTrade) ProtoReflect added in v0.1.6

func (x *BsqSwapBuyerAsTakerTrade) ProtoReflect() protoreflect.Message

func (*BsqSwapBuyerAsTakerTrade) Reset added in v0.1.6

func (x *BsqSwapBuyerAsTakerTrade) Reset()

func (*BsqSwapBuyerAsTakerTrade) String added in v0.1.6

func (x *BsqSwapBuyerAsTakerTrade) String() string

type BsqSwapFinalizeTxRequest added in v0.1.6

type BsqSwapFinalizeTxRequest struct {
	Uid               string                 `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId           string                 `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress *NodeAddress           `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Tx                []byte                 `protobuf:"bytes,4,opt,name=tx,proto3" json:"tx,omitempty"`
	BtcInputs         []*RawTransactionInput `protobuf:"bytes,5,rep,name=btc_inputs,json=btcInputs,proto3" json:"btc_inputs,omitempty"`
	BtcChange         int64                  `protobuf:"varint,6,opt,name=btc_change,json=btcChange,proto3" json:"btc_change,omitempty"`
	BsqPayoutAddress  string                 `protobuf:"bytes,7,opt,name=bsq_payout_address,json=bsqPayoutAddress,proto3" json:"bsq_payout_address,omitempty"`
	BtcChangeAddress  string                 `protobuf:"bytes,8,opt,name=btc_change_address,json=btcChangeAddress,proto3" json:"btc_change_address,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapFinalizeTxRequest) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapFinalizeTxRequest.ProtoReflect.Descriptor instead.

func (*BsqSwapFinalizeTxRequest) GetBsqPayoutAddress added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) GetBsqPayoutAddress() string

func (*BsqSwapFinalizeTxRequest) GetBtcChange added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) GetBtcChange() int64

func (*BsqSwapFinalizeTxRequest) GetBtcChangeAddress added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) GetBtcChangeAddress() string

func (*BsqSwapFinalizeTxRequest) GetBtcInputs added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) GetBtcInputs() []*RawTransactionInput

func (*BsqSwapFinalizeTxRequest) GetSenderNodeAddress added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) GetSenderNodeAddress() *NodeAddress

func (*BsqSwapFinalizeTxRequest) GetTradeId added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) GetTradeId() string

func (*BsqSwapFinalizeTxRequest) GetTx added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) GetTx() []byte

func (*BsqSwapFinalizeTxRequest) GetUid added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) GetUid() string

func (*BsqSwapFinalizeTxRequest) ProtoMessage added in v0.1.6

func (*BsqSwapFinalizeTxRequest) ProtoMessage()

func (*BsqSwapFinalizeTxRequest) ProtoReflect added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) ProtoReflect() protoreflect.Message

func (*BsqSwapFinalizeTxRequest) Reset added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) Reset()

func (*BsqSwapFinalizeTxRequest) String added in v0.1.6

func (x *BsqSwapFinalizeTxRequest) String() string

type BsqSwapFinalizedTxMessage added in v0.1.6

type BsqSwapFinalizedTxMessage struct {
	Uid               string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId           string       `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Tx                []byte       `protobuf:"bytes,4,opt,name=tx,proto3" json:"tx,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapFinalizedTxMessage) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapFinalizedTxMessage.ProtoReflect.Descriptor instead.

func (*BsqSwapFinalizedTxMessage) GetSenderNodeAddress added in v0.1.6

func (x *BsqSwapFinalizedTxMessage) GetSenderNodeAddress() *NodeAddress

func (*BsqSwapFinalizedTxMessage) GetTradeId added in v0.1.6

func (x *BsqSwapFinalizedTxMessage) GetTradeId() string

func (*BsqSwapFinalizedTxMessage) GetTx added in v0.1.6

func (x *BsqSwapFinalizedTxMessage) GetTx() []byte

func (*BsqSwapFinalizedTxMessage) GetUid added in v0.1.6

func (x *BsqSwapFinalizedTxMessage) GetUid() string

func (*BsqSwapFinalizedTxMessage) ProtoMessage added in v0.1.6

func (*BsqSwapFinalizedTxMessage) ProtoMessage()

func (*BsqSwapFinalizedTxMessage) ProtoReflect added in v0.1.6

func (*BsqSwapFinalizedTxMessage) Reset added in v0.1.6

func (x *BsqSwapFinalizedTxMessage) Reset()

func (*BsqSwapFinalizedTxMessage) String added in v0.1.6

func (x *BsqSwapFinalizedTxMessage) String() string

type BsqSwapOfferPayload added in v0.1.6

type BsqSwapOfferPayload struct {
	Id               string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Date             int64             `protobuf:"varint,2,opt,name=date,proto3" json:"date,omitempty"`
	OwnerNodeAddress *NodeAddress      `protobuf:"bytes,3,opt,name=owner_node_address,json=ownerNodeAddress,proto3" json:"owner_node_address,omitempty"`
	PubKeyRing       *PubKeyRing       `protobuf:"bytes,4,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	Direction        OfferDirection    `protobuf:"varint,5,opt,name=direction,proto3,enum=io.bisq.protobuffer.OfferDirection" json:"direction,omitempty"`
	Price            int64             `protobuf:"varint,6,opt,name=price,proto3" json:"price,omitempty"`
	Amount           int64             `protobuf:"varint,7,opt,name=amount,proto3" json:"amount,omitempty"`
	MinAmount        int64             `protobuf:"varint,8,opt,name=min_amount,json=minAmount,proto3" json:"min_amount,omitempty"`
	ProofOfWork      *ProofOfWork      `protobuf:"bytes,9,opt,name=proof_of_work,json=proofOfWork,proto3" json:"proof_of_work,omitempty"`
	ExtraData        map[string]string `` /* 177-byte string literal not displayed */
	VersionNr        string            `protobuf:"bytes,11,opt,name=version_nr,json=versionNr,proto3" json:"version_nr,omitempty"`
	ProtocolVersion  int32             `protobuf:"varint,12,opt,name=protocol_version,json=protocolVersion,proto3" json:"protocol_version,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapOfferPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapOfferPayload.ProtoReflect.Descriptor instead.

func (*BsqSwapOfferPayload) GetAmount added in v0.1.6

func (x *BsqSwapOfferPayload) GetAmount() int64

func (*BsqSwapOfferPayload) GetDate added in v0.1.6

func (x *BsqSwapOfferPayload) GetDate() int64

func (*BsqSwapOfferPayload) GetDirection added in v0.1.6

func (x *BsqSwapOfferPayload) GetDirection() OfferDirection

func (*BsqSwapOfferPayload) GetExtraData added in v0.1.6

func (x *BsqSwapOfferPayload) GetExtraData() map[string]string

func (*BsqSwapOfferPayload) GetId added in v0.1.6

func (x *BsqSwapOfferPayload) GetId() string

func (*BsqSwapOfferPayload) GetMinAmount added in v0.1.6

func (x *BsqSwapOfferPayload) GetMinAmount() int64

func (*BsqSwapOfferPayload) GetOwnerNodeAddress added in v0.1.6

func (x *BsqSwapOfferPayload) GetOwnerNodeAddress() *NodeAddress

func (*BsqSwapOfferPayload) GetPrice added in v0.1.6

func (x *BsqSwapOfferPayload) GetPrice() int64

func (*BsqSwapOfferPayload) GetProofOfWork added in v0.1.6

func (x *BsqSwapOfferPayload) GetProofOfWork() *ProofOfWork

func (*BsqSwapOfferPayload) GetProtocolVersion added in v0.1.6

func (x *BsqSwapOfferPayload) GetProtocolVersion() int32

func (*BsqSwapOfferPayload) GetPubKeyRing added in v0.1.6

func (x *BsqSwapOfferPayload) GetPubKeyRing() *PubKeyRing

func (*BsqSwapOfferPayload) GetVersionNr added in v0.1.6

func (x *BsqSwapOfferPayload) GetVersionNr() string

func (*BsqSwapOfferPayload) ProtoMessage added in v0.1.6

func (*BsqSwapOfferPayload) ProtoMessage()

func (*BsqSwapOfferPayload) ProtoReflect added in v0.1.6

func (x *BsqSwapOfferPayload) ProtoReflect() protoreflect.Message

func (*BsqSwapOfferPayload) Reset added in v0.1.6

func (x *BsqSwapOfferPayload) Reset()

func (*BsqSwapOfferPayload) String added in v0.1.6

func (x *BsqSwapOfferPayload) String() string

type BsqSwapProtocolModel added in v0.1.6

type BsqSwapProtocolModel struct {
	TradePeer  *BsqSwapTradePeer      `protobuf:"bytes,1,opt,name=trade_peer,json=tradePeer,proto3" json:"trade_peer,omitempty"`
	PubKeyRing *PubKeyRing            `protobuf:"bytes,2,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	BtcAddress string                 `protobuf:"bytes,3,opt,name=btc_address,json=btcAddress,proto3" json:"btc_address,omitempty"`
	BsqAddress string                 `protobuf:"bytes,4,opt,name=bsq_address,json=bsqAddress,proto3" json:"bsq_address,omitempty"`
	Inputs     []*RawTransactionInput `protobuf:"bytes,5,rep,name=inputs,proto3" json:"inputs,omitempty"`
	Change     int64                  `protobuf:"varint,6,opt,name=change,proto3" json:"change,omitempty"`
	Payout     int64                  `protobuf:"varint,7,opt,name=payout,proto3" json:"payout,omitempty"`
	Tx         []byte                 `protobuf:"bytes,8,opt,name=tx,proto3" json:"tx,omitempty"`
	TxFee      int64                  `protobuf:"varint,9,opt,name=tx_fee,json=txFee,proto3" json:"tx_fee,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapProtocolModel) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapProtocolModel.ProtoReflect.Descriptor instead.

func (*BsqSwapProtocolModel) GetBsqAddress added in v0.1.6

func (x *BsqSwapProtocolModel) GetBsqAddress() string

func (*BsqSwapProtocolModel) GetBtcAddress added in v0.1.6

func (x *BsqSwapProtocolModel) GetBtcAddress() string

func (*BsqSwapProtocolModel) GetChange added in v0.1.6

func (x *BsqSwapProtocolModel) GetChange() int64

func (*BsqSwapProtocolModel) GetInputs added in v0.1.6

func (x *BsqSwapProtocolModel) GetInputs() []*RawTransactionInput

func (*BsqSwapProtocolModel) GetPayout added in v0.1.6

func (x *BsqSwapProtocolModel) GetPayout() int64

func (*BsqSwapProtocolModel) GetPubKeyRing added in v0.1.6

func (x *BsqSwapProtocolModel) GetPubKeyRing() *PubKeyRing

func (*BsqSwapProtocolModel) GetTradePeer added in v0.1.6

func (x *BsqSwapProtocolModel) GetTradePeer() *BsqSwapTradePeer

func (*BsqSwapProtocolModel) GetTx added in v0.1.6

func (x *BsqSwapProtocolModel) GetTx() []byte

func (*BsqSwapProtocolModel) GetTxFee added in v0.1.6

func (x *BsqSwapProtocolModel) GetTxFee() int64

func (*BsqSwapProtocolModel) ProtoMessage added in v0.1.6

func (*BsqSwapProtocolModel) ProtoMessage()

func (*BsqSwapProtocolModel) ProtoReflect added in v0.1.6

func (x *BsqSwapProtocolModel) ProtoReflect() protoreflect.Message

func (*BsqSwapProtocolModel) Reset added in v0.1.6

func (x *BsqSwapProtocolModel) Reset()

func (*BsqSwapProtocolModel) String added in v0.1.6

func (x *BsqSwapProtocolModel) String() string

type BsqSwapSellerAsMakerTrade added in v0.1.6

type BsqSwapSellerAsMakerTrade struct {
	BsqSwapTrade *BsqSwapTrade `protobuf:"bytes,1,opt,name=bsq_swap_trade,json=bsqSwapTrade,proto3" json:"bsq_swap_trade,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapSellerAsMakerTrade) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapSellerAsMakerTrade.ProtoReflect.Descriptor instead.

func (*BsqSwapSellerAsMakerTrade) GetBsqSwapTrade added in v0.1.6

func (x *BsqSwapSellerAsMakerTrade) GetBsqSwapTrade() *BsqSwapTrade

func (*BsqSwapSellerAsMakerTrade) ProtoMessage added in v0.1.6

func (*BsqSwapSellerAsMakerTrade) ProtoMessage()

func (*BsqSwapSellerAsMakerTrade) ProtoReflect added in v0.1.6

func (*BsqSwapSellerAsMakerTrade) Reset added in v0.1.6

func (x *BsqSwapSellerAsMakerTrade) Reset()

func (*BsqSwapSellerAsMakerTrade) String added in v0.1.6

func (x *BsqSwapSellerAsMakerTrade) String() string

type BsqSwapSellerAsTakerTrade added in v0.1.6

type BsqSwapSellerAsTakerTrade struct {
	BsqSwapTrade *BsqSwapTrade `protobuf:"bytes,1,opt,name=bsq_swap_trade,json=bsqSwapTrade,proto3" json:"bsq_swap_trade,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapSellerAsTakerTrade) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapSellerAsTakerTrade.ProtoReflect.Descriptor instead.

func (*BsqSwapSellerAsTakerTrade) GetBsqSwapTrade added in v0.1.6

func (x *BsqSwapSellerAsTakerTrade) GetBsqSwapTrade() *BsqSwapTrade

func (*BsqSwapSellerAsTakerTrade) ProtoMessage added in v0.1.6

func (*BsqSwapSellerAsTakerTrade) ProtoMessage()

func (*BsqSwapSellerAsTakerTrade) ProtoReflect added in v0.1.6

func (*BsqSwapSellerAsTakerTrade) Reset added in v0.1.6

func (x *BsqSwapSellerAsTakerTrade) Reset()

func (*BsqSwapSellerAsTakerTrade) String added in v0.1.6

func (x *BsqSwapSellerAsTakerTrade) String() string

type BsqSwapTrade added in v0.1.6

type BsqSwapTrade struct {
	Uid                  string                `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Offer                *Offer                `protobuf:"bytes,2,opt,name=offer,proto3" json:"offer,omitempty"`
	Amount               int64                 `protobuf:"varint,3,opt,name=amount,proto3" json:"amount,omitempty"`
	TakeOfferDate        int64                 `protobuf:"varint,4,opt,name=take_offer_date,json=takeOfferDate,proto3" json:"take_offer_date,omitempty"`
	PeerNodeAddress      *NodeAddress          `protobuf:"bytes,5,opt,name=peer_node_address,json=peerNodeAddress,proto3" json:"peer_node_address,omitempty"`
	MiningFeePerByte     int64                 `protobuf:"varint,6,opt,name=mining_fee_per_byte,json=miningFeePerByte,proto3" json:"mining_fee_per_byte,omitempty"`
	MakerFee             int64                 `protobuf:"varint,7,opt,name=maker_fee,json=makerFee,proto3" json:"maker_fee,omitempty"`
	TakerFee             int64                 `protobuf:"varint,8,opt,name=taker_fee,json=takerFee,proto3" json:"taker_fee,omitempty"`
	BsqSwapProtocolModel *BsqSwapProtocolModel `protobuf:"bytes,9,opt,name=bsq_swap_protocol_model,json=bsqSwapProtocolModel,proto3" json:"bsq_swap_protocol_model,omitempty"`
	TxId                 string                `protobuf:"bytes,10,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	ErrorMessage         string                `protobuf:"bytes,11,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`
	State                BsqSwapTrade_State    `protobuf:"varint,12,opt,name=state,proto3,enum=io.bisq.protobuffer.BsqSwapTrade_State" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapTrade) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapTrade.ProtoReflect.Descriptor instead.

func (*BsqSwapTrade) GetAmount added in v0.1.6

func (x *BsqSwapTrade) GetAmount() int64

func (*BsqSwapTrade) GetBsqSwapProtocolModel added in v0.1.6

func (x *BsqSwapTrade) GetBsqSwapProtocolModel() *BsqSwapProtocolModel

func (*BsqSwapTrade) GetErrorMessage added in v0.1.6

func (x *BsqSwapTrade) GetErrorMessage() string

func (*BsqSwapTrade) GetMakerFee added in v0.1.6

func (x *BsqSwapTrade) GetMakerFee() int64

func (*BsqSwapTrade) GetMiningFeePerByte added in v0.1.6

func (x *BsqSwapTrade) GetMiningFeePerByte() int64

func (*BsqSwapTrade) GetOffer added in v0.1.6

func (x *BsqSwapTrade) GetOffer() *Offer

func (*BsqSwapTrade) GetPeerNodeAddress added in v0.1.6

func (x *BsqSwapTrade) GetPeerNodeAddress() *NodeAddress

func (*BsqSwapTrade) GetState added in v0.1.6

func (x *BsqSwapTrade) GetState() BsqSwapTrade_State

func (*BsqSwapTrade) GetTakeOfferDate added in v0.1.6

func (x *BsqSwapTrade) GetTakeOfferDate() int64

func (*BsqSwapTrade) GetTakerFee added in v0.1.6

func (x *BsqSwapTrade) GetTakerFee() int64

func (*BsqSwapTrade) GetTxId added in v0.1.6

func (x *BsqSwapTrade) GetTxId() string

func (*BsqSwapTrade) GetUid added in v0.1.6

func (x *BsqSwapTrade) GetUid() string

func (*BsqSwapTrade) ProtoMessage added in v0.1.6

func (*BsqSwapTrade) ProtoMessage()

func (*BsqSwapTrade) ProtoReflect added in v0.1.6

func (x *BsqSwapTrade) ProtoReflect() protoreflect.Message

func (*BsqSwapTrade) Reset added in v0.1.6

func (x *BsqSwapTrade) Reset()

func (*BsqSwapTrade) String added in v0.1.6

func (x *BsqSwapTrade) String() string

type BsqSwapTradeInfo added in v0.1.6

type BsqSwapTradeInfo struct {
	TxId             string `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`                                          // The BSQ swap's bitcoin transaction id.
	BsqTradeAmount   uint64 `protobuf:"varint,2,opt,name=bsq_trade_amount,json=bsqTradeAmount,proto3" json:"bsq_trade_amount,omitempty"`         // The amount of BSQ swapped in satoshis.
	BtcTradeAmount   uint64 `protobuf:"varint,3,opt,name=btc_trade_amount,json=btcTradeAmount,proto3" json:"btc_trade_amount,omitempty"`         // The amount of BTC swapped in satoshis.
	BsqMakerTradeFee uint64 `protobuf:"varint,4,opt,name=bsq_maker_trade_fee,json=bsqMakerTradeFee,proto3" json:"bsq_maker_trade_fee,omitempty"` // The swap offer maker's BSQ trade fee.
	BsqTakerTradeFee uint64 `protobuf:"varint,5,opt,name=bsq_taker_trade_fee,json=bsqTakerTradeFee,proto3" json:"bsq_taker_trade_fee,omitempty"` // The swap offer taker's BSQ trade fee.
	TxFeePerVbyte    uint64 `protobuf:"varint,6,opt,name=tx_fee_per_vbyte,json=txFeePerVbyte,proto3" json:"tx_fee_per_vbyte,omitempty"`          // The swap transaction's bitcoin transaction id.
	MakerBsqAddress  string `protobuf:"bytes,7,opt,name=maker_bsq_address,json=makerBsqAddress,proto3" json:"maker_bsq_address,omitempty"`       // The swap offer maker's BSQ wallet address.
	MakerBtcAddress  string `protobuf:"bytes,8,opt,name=maker_btc_address,json=makerBtcAddress,proto3" json:"maker_btc_address,omitempty"`       // The swap offer maker's BTC wallet address.
	TakerBsqAddress  string `protobuf:"bytes,9,opt,name=taker_bsq_address,json=takerBsqAddress,proto3" json:"taker_bsq_address,omitempty"`       // The swap offer taker's BSQ wallet address.
	TakerBtcAddress  string `protobuf:"bytes,10,opt,name=taker_btc_address,json=takerBtcAddress,proto3" json:"taker_btc_address,omitempty"`      // The swap offer taker's BTC wallet address.
	NumConfirmations uint64 `protobuf:"varint,11,opt,name=num_confirmations,json=numConfirmations,proto3" json:"num_confirmations,omitempty"`    // The confirmations count for the completed swap's bitcoin transaction.
	ErrorMessage     string `protobuf:"bytes,12,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`                 // An explanation for a failure to complete the swap.
	Payout           uint64 `protobuf:"varint,13,opt,name=payout,proto3" json:"payout,omitempty"`                                                // The amount of the user's trade payout in satoshis.
	SwapPeerPayout   uint64 `protobuf:"varint,14,opt,name=swap_peer_payout,json=swapPeerPayout,proto3" json:"swap_peer_payout,omitempty"`        // The amount of the peer's trade payout in satoshis.
	// contains filtered or unexported fields
}

BSQ Swap protocol specific fields not common to Bisq v1 trade protocol fields.

func (*BsqSwapTradeInfo) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapTradeInfo.ProtoReflect.Descriptor instead.

func (*BsqSwapTradeInfo) GetBsqMakerTradeFee added in v0.1.6

func (x *BsqSwapTradeInfo) GetBsqMakerTradeFee() uint64

func (*BsqSwapTradeInfo) GetBsqTakerTradeFee added in v0.1.6

func (x *BsqSwapTradeInfo) GetBsqTakerTradeFee() uint64

func (*BsqSwapTradeInfo) GetBsqTradeAmount added in v0.1.6

func (x *BsqSwapTradeInfo) GetBsqTradeAmount() uint64

func (*BsqSwapTradeInfo) GetBtcTradeAmount added in v0.1.6

func (x *BsqSwapTradeInfo) GetBtcTradeAmount() uint64

func (*BsqSwapTradeInfo) GetErrorMessage added in v0.1.6

func (x *BsqSwapTradeInfo) GetErrorMessage() string

func (*BsqSwapTradeInfo) GetMakerBsqAddress added in v0.1.6

func (x *BsqSwapTradeInfo) GetMakerBsqAddress() string

func (*BsqSwapTradeInfo) GetMakerBtcAddress added in v0.1.6

func (x *BsqSwapTradeInfo) GetMakerBtcAddress() string

func (*BsqSwapTradeInfo) GetNumConfirmations added in v0.1.9

func (x *BsqSwapTradeInfo) GetNumConfirmations() uint64

func (*BsqSwapTradeInfo) GetPayout added in v0.1.9

func (x *BsqSwapTradeInfo) GetPayout() uint64

func (*BsqSwapTradeInfo) GetSwapPeerPayout added in v0.1.9

func (x *BsqSwapTradeInfo) GetSwapPeerPayout() uint64

func (*BsqSwapTradeInfo) GetTakerBsqAddress added in v0.1.6

func (x *BsqSwapTradeInfo) GetTakerBsqAddress() string

func (*BsqSwapTradeInfo) GetTakerBtcAddress added in v0.1.6

func (x *BsqSwapTradeInfo) GetTakerBtcAddress() string

func (*BsqSwapTradeInfo) GetTxFeePerVbyte added in v0.1.6

func (x *BsqSwapTradeInfo) GetTxFeePerVbyte() uint64

func (*BsqSwapTradeInfo) GetTxId added in v0.1.6

func (x *BsqSwapTradeInfo) GetTxId() string

func (*BsqSwapTradeInfo) ProtoMessage added in v0.1.6

func (*BsqSwapTradeInfo) ProtoMessage()

func (*BsqSwapTradeInfo) ProtoReflect added in v0.1.6

func (x *BsqSwapTradeInfo) ProtoReflect() protoreflect.Message

func (*BsqSwapTradeInfo) Reset added in v0.1.6

func (x *BsqSwapTradeInfo) Reset()

func (*BsqSwapTradeInfo) String added in v0.1.6

func (x *BsqSwapTradeInfo) String() string

type BsqSwapTradePeer added in v0.1.6

type BsqSwapTradePeer struct {
	PubKeyRing *PubKeyRing            `protobuf:"bytes,1,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	BtcAddress string                 `protobuf:"bytes,2,opt,name=btc_address,json=btcAddress,proto3" json:"btc_address,omitempty"`
	BsqAddress string                 `protobuf:"bytes,3,opt,name=bsq_address,json=bsqAddress,proto3" json:"bsq_address,omitempty"`
	Inputs     []*RawTransactionInput `protobuf:"bytes,4,rep,name=inputs,proto3" json:"inputs,omitempty"`
	Change     int64                  `protobuf:"varint,5,opt,name=change,proto3" json:"change,omitempty"`
	Payout     int64                  `protobuf:"varint,6,opt,name=payout,proto3" json:"payout,omitempty"`
	Tx         []byte                 `protobuf:"bytes,7,opt,name=tx,proto3" json:"tx,omitempty"`
	// contains filtered or unexported fields
}

func (*BsqSwapTradePeer) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapTradePeer.ProtoReflect.Descriptor instead.

func (*BsqSwapTradePeer) GetBsqAddress added in v0.1.6

func (x *BsqSwapTradePeer) GetBsqAddress() string

func (*BsqSwapTradePeer) GetBtcAddress added in v0.1.6

func (x *BsqSwapTradePeer) GetBtcAddress() string

func (*BsqSwapTradePeer) GetChange added in v0.1.6

func (x *BsqSwapTradePeer) GetChange() int64

func (*BsqSwapTradePeer) GetInputs added in v0.1.6

func (x *BsqSwapTradePeer) GetInputs() []*RawTransactionInput

func (*BsqSwapTradePeer) GetPayout added in v0.1.6

func (x *BsqSwapTradePeer) GetPayout() int64

func (*BsqSwapTradePeer) GetPubKeyRing added in v0.1.6

func (x *BsqSwapTradePeer) GetPubKeyRing() *PubKeyRing

func (*BsqSwapTradePeer) GetTx added in v0.1.6

func (x *BsqSwapTradePeer) GetTx() []byte

func (*BsqSwapTradePeer) ProtoMessage added in v0.1.6

func (*BsqSwapTradePeer) ProtoMessage()

func (*BsqSwapTradePeer) ProtoReflect added in v0.1.6

func (x *BsqSwapTradePeer) ProtoReflect() protoreflect.Message

func (*BsqSwapTradePeer) Reset added in v0.1.6

func (x *BsqSwapTradePeer) Reset()

func (*BsqSwapTradePeer) String added in v0.1.6

func (x *BsqSwapTradePeer) String() string

type BsqSwapTrade_State added in v0.1.6

type BsqSwapTrade_State int32
const (
	BsqSwapTrade_PB_ERROR_STATE BsqSwapTrade_State = 0
	BsqSwapTrade_PREPARATION    BsqSwapTrade_State = 1
	BsqSwapTrade_COMPLETED      BsqSwapTrade_State = 2
	BsqSwapTrade_FAILED         BsqSwapTrade_State = 3
)

func (BsqSwapTrade_State) Descriptor added in v0.1.6

func (BsqSwapTrade_State) Enum added in v0.1.6

func (BsqSwapTrade_State) EnumDescriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapTrade_State.Descriptor instead.

func (BsqSwapTrade_State) Number added in v0.1.6

func (BsqSwapTrade_State) String added in v0.1.6

func (x BsqSwapTrade_State) String() string

func (BsqSwapTrade_State) Type added in v0.1.6

type BsqSwapTxInputsMessage added in v0.1.6

type BsqSwapTxInputsMessage struct {
	Uid                    string                 `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId                string                 `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress      *NodeAddress           `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	BsqInputs              []*RawTransactionInput `protobuf:"bytes,4,rep,name=bsq_inputs,json=bsqInputs,proto3" json:"bsq_inputs,omitempty"`
	BsqChange              int64                  `protobuf:"varint,5,opt,name=bsq_change,json=bsqChange,proto3" json:"bsq_change,omitempty"`
	BuyersBtcPayoutAddress string                 `` /* 131-byte string literal not displayed */
	BuyersBsqChangeAddress string                 `` /* 131-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*BsqSwapTxInputsMessage) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BsqSwapTxInputsMessage.ProtoReflect.Descriptor instead.

func (*BsqSwapTxInputsMessage) GetBsqChange added in v0.1.6

func (x *BsqSwapTxInputsMessage) GetBsqChange() int64

func (*BsqSwapTxInputsMessage) GetBsqInputs added in v0.1.6

func (x *BsqSwapTxInputsMessage) GetBsqInputs() []*RawTransactionInput

func (*BsqSwapTxInputsMessage) GetBuyersBsqChangeAddress added in v0.1.6

func (x *BsqSwapTxInputsMessage) GetBuyersBsqChangeAddress() string

func (*BsqSwapTxInputsMessage) GetBuyersBtcPayoutAddress added in v0.1.6

func (x *BsqSwapTxInputsMessage) GetBuyersBtcPayoutAddress() string

func (*BsqSwapTxInputsMessage) GetSenderNodeAddress added in v0.1.6

func (x *BsqSwapTxInputsMessage) GetSenderNodeAddress() *NodeAddress

func (*BsqSwapTxInputsMessage) GetTradeId added in v0.1.6

func (x *BsqSwapTxInputsMessage) GetTradeId() string

func (*BsqSwapTxInputsMessage) GetUid added in v0.1.6

func (x *BsqSwapTxInputsMessage) GetUid() string

func (*BsqSwapTxInputsMessage) ProtoMessage added in v0.1.6

func (*BsqSwapTxInputsMessage) ProtoMessage()

func (*BsqSwapTxInputsMessage) ProtoReflect added in v0.1.6

func (x *BsqSwapTxInputsMessage) ProtoReflect() protoreflect.Message

func (*BsqSwapTxInputsMessage) Reset added in v0.1.6

func (x *BsqSwapTxInputsMessage) Reset()

func (*BsqSwapTxInputsMessage) String added in v0.1.6

func (x *BsqSwapTxInputsMessage) String() string

type BtcBalanceInfo added in v0.1.4

type BtcBalanceInfo struct {

	// The BTC amount currently available to send to other addresses at the user's discretion, in satoshis.
	AvailableBalance uint64 `protobuf:"varint,1,opt,name=available_balance,json=availableBalance,proto3" json:"available_balance,omitempty"`
	// The BTC amount currently reserved to cover open offers' security deposits, and BTC sellers' payout amounts,
	// in satoshis.  Reserved funds are not spendable, but are recoverable by users. When a user cancels an offer
	// funds reserved for that offer are returned to the available_balance.
	ReservedBalance uint64 `protobuf:"varint,2,opt,name=reserved_balance,json=reservedBalance,proto3" json:"reserved_balance,omitempty"`
	// The sum of available_balance + reserved_balance, in satoshis.
	TotalAvailableBalance uint64 `` /* 127-byte string literal not displayed */
	// The BTC amount being locked to cover the security deposits and BTC seller's pending trade payouts.  Locked
	// funds are not recoverable until a trade is completed, when security deposits are returned to the available_balance.
	LockedBalance uint64 `protobuf:"varint,4,opt,name=locked_balance,json=lockedBalance,proto3" json:"locked_balance,omitempty"`
	// contains filtered or unexported fields
}

func (*BtcBalanceInfo) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BtcBalanceInfo.ProtoReflect.Descriptor instead.

func (*BtcBalanceInfo) GetAvailableBalance added in v0.1.4

func (x *BtcBalanceInfo) GetAvailableBalance() uint64

func (*BtcBalanceInfo) GetLockedBalance added in v0.1.4

func (x *BtcBalanceInfo) GetLockedBalance() uint64

func (*BtcBalanceInfo) GetReservedBalance added in v0.1.4

func (x *BtcBalanceInfo) GetReservedBalance() uint64

func (*BtcBalanceInfo) GetTotalAvailableBalance added in v0.1.4

func (x *BtcBalanceInfo) GetTotalAvailableBalance() uint64

func (*BtcBalanceInfo) ProtoMessage added in v0.1.4

func (*BtcBalanceInfo) ProtoMessage()

func (*BtcBalanceInfo) ProtoReflect added in v0.1.4

func (x *BtcBalanceInfo) ProtoReflect() protoreflect.Message

func (*BtcBalanceInfo) Reset added in v0.1.4

func (x *BtcBalanceInfo) Reset()

func (*BtcBalanceInfo) String added in v0.1.4

func (x *BtcBalanceInfo) String() string

type BundleOfEnvelopes added in v0.1.4

type BundleOfEnvelopes struct {
	Envelopes []*NetworkEnvelope `protobuf:"bytes,1,rep,name=envelopes,proto3" json:"envelopes,omitempty"`
	// contains filtered or unexported fields
}

func (*BundleOfEnvelopes) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BundleOfEnvelopes.ProtoReflect.Descriptor instead.

func (*BundleOfEnvelopes) GetEnvelopes added in v0.1.4

func (x *BundleOfEnvelopes) GetEnvelopes() []*NetworkEnvelope

func (*BundleOfEnvelopes) ProtoMessage added in v0.1.4

func (*BundleOfEnvelopes) ProtoMessage()

func (*BundleOfEnvelopes) ProtoReflect added in v0.1.4

func (x *BundleOfEnvelopes) ProtoReflect() protoreflect.Message

func (*BundleOfEnvelopes) Reset added in v0.1.4

func (x *BundleOfEnvelopes) Reset()

func (*BundleOfEnvelopes) String added in v0.1.4

func (x *BundleOfEnvelopes) String() string

type BurningManAccountingStore added in v0.1.10

type BurningManAccountingStore struct {
	Blocks []*AccountingBlock `protobuf:"bytes,1,rep,name=blocks,proto3" json:"blocks,omitempty"`
	// contains filtered or unexported fields
}

func (*BurningManAccountingStore) Descriptor deprecated added in v0.1.10

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

Deprecated: Use BurningManAccountingStore.ProtoReflect.Descriptor instead.

func (*BurningManAccountingStore) GetBlocks added in v0.1.10

func (x *BurningManAccountingStore) GetBlocks() []*AccountingBlock

func (*BurningManAccountingStore) ProtoMessage added in v0.1.10

func (*BurningManAccountingStore) ProtoMessage()

func (*BurningManAccountingStore) ProtoReflect added in v0.1.10

func (*BurningManAccountingStore) Reset added in v0.1.10

func (x *BurningManAccountingStore) Reset()

func (*BurningManAccountingStore) String added in v0.1.10

func (x *BurningManAccountingStore) String() string

type BuyerAsMakerTrade added in v0.1.4

type BuyerAsMakerTrade struct {
	Trade *Trade `protobuf:"bytes,1,opt,name=trade,proto3" json:"trade,omitempty"`
	// contains filtered or unexported fields
}

func (*BuyerAsMakerTrade) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BuyerAsMakerTrade.ProtoReflect.Descriptor instead.

func (*BuyerAsMakerTrade) GetTrade added in v0.1.4

func (x *BuyerAsMakerTrade) GetTrade() *Trade

func (*BuyerAsMakerTrade) ProtoMessage added in v0.1.4

func (*BuyerAsMakerTrade) ProtoMessage()

func (*BuyerAsMakerTrade) ProtoReflect added in v0.1.4

func (x *BuyerAsMakerTrade) ProtoReflect() protoreflect.Message

func (*BuyerAsMakerTrade) Reset added in v0.1.4

func (x *BuyerAsMakerTrade) Reset()

func (*BuyerAsMakerTrade) String added in v0.1.4

func (x *BuyerAsMakerTrade) String() string

type BuyerAsTakerTrade added in v0.1.4

type BuyerAsTakerTrade struct {
	Trade *Trade `protobuf:"bytes,1,opt,name=trade,proto3" json:"trade,omitempty"`
	// contains filtered or unexported fields
}

func (*BuyerAsTakerTrade) Descriptor deprecated added in v0.1.4

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

Deprecated: Use BuyerAsTakerTrade.ProtoReflect.Descriptor instead.

func (*BuyerAsTakerTrade) GetTrade added in v0.1.4

func (x *BuyerAsTakerTrade) GetTrade() *Trade

func (*BuyerAsTakerTrade) ProtoMessage added in v0.1.4

func (*BuyerAsTakerTrade) ProtoMessage()

func (*BuyerAsTakerTrade) ProtoReflect added in v0.1.4

func (x *BuyerAsTakerTrade) ProtoReflect() protoreflect.Message

func (*BuyerAsTakerTrade) Reset added in v0.1.4

func (x *BuyerAsTakerTrade) Reset()

func (*BuyerAsTakerTrade) String added in v0.1.4

func (x *BuyerAsTakerTrade) String() string

type BuyersBsqSwapRequest added in v0.1.6

type BuyersBsqSwapRequest struct {
	Uid                    string                 `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId                string                 `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress      *NodeAddress           `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	TakerPubKeyRing        *PubKeyRing            `protobuf:"bytes,4,opt,name=taker_pub_key_ring,json=takerPubKeyRing,proto3" json:"taker_pub_key_ring,omitempty"`
	TradeAmount            int64                  `protobuf:"varint,5,opt,name=trade_amount,json=tradeAmount,proto3" json:"trade_amount,omitempty"`
	TxFeePerVbyte          int64                  `protobuf:"varint,6,opt,name=tx_fee_per_vbyte,json=txFeePerVbyte,proto3" json:"tx_fee_per_vbyte,omitempty"`
	MakerFee               int64                  `protobuf:"varint,7,opt,name=maker_fee,json=makerFee,proto3" json:"maker_fee,omitempty"`
	TakerFee               int64                  `protobuf:"varint,8,opt,name=taker_fee,json=takerFee,proto3" json:"taker_fee,omitempty"`
	TradeDate              int64                  `protobuf:"varint,9,opt,name=trade_date,json=tradeDate,proto3" json:"trade_date,omitempty"`
	BsqInputs              []*RawTransactionInput `protobuf:"bytes,10,rep,name=bsq_inputs,json=bsqInputs,proto3" json:"bsq_inputs,omitempty"`
	BsqChange              int64                  `protobuf:"varint,11,opt,name=bsq_change,json=bsqChange,proto3" json:"bsq_change,omitempty"`
	BuyersBtcPayoutAddress string                 `` /* 132-byte string literal not displayed */
	BuyersBsqChangeAddress string                 `` /* 132-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*BuyersBsqSwapRequest) Descriptor deprecated added in v0.1.6

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

Deprecated: Use BuyersBsqSwapRequest.ProtoReflect.Descriptor instead.

func (*BuyersBsqSwapRequest) GetBsqChange added in v0.1.6

func (x *BuyersBsqSwapRequest) GetBsqChange() int64

func (*BuyersBsqSwapRequest) GetBsqInputs added in v0.1.6

func (x *BuyersBsqSwapRequest) GetBsqInputs() []*RawTransactionInput

func (*BuyersBsqSwapRequest) GetBuyersBsqChangeAddress added in v0.1.6

func (x *BuyersBsqSwapRequest) GetBuyersBsqChangeAddress() string

func (*BuyersBsqSwapRequest) GetBuyersBtcPayoutAddress added in v0.1.6

func (x *BuyersBsqSwapRequest) GetBuyersBtcPayoutAddress() string

func (*BuyersBsqSwapRequest) GetMakerFee added in v0.1.6

func (x *BuyersBsqSwapRequest) GetMakerFee() int64

func (*BuyersBsqSwapRequest) GetSenderNodeAddress added in v0.1.6

func (x *BuyersBsqSwapRequest) GetSenderNodeAddress() *NodeAddress

func (*BuyersBsqSwapRequest) GetTakerFee added in v0.1.6

func (x *BuyersBsqSwapRequest) GetTakerFee() int64

func (*BuyersBsqSwapRequest) GetTakerPubKeyRing added in v0.1.6

func (x *BuyersBsqSwapRequest) GetTakerPubKeyRing() *PubKeyRing

func (*BuyersBsqSwapRequest) GetTradeAmount added in v0.1.6

func (x *BuyersBsqSwapRequest) GetTradeAmount() int64

func (*BuyersBsqSwapRequest) GetTradeDate added in v0.1.6

func (x *BuyersBsqSwapRequest) GetTradeDate() int64

func (*BuyersBsqSwapRequest) GetTradeId added in v0.1.6

func (x *BuyersBsqSwapRequest) GetTradeId() string

func (*BuyersBsqSwapRequest) GetTxFeePerVbyte added in v0.1.6

func (x *BuyersBsqSwapRequest) GetTxFeePerVbyte() int64

func (*BuyersBsqSwapRequest) GetUid added in v0.1.6

func (x *BuyersBsqSwapRequest) GetUid() string

func (*BuyersBsqSwapRequest) ProtoMessage added in v0.1.6

func (*BuyersBsqSwapRequest) ProtoMessage()

func (*BuyersBsqSwapRequest) ProtoReflect added in v0.1.6

func (x *BuyersBsqSwapRequest) ProtoReflect() protoreflect.Message

func (*BuyersBsqSwapRequest) Reset added in v0.1.6

func (x *BuyersBsqSwapRequest) Reset()

func (*BuyersBsqSwapRequest) String added in v0.1.6

func (x *BuyersBsqSwapRequest) String() string

type ByteArray added in v0.1.4

type ByteArray struct {
	Bytes []byte `protobuf:"bytes,1,opt,name=bytes,proto3" json:"bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*ByteArray) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ByteArray.ProtoReflect.Descriptor instead.

func (*ByteArray) GetBytes added in v0.1.4

func (x *ByteArray) GetBytes() []byte

func (*ByteArray) ProtoMessage added in v0.1.4

func (*ByteArray) ProtoMessage()

func (*ByteArray) ProtoReflect added in v0.1.4

func (x *ByteArray) ProtoReflect() protoreflect.Message

func (*ByteArray) Reset added in v0.1.4

func (x *ByteArray) Reset()

func (*ByteArray) String added in v0.1.4

func (x *ByteArray) String() string

type CancelOfferReply added in v0.1.4

type CancelOfferReply struct {
	// contains filtered or unexported fields
}

func (*CancelOfferReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CancelOfferReply.ProtoReflect.Descriptor instead.

func (*CancelOfferReply) ProtoMessage added in v0.1.4

func (*CancelOfferReply) ProtoMessage()

func (*CancelOfferReply) ProtoReflect added in v0.1.4

func (x *CancelOfferReply) ProtoReflect() protoreflect.Message

func (*CancelOfferReply) Reset added in v0.1.4

func (x *CancelOfferReply) Reset()

func (*CancelOfferReply) String added in v0.1.4

func (x *CancelOfferReply) String() string

type CancelOfferRequest added in v0.1.4

type CancelOfferRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // The canceled offer's unique identifier.
	// contains filtered or unexported fields
}

func (*CancelOfferRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CancelOfferRequest.ProtoReflect.Descriptor instead.

func (*CancelOfferRequest) GetId added in v0.1.4

func (x *CancelOfferRequest) GetId() string

func (*CancelOfferRequest) ProtoMessage added in v0.1.4

func (*CancelOfferRequest) ProtoMessage()

func (*CancelOfferRequest) ProtoReflect added in v0.1.4

func (x *CancelOfferRequest) ProtoReflect() protoreflect.Message

func (*CancelOfferRequest) Reset added in v0.1.4

func (x *CancelOfferRequest) Reset()

func (*CancelOfferRequest) String added in v0.1.4

func (x *CancelOfferRequest) String() string

type CapitualAccountPayload added in v0.1.5

type CapitualAccountPayload struct {
	AccountNr string `protobuf:"bytes,1,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*CapitualAccountPayload) Descriptor deprecated added in v0.1.5

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

Deprecated: Use CapitualAccountPayload.ProtoReflect.Descriptor instead.

func (*CapitualAccountPayload) GetAccountNr added in v0.1.5

func (x *CapitualAccountPayload) GetAccountNr() string

func (*CapitualAccountPayload) ProtoMessage added in v0.1.5

func (*CapitualAccountPayload) ProtoMessage()

func (*CapitualAccountPayload) ProtoReflect added in v0.1.5

func (x *CapitualAccountPayload) ProtoReflect() protoreflect.Message

func (*CapitualAccountPayload) Reset added in v0.1.5

func (x *CapitualAccountPayload) Reset()

func (*CapitualAccountPayload) String added in v0.1.5

func (x *CapitualAccountPayload) String() string

type CashAppAccountPayload added in v0.1.4

type CashAppAccountPayload struct {
	CashTag string `protobuf:"bytes,1,opt,name=cash_tag,json=cashTag,proto3" json:"cash_tag,omitempty"`
	// contains filtered or unexported fields
}

Deprecated, not used.

func (*CashAppAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CashAppAccountPayload.ProtoReflect.Descriptor instead.

func (*CashAppAccountPayload) GetCashTag added in v0.1.4

func (x *CashAppAccountPayload) GetCashTag() string

func (*CashAppAccountPayload) ProtoMessage added in v0.1.4

func (*CashAppAccountPayload) ProtoMessage()

func (*CashAppAccountPayload) ProtoReflect added in v0.1.4

func (x *CashAppAccountPayload) ProtoReflect() protoreflect.Message

func (*CashAppAccountPayload) Reset added in v0.1.4

func (x *CashAppAccountPayload) Reset()

func (*CashAppAccountPayload) String added in v0.1.4

func (x *CashAppAccountPayload) String() string

type CashByMailAccountPayload added in v0.1.4

type CashByMailAccountPayload struct {
	PostalAddress string `protobuf:"bytes,1,opt,name=postal_address,json=postalAddress,proto3" json:"postal_address,omitempty"`
	Contact       string `protobuf:"bytes,2,opt,name=contact,proto3" json:"contact,omitempty"`
	ExtraInfo     string `protobuf:"bytes,3,opt,name=extra_info,json=extraInfo,proto3" json:"extra_info,omitempty"`
	// contains filtered or unexported fields
}

func (*CashByMailAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CashByMailAccountPayload.ProtoReflect.Descriptor instead.

func (*CashByMailAccountPayload) GetContact added in v0.1.4

func (x *CashByMailAccountPayload) GetContact() string

func (*CashByMailAccountPayload) GetExtraInfo added in v0.1.4

func (x *CashByMailAccountPayload) GetExtraInfo() string

func (*CashByMailAccountPayload) GetPostalAddress added in v0.1.4

func (x *CashByMailAccountPayload) GetPostalAddress() string

func (*CashByMailAccountPayload) ProtoMessage added in v0.1.4

func (*CashByMailAccountPayload) ProtoMessage()

func (*CashByMailAccountPayload) ProtoReflect added in v0.1.4

func (x *CashByMailAccountPayload) ProtoReflect() protoreflect.Message

func (*CashByMailAccountPayload) Reset added in v0.1.4

func (x *CashByMailAccountPayload) Reset()

func (*CashByMailAccountPayload) String added in v0.1.4

func (x *CashByMailAccountPayload) String() string

type CashDepositAccountPayload added in v0.1.4

type CashDepositAccountPayload struct {
	HolderName        string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	HolderEmail       string `protobuf:"bytes,2,opt,name=holder_email,json=holderEmail,proto3" json:"holder_email,omitempty"`
	BankName          string `protobuf:"bytes,3,opt,name=bank_name,json=bankName,proto3" json:"bank_name,omitempty"`
	BankId            string `protobuf:"bytes,4,opt,name=bank_id,json=bankId,proto3" json:"bank_id,omitempty"`
	BranchId          string `protobuf:"bytes,5,opt,name=branch_id,json=branchId,proto3" json:"branch_id,omitempty"`
	AccountNr         string `protobuf:"bytes,6,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	AccountType       string `protobuf:"bytes,7,opt,name=account_type,json=accountType,proto3" json:"account_type,omitempty"`
	Requirements      string `protobuf:"bytes,8,opt,name=requirements,proto3" json:"requirements,omitempty"`
	HolderTaxId       string `protobuf:"bytes,9,opt,name=holder_tax_id,json=holderTaxId,proto3" json:"holder_tax_id,omitempty"`
	NationalAccountId string `protobuf:"bytes,10,opt,name=national_account_id,json=nationalAccountId,proto3" json:"national_account_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CashDepositAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CashDepositAccountPayload.ProtoReflect.Descriptor instead.

func (*CashDepositAccountPayload) GetAccountNr added in v0.1.4

func (x *CashDepositAccountPayload) GetAccountNr() string

func (*CashDepositAccountPayload) GetAccountType added in v0.1.4

func (x *CashDepositAccountPayload) GetAccountType() string

func (*CashDepositAccountPayload) GetBankId added in v0.1.4

func (x *CashDepositAccountPayload) GetBankId() string

func (*CashDepositAccountPayload) GetBankName added in v0.1.4

func (x *CashDepositAccountPayload) GetBankName() string

func (*CashDepositAccountPayload) GetBranchId added in v0.1.4

func (x *CashDepositAccountPayload) GetBranchId() string

func (*CashDepositAccountPayload) GetHolderEmail added in v0.1.4

func (x *CashDepositAccountPayload) GetHolderEmail() string

func (*CashDepositAccountPayload) GetHolderName added in v0.1.4

func (x *CashDepositAccountPayload) GetHolderName() string

func (*CashDepositAccountPayload) GetHolderTaxId added in v0.1.4

func (x *CashDepositAccountPayload) GetHolderTaxId() string

func (*CashDepositAccountPayload) GetNationalAccountId added in v0.1.4

func (x *CashDepositAccountPayload) GetNationalAccountId() string

func (*CashDepositAccountPayload) GetRequirements added in v0.1.4

func (x *CashDepositAccountPayload) GetRequirements() string

func (*CashDepositAccountPayload) ProtoMessage added in v0.1.4

func (*CashDepositAccountPayload) ProtoMessage()

func (*CashDepositAccountPayload) ProtoReflect added in v0.1.4

func (*CashDepositAccountPayload) Reset added in v0.1.4

func (x *CashDepositAccountPayload) Reset()

func (*CashDepositAccountPayload) String added in v0.1.4

func (x *CashDepositAccountPayload) String() string

type CelPayAccountPayload added in v0.1.6

type CelPayAccountPayload struct {
	Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*CelPayAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use CelPayAccountPayload.ProtoReflect.Descriptor instead.

func (*CelPayAccountPayload) GetEmail added in v0.1.6

func (x *CelPayAccountPayload) GetEmail() string

func (*CelPayAccountPayload) ProtoMessage added in v0.1.6

func (*CelPayAccountPayload) ProtoMessage()

func (*CelPayAccountPayload) ProtoReflect added in v0.1.6

func (x *CelPayAccountPayload) ProtoReflect() protoreflect.Message

func (*CelPayAccountPayload) Reset added in v0.1.6

func (x *CelPayAccountPayload) Reset()

func (*CelPayAccountPayload) String added in v0.1.6

func (x *CelPayAccountPayload) String() string

type ChangeParamProposal added in v0.1.4

type ChangeParamProposal struct {
	Param      string `protobuf:"bytes,1,opt,name=param,proto3" json:"param,omitempty"` // Name of enum.
	ParamValue string `protobuf:"bytes,2,opt,name=param_value,json=paramValue,proto3" json:"param_value,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeParamProposal) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ChangeParamProposal.ProtoReflect.Descriptor instead.

func (*ChangeParamProposal) GetParam added in v0.1.4

func (x *ChangeParamProposal) GetParam() string

func (*ChangeParamProposal) GetParamValue added in v0.1.4

func (x *ChangeParamProposal) GetParamValue() string

func (*ChangeParamProposal) ProtoMessage added in v0.1.4

func (*ChangeParamProposal) ProtoMessage()

func (*ChangeParamProposal) ProtoReflect added in v0.1.4

func (x *ChangeParamProposal) ProtoReflect() protoreflect.Message

func (*ChangeParamProposal) Reset added in v0.1.4

func (x *ChangeParamProposal) Reset()

func (*ChangeParamProposal) String added in v0.1.4

func (x *ChangeParamProposal) String() string

type ChaseQuickPayAccountPayload added in v0.1.4

type ChaseQuickPayAccountPayload struct {
	Email      string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	HolderName string `protobuf:"bytes,2,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	// contains filtered or unexported fields
}

func (*ChaseQuickPayAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ChaseQuickPayAccountPayload.ProtoReflect.Descriptor instead.

func (*ChaseQuickPayAccountPayload) GetEmail added in v0.1.4

func (x *ChaseQuickPayAccountPayload) GetEmail() string

func (*ChaseQuickPayAccountPayload) GetHolderName added in v0.1.4

func (x *ChaseQuickPayAccountPayload) GetHolderName() string

func (*ChaseQuickPayAccountPayload) ProtoMessage added in v0.1.4

func (*ChaseQuickPayAccountPayload) ProtoMessage()

func (*ChaseQuickPayAccountPayload) ProtoReflect added in v0.1.4

func (*ChaseQuickPayAccountPayload) Reset added in v0.1.4

func (x *ChaseQuickPayAccountPayload) Reset()

func (*ChaseQuickPayAccountPayload) String added in v0.1.4

func (x *ChaseQuickPayAccountPayload) String() string

type ChatMessage added in v0.1.4

type ChatMessage struct {
	Date              int64         `protobuf:"varint,1,opt,name=date,proto3" json:"date,omitempty"`
	TradeId           string        `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	TraderId          int32         `protobuf:"varint,3,opt,name=trader_id,json=traderId,proto3" json:"trader_id,omitempty"`
	SenderIsTrader    bool          `protobuf:"varint,4,opt,name=sender_is_trader,json=senderIsTrader,proto3" json:"sender_is_trader,omitempty"`
	Message           string        `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
	Attachments       []*Attachment `protobuf:"bytes,6,rep,name=attachments,proto3" json:"attachments,omitempty"`
	Arrived           bool          `protobuf:"varint,7,opt,name=arrived,proto3" json:"arrived,omitempty"`
	StoredInMailbox   bool          `protobuf:"varint,8,opt,name=stored_in_mailbox,json=storedInMailbox,proto3" json:"stored_in_mailbox,omitempty"`
	IsSystemMessage   bool          `protobuf:"varint,9,opt,name=is_system_message,json=isSystemMessage,proto3" json:"is_system_message,omitempty"`
	SenderNodeAddress *NodeAddress  `protobuf:"bytes,10,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Uid               string        `protobuf:"bytes,11,opt,name=uid,proto3" json:"uid,omitempty"`
	SendMessageError  string        `protobuf:"bytes,12,opt,name=send_message_error,json=sendMessageError,proto3" json:"send_message_error,omitempty"`
	Acknowledged      bool          `protobuf:"varint,13,opt,name=acknowledged,proto3" json:"acknowledged,omitempty"`
	AckError          string        `protobuf:"bytes,14,opt,name=ack_error,json=ackError,proto3" json:"ack_error,omitempty"`
	Type              SupportType   `protobuf:"varint,15,opt,name=type,proto3,enum=io.bisq.protobuffer.SupportType" json:"type,omitempty"`
	WasDisplayed      bool          `protobuf:"varint,16,opt,name=was_displayed,json=wasDisplayed,proto3" json:"was_displayed,omitempty"`
	// contains filtered or unexported fields
}

func (*ChatMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ChatMessage.ProtoReflect.Descriptor instead.

func (*ChatMessage) GetAckError added in v0.1.4

func (x *ChatMessage) GetAckError() string

func (*ChatMessage) GetAcknowledged added in v0.1.4

func (x *ChatMessage) GetAcknowledged() bool

func (*ChatMessage) GetArrived added in v0.1.4

func (x *ChatMessage) GetArrived() bool

func (*ChatMessage) GetAttachments added in v0.1.4

func (x *ChatMessage) GetAttachments() []*Attachment

func (*ChatMessage) GetDate added in v0.1.4

func (x *ChatMessage) GetDate() int64

func (*ChatMessage) GetIsSystemMessage added in v0.1.4

func (x *ChatMessage) GetIsSystemMessage() bool

func (*ChatMessage) GetMessage added in v0.1.4

func (x *ChatMessage) GetMessage() string

func (*ChatMessage) GetSendMessageError added in v0.1.4

func (x *ChatMessage) GetSendMessageError() string

func (*ChatMessage) GetSenderIsTrader added in v0.1.4

func (x *ChatMessage) GetSenderIsTrader() bool

func (*ChatMessage) GetSenderNodeAddress added in v0.1.4

func (x *ChatMessage) GetSenderNodeAddress() *NodeAddress

func (*ChatMessage) GetStoredInMailbox added in v0.1.4

func (x *ChatMessage) GetStoredInMailbox() bool

func (*ChatMessage) GetTradeId added in v0.1.4

func (x *ChatMessage) GetTradeId() string

func (*ChatMessage) GetTraderId added in v0.1.4

func (x *ChatMessage) GetTraderId() int32

func (*ChatMessage) GetType added in v0.1.4

func (x *ChatMessage) GetType() SupportType

func (*ChatMessage) GetUid added in v0.1.4

func (x *ChatMessage) GetUid() string

func (*ChatMessage) GetWasDisplayed added in v0.1.4

func (x *ChatMessage) GetWasDisplayed() bool

func (*ChatMessage) ProtoMessage added in v0.1.4

func (*ChatMessage) ProtoMessage()

func (*ChatMessage) ProtoReflect added in v0.1.4

func (x *ChatMessage) ProtoReflect() protoreflect.Message

func (*ChatMessage) Reset added in v0.1.4

func (x *ChatMessage) Reset()

func (*ChatMessage) String added in v0.1.4

func (x *ChatMessage) String() string

type ClearXchangeAccountPayload added in v0.1.4

type ClearXchangeAccountPayload struct {
	HolderName      string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	EmailOrMobileNr string `protobuf:"bytes,2,opt,name=email_or_mobile_nr,json=emailOrMobileNr,proto3" json:"email_or_mobile_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*ClearXchangeAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ClearXchangeAccountPayload.ProtoReflect.Descriptor instead.

func (*ClearXchangeAccountPayload) GetEmailOrMobileNr added in v0.1.4

func (x *ClearXchangeAccountPayload) GetEmailOrMobileNr() string

func (*ClearXchangeAccountPayload) GetHolderName added in v0.1.4

func (x *ClearXchangeAccountPayload) GetHolderName() string

func (*ClearXchangeAccountPayload) ProtoMessage added in v0.1.4

func (*ClearXchangeAccountPayload) ProtoMessage()

func (*ClearXchangeAccountPayload) ProtoReflect added in v0.1.4

func (*ClearXchangeAccountPayload) Reset added in v0.1.4

func (x *ClearXchangeAccountPayload) Reset()

func (*ClearXchangeAccountPayload) String added in v0.1.4

func (x *ClearXchangeAccountPayload) String() string

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client for Bisq API calls

func NewClient

func NewClient(host, passwd string, timeout time.Duration) *Client

NewClient instaniates a new Bisq client

func (*Client) CancelOffer

func (c *Client) CancelOffer(ctx context.Context, ID string) error

CancelOffer to terminate an active offering

func (*Client) Close

func (c *Client) Close() error

Close connection to Bisq gRPC server

func (*Client) CloseTrade added in v0.1.9

func (c *Client) CloseTrade(ctx context.Context, tradeID string) error

CloseTrade closes a trade

func (*Client) ConfirmPaymentReceived

func (c *Client) ConfirmPaymentReceived(ctx context.Context, tradeID string) error

ConfirmPaymentReceived closes an arbitration process for payments

func (*Client) ConfirmPaymentStarted

func (c *Client) ConfirmPaymentStarted(ctx context.Context, tradeID string) error

ConfirmPaymentStarted starts the arbitration process for payments

func (*Client) Connect

func (c *Client) Connect(ctx context.Context, timeout time.Duration) (err error)

Connect to Bisq gRPC server

func (*Client) CreateBsqSwapOffer added in v0.1.8

func (c *Client) CreateBsqSwapOffer(ctx context.Context, req *CreateBsqSwapOfferRequest) (*OfferInfo, error)

CreateBsqSwapOffer creates a new BSQ swap offer

func (*Client) CreateOffer

func (c *Client) CreateOffer(ctx context.Context, req *CreateOfferRequest) (*OfferInfo, error)

CreateOffer to create a new offering

func (*Client) CreatePaymentAccount

func (c *Client) CreatePaymentAccount(ctx context.Context, form string) (*PaymentAccount, error)

CreatePaymentAccount creates a new payment account

func (*Client) FailTrade added in v0.1.9

func (c *Client) FailTrade(ctx context.Context, tradeID string) error

FailTrade cancels a trade

func (*Client) GetAddressBalance

func (c *Client) GetAddressBalance(ctx context.Context, addr string) (*AddressBalanceInfo, error)

GetAddressBalance returns the balance for a Bitcoin address

func (*Client) GetBalances

func (c *Client) GetBalances(ctx context.Context, curr string) (*BalancesInfo, error)

GetBalances returns balance info for given currency

func (*Client) GetBsqSwapOffer added in v0.1.8

func (c *Client) GetBsqSwapOffer(ctx context.Context, ID string) (*OfferInfo, error)

GetBsqSwapOffer returns a BSQ swap offer for given identifier.

func (*Client) GetBsqSwapOffers added in v0.1.8

func (c *Client) GetBsqSwapOffers(ctx context.Context, dir, curr string) ([]*OfferInfo, error)

GetBsqSwapOffers returns a list of BSQ swap offers

func (*Client) GetFundingAddresses

func (c *Client) GetFundingAddresses(ctx context.Context) ([]*AddressBalanceInfo, error)

GetFundingAddresses returns a list of available funding addresses

func (*Client) GetMarketPrice

func (c *Client) GetMarketPrice(ctx context.Context, curr string) (float64, error)

GetMarketPrice returns the price of Bitcoin in the given currency

func (*Client) GetMyBsqSwapOffer added in v0.1.8

func (c *Client) GetMyBsqSwapOffer(ctx context.Context, ID string) (*OfferInfo, error)

GetMyBsqSwapOffer returns own BSQ swap offer for given identifier.

func (*Client) GetMyBsqSwapOffers added in v0.1.8

func (c *Client) GetMyBsqSwapOffers(ctx context.Context, dir, curr string) ([]*OfferInfo, error)

GetMyBsqSwapOffers returns a list of BSQ swap offers

func (*Client) GetMyOffer

func (c *Client) GetMyOffer(ctx context.Context, ID string) (*OfferInfo, error)

GetMyOffer returns our offer for a given ID

func (*Client) GetMyOffers

func (c *Client) GetMyOffers(ctx context.Context, dir, curr string) ([]*OfferInfo, error)

GetMyOffers returns all of our offers for given criteria

func (*Client) GetOffer

func (c *Client) GetOffer(ctx context.Context, ID string) (*OfferInfo, error)

GetOffer returns the offer for a given ID

func (*Client) GetOfferCategory added in v0.1.9

func (c *Client) GetOfferCategory(ctx context.Context, ID string) (*GetOfferCategoryReply_OfferCategory, error)

GetOfferCategory returns the category of the offer with given ID

func (*Client) GetOffers

func (c *Client) GetOffers(ctx context.Context, dir, curr string) ([]*OfferInfo, error)

GetOffers returns all offers for given criteria

func (*Client) GetPaymentAccountForm

func (c *Client) GetPaymentAccountForm(ctx context.Context, mthdID string) (map[string]interface{}, error)

GetPaymentAccountForm returns a template for payment accounts

func (*Client) GetPaymentAccounts

func (c *Client) GetPaymentAccounts(ctx context.Context) ([]*PaymentAccount, error)

GetPaymentAccounts returns a list of payment accounts

func (*Client) GetPaymentMethods

func (c *Client) GetPaymentMethods(ctx context.Context) ([]*PaymentMethod, error)

GetPaymentMethods returns all available payment methods

func (*Client) GetTrade

func (c *Client) GetTrade(ctx context.Context, ID string) (*TradeInfo, error)

GetTrade returns the offer information for a trade with given ID

func (*Client) GetTrades added in v0.1.11

func (c *Client) GetTrades(ctx context.Context, mode int) ([]*TradeInfo, error)

GetTrades returns offers: mode = 0 (Open), 1 (Closed), 2 (Failed)

func (*Client) GetTransaction

func (c *Client) GetTransaction(ctx context.Context, txID string) (*TxInfo, error)

GetTransaction with the specified ID

func (*Client) GetTxFeeRate

func (c *Client) GetTxFeeRate(ctx context.Context) (*TxFeeRateInfo, error)

GetTxFeeRate returns information about the proposed fee rate

func (*Client) GetUnusedBsqAddress

func (c *Client) GetUnusedBsqAddress(ctx context.Context) (string, error)

GetUnusedBsqAddress returns an unused BSQ address in the wallet

func (*Client) GetVersion

func (c *Client) GetVersion(ctx context.Context) (string, error)

GetVersion returns the version of the Bisq server

func (*Client) LockWallet

func (c *Client) LockWallet(ctx context.Context) error

LockWallet locks a wallet from further usage

func (*Client) RemoveWalletPassword

func (c *Client) RemoveWalletPassword(ctx context.Context, passwd string) error

RemoveWalletPassword removes password protection from the wallet

func (*Client) SendBsq

func (c *Client) SendBsq(ctx context.Context, address, amount, txFeeRate string) (*TxInfo, error)

SendBsq to transfer given amount of BSQ to address

func (*Client) SendBtc

func (c *Client) SendBtc(ctx context.Context, address, amount, txFeeRate, memo string) (*TxInfo, error)

SendBtc to send given amount of Bitcoin to address

func (*Client) SetTimeout added in v0.1.8

func (c *Client) SetTimeout(t int) error

SetTimeout for RPC requests

func (*Client) SetTxFeeRatePreference

func (c *Client) SetTxFeeRatePreference(ctx context.Context, pref uint64) (*TxFeeRateInfo, error)

SetTxFeeRatePreference sets the preferred TxFeeRate

func (*Client) SetWalletPassword

func (c *Client) SetWalletPassword(ctx context.Context, passwdOld, passwdNew string) error

SetWalletPassword sets a new password for the wallet

func (*Client) TakeOffer

func (c *Client) TakeOffer(ctx context.Context, amount int64, offerID, accountID, takerFeeCurrency string) (*TradeInfo, error)

TakeOffer accepts an offer with given ID

func (*Client) UnFailTrade added in v0.1.9

func (c *Client) UnFailTrade(ctx context.Context, tradeID string) error

UnFailTrade revives a failed trade

func (*Client) UnlockWallet

func (c *Client) UnlockWallet(ctx context.Context, passwd string, timeout uint64) error

UnlockWallet with password for given period of time

func (*Client) UnsetTxFeeRatePreference

func (c *Client) UnsetTxFeeRatePreference(ctx context.Context) (*TxFeeRateInfo, error)

UnsetTxFeeRatePreference unsets any previously specified preferene

func (*Client) WithdrawFunds

func (c *Client) WithdrawFunds(ctx context.Context, tradeID, address, memo string) error

WithdrawFunds cancels a trade and withdraws Bitcoins to an address

type CloseConnectionMessage added in v0.1.4

type CloseConnectionMessage struct {
	Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*CloseConnectionMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CloseConnectionMessage.ProtoReflect.Descriptor instead.

func (*CloseConnectionMessage) GetReason added in v0.1.4

func (x *CloseConnectionMessage) GetReason() string

func (*CloseConnectionMessage) ProtoMessage added in v0.1.4

func (*CloseConnectionMessage) ProtoMessage()

func (*CloseConnectionMessage) ProtoReflect added in v0.1.4

func (x *CloseConnectionMessage) ProtoReflect() protoreflect.Message

func (*CloseConnectionMessage) Reset added in v0.1.4

func (x *CloseConnectionMessage) Reset()

func (*CloseConnectionMessage) String added in v0.1.4

func (x *CloseConnectionMessage) String() string

type CloseTradeReply added in v0.1.9

type CloseTradeReply struct {
	// contains filtered or unexported fields
}

func (*CloseTradeReply) Descriptor deprecated added in v0.1.9

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

Deprecated: Use CloseTradeReply.ProtoReflect.Descriptor instead.

func (*CloseTradeReply) ProtoMessage added in v0.1.9

func (*CloseTradeReply) ProtoMessage()

func (*CloseTradeReply) ProtoReflect added in v0.1.9

func (x *CloseTradeReply) ProtoReflect() protoreflect.Message

func (*CloseTradeReply) Reset added in v0.1.9

func (x *CloseTradeReply) Reset()

func (*CloseTradeReply) String added in v0.1.9

func (x *CloseTradeReply) String() string

type CloseTradeRequest added in v0.1.9

type CloseTradeRequest struct {
	TradeId string `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"` // The unique identifier of the trade.
	// contains filtered or unexported fields
}

func (*CloseTradeRequest) Descriptor deprecated added in v0.1.9

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

Deprecated: Use CloseTradeRequest.ProtoReflect.Descriptor instead.

func (*CloseTradeRequest) GetTradeId added in v0.1.9

func (x *CloseTradeRequest) GetTradeId() string

func (*CloseTradeRequest) ProtoMessage added in v0.1.9

func (*CloseTradeRequest) ProtoMessage()

func (*CloseTradeRequest) ProtoReflect added in v0.1.9

func (x *CloseTradeRequest) ProtoReflect() protoreflect.Message

func (*CloseTradeRequest) Reset added in v0.1.9

func (x *CloseTradeRequest) Reset()

func (*CloseTradeRequest) String added in v0.1.9

func (x *CloseTradeRequest) String() string

type CompensationProposal added in v0.1.4

type CompensationProposal struct {
	RequestedBsq int64  `protobuf:"varint,1,opt,name=requested_bsq,json=requestedBsq,proto3" json:"requested_bsq,omitempty"`
	BsqAddress   string `protobuf:"bytes,2,opt,name=bsq_address,json=bsqAddress,proto3" json:"bsq_address,omitempty"`
	// contains filtered or unexported fields
}

func (*CompensationProposal) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CompensationProposal.ProtoReflect.Descriptor instead.

func (*CompensationProposal) GetBsqAddress added in v0.1.4

func (x *CompensationProposal) GetBsqAddress() string

func (*CompensationProposal) GetRequestedBsq added in v0.1.4

func (x *CompensationProposal) GetRequestedBsq() int64

func (*CompensationProposal) ProtoMessage added in v0.1.4

func (*CompensationProposal) ProtoMessage()

func (*CompensationProposal) ProtoReflect added in v0.1.4

func (x *CompensationProposal) ProtoReflect() protoreflect.Message

func (*CompensationProposal) Reset added in v0.1.4

func (x *CompensationProposal) Reset()

func (*CompensationProposal) String added in v0.1.4

func (x *CompensationProposal) String() string

type ConfirmPaymentReceivedReply added in v0.1.4

type ConfirmPaymentReceivedReply struct {
	// contains filtered or unexported fields
}

func (*ConfirmPaymentReceivedReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ConfirmPaymentReceivedReply.ProtoReflect.Descriptor instead.

func (*ConfirmPaymentReceivedReply) ProtoMessage added in v0.1.4

func (*ConfirmPaymentReceivedReply) ProtoMessage()

func (*ConfirmPaymentReceivedReply) ProtoReflect added in v0.1.4

func (*ConfirmPaymentReceivedReply) Reset added in v0.1.4

func (x *ConfirmPaymentReceivedReply) Reset()

func (*ConfirmPaymentReceivedReply) String added in v0.1.4

func (x *ConfirmPaymentReceivedReply) String() string

type ConfirmPaymentReceivedRequest added in v0.1.4

type ConfirmPaymentReceivedRequest struct {
	TradeId string `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"` // The unique identifier of the open trade.
	// contains filtered or unexported fields
}

func (*ConfirmPaymentReceivedRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ConfirmPaymentReceivedRequest.ProtoReflect.Descriptor instead.

func (*ConfirmPaymentReceivedRequest) GetTradeId added in v0.1.4

func (x *ConfirmPaymentReceivedRequest) GetTradeId() string

func (*ConfirmPaymentReceivedRequest) ProtoMessage added in v0.1.4

func (*ConfirmPaymentReceivedRequest) ProtoMessage()

func (*ConfirmPaymentReceivedRequest) ProtoReflect added in v0.1.4

func (*ConfirmPaymentReceivedRequest) Reset added in v0.1.4

func (x *ConfirmPaymentReceivedRequest) Reset()

func (*ConfirmPaymentReceivedRequest) String added in v0.1.4

type ConfirmPaymentStartedReply added in v0.1.4

type ConfirmPaymentStartedReply struct {
	// contains filtered or unexported fields
}

func (*ConfirmPaymentStartedReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ConfirmPaymentStartedReply.ProtoReflect.Descriptor instead.

func (*ConfirmPaymentStartedReply) ProtoMessage added in v0.1.4

func (*ConfirmPaymentStartedReply) ProtoMessage()

func (*ConfirmPaymentStartedReply) ProtoReflect added in v0.1.4

func (*ConfirmPaymentStartedReply) Reset added in v0.1.4

func (x *ConfirmPaymentStartedReply) Reset()

func (*ConfirmPaymentStartedReply) String added in v0.1.4

func (x *ConfirmPaymentStartedReply) String() string

type ConfirmPaymentStartedRequest added in v0.1.4

type ConfirmPaymentStartedRequest struct {
	TradeId string `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"` // The unique identifier of the open trade.
	// contains filtered or unexported fields
}

func (*ConfirmPaymentStartedRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ConfirmPaymentStartedRequest.ProtoReflect.Descriptor instead.

func (*ConfirmPaymentStartedRequest) GetTradeId added in v0.1.4

func (x *ConfirmPaymentStartedRequest) GetTradeId() string

func (*ConfirmPaymentStartedRequest) ProtoMessage added in v0.1.4

func (*ConfirmPaymentStartedRequest) ProtoMessage()

func (*ConfirmPaymentStartedRequest) ProtoReflect added in v0.1.4

func (*ConfirmPaymentStartedRequest) Reset added in v0.1.4

func (x *ConfirmPaymentStartedRequest) Reset()

func (*ConfirmPaymentStartedRequest) String added in v0.1.4

type ConfiscateBond added in v0.1.4

type ConfiscateBond struct {
	LockupTxId string `protobuf:"bytes,1,opt,name=lockup_tx_id,json=lockupTxId,proto3" json:"lockup_tx_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfiscateBond) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ConfiscateBond.ProtoReflect.Descriptor instead.

func (*ConfiscateBond) GetLockupTxId added in v0.1.4

func (x *ConfiscateBond) GetLockupTxId() string

func (*ConfiscateBond) ProtoMessage added in v0.1.4

func (*ConfiscateBond) ProtoMessage()

func (*ConfiscateBond) ProtoReflect added in v0.1.4

func (x *ConfiscateBond) ProtoReflect() protoreflect.Message

func (*ConfiscateBond) Reset added in v0.1.4

func (x *ConfiscateBond) Reset()

func (*ConfiscateBond) String added in v0.1.4

func (x *ConfiscateBond) String() string

type ConfiscateBondProposal added in v0.1.4

type ConfiscateBondProposal struct {
	LockupTxId string `protobuf:"bytes,1,opt,name=lockup_tx_id,json=lockupTxId,proto3" json:"lockup_tx_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfiscateBondProposal) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ConfiscateBondProposal.ProtoReflect.Descriptor instead.

func (*ConfiscateBondProposal) GetLockupTxId added in v0.1.4

func (x *ConfiscateBondProposal) GetLockupTxId() string

func (*ConfiscateBondProposal) ProtoMessage added in v0.1.4

func (*ConfiscateBondProposal) ProtoMessage()

func (*ConfiscateBondProposal) ProtoReflect added in v0.1.4

func (x *ConfiscateBondProposal) ProtoReflect() protoreflect.Message

func (*ConfiscateBondProposal) Reset added in v0.1.4

func (x *ConfiscateBondProposal) Reset()

func (*ConfiscateBondProposal) String added in v0.1.4

func (x *ConfiscateBondProposal) String() string

type Contract added in v0.1.4

type Contract struct {
	OfferPayload               *OfferPayload `protobuf:"bytes,1,opt,name=offer_payload,json=offerPayload,proto3" json:"offer_payload,omitempty"`
	TradeAmount                int64         `protobuf:"varint,2,opt,name=trade_amount,json=tradeAmount,proto3" json:"trade_amount,omitempty"`
	TradePrice                 int64         `protobuf:"varint,3,opt,name=trade_price,json=tradePrice,proto3" json:"trade_price,omitempty"`
	TakerFeeTxId               string        `protobuf:"bytes,4,opt,name=taker_fee_tx_id,json=takerFeeTxId,proto3" json:"taker_fee_tx_id,omitempty"`
	IsBuyerMakerAndSellerTaker bool          `` /* 148-byte string literal not displayed */
	MakerAccountId             string        `protobuf:"bytes,7,opt,name=maker_account_id,json=makerAccountId,proto3" json:"maker_account_id,omitempty"`
	TakerAccountId             string        `protobuf:"bytes,8,opt,name=taker_account_id,json=takerAccountId,proto3" json:"taker_account_id,omitempty"`
	// Not used anymore from 1.7.0 but kept for backward compatibility.
	MakerPaymentAccountPayload *PaymentAccountPayload `` /* 143-byte string literal not displayed */
	// Not used anymore from 1.7.0 but kept for backward compatibility.
	TakerPaymentAccountPayload        *PaymentAccountPayload `` /* 144-byte string literal not displayed */
	MakerPubKeyRing                   *PubKeyRing            `protobuf:"bytes,11,opt,name=maker_pub_key_ring,json=makerPubKeyRing,proto3" json:"maker_pub_key_ring,omitempty"`
	TakerPubKeyRing                   *PubKeyRing            `protobuf:"bytes,12,opt,name=taker_pub_key_ring,json=takerPubKeyRing,proto3" json:"taker_pub_key_ring,omitempty"`
	BuyerNodeAddress                  *NodeAddress           `protobuf:"bytes,13,opt,name=buyer_node_address,json=buyerNodeAddress,proto3" json:"buyer_node_address,omitempty"`
	SellerNodeAddress                 *NodeAddress           `protobuf:"bytes,14,opt,name=seller_node_address,json=sellerNodeAddress,proto3" json:"seller_node_address,omitempty"`
	MakerPayoutAddressString          string                 `` /* 138-byte string literal not displayed */
	TakerPayoutAddressString          string                 `` /* 138-byte string literal not displayed */
	MakerMultiSigPubKey               []byte                 `protobuf:"bytes,17,opt,name=maker_multi_sig_pub_key,json=makerMultiSigPubKey,proto3" json:"maker_multi_sig_pub_key,omitempty"`
	TakerMultiSigPubKey               []byte                 `protobuf:"bytes,18,opt,name=taker_multi_sig_pub_key,json=takerMultiSigPubKey,proto3" json:"taker_multi_sig_pub_key,omitempty"`
	MediatorNodeAddress               *NodeAddress           `protobuf:"bytes,19,opt,name=mediator_node_address,json=mediatorNodeAddress,proto3" json:"mediator_node_address,omitempty"`
	LockTime                          int64                  `protobuf:"varint,20,opt,name=lock_time,json=lockTime,proto3" json:"lock_time,omitempty"`
	RefundAgentNodeAddress            *NodeAddress           `` /* 132-byte string literal not displayed */
	HashOfMakersPaymentAccountPayload []byte                 `` /* 169-byte string literal not displayed */
	HashOfTakersPaymentAccountPayload []byte                 `` /* 169-byte string literal not displayed */
	MakerPaymentMethodId              string                 `` /* 126-byte string literal not displayed */
	TakerPaymentMethodId              string                 `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Contract) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Contract.ProtoReflect.Descriptor instead.

func (*Contract) GetBuyerNodeAddress added in v0.1.4

func (x *Contract) GetBuyerNodeAddress() *NodeAddress

func (*Contract) GetHashOfMakersPaymentAccountPayload added in v0.1.5

func (x *Contract) GetHashOfMakersPaymentAccountPayload() []byte

func (*Contract) GetHashOfTakersPaymentAccountPayload added in v0.1.5

func (x *Contract) GetHashOfTakersPaymentAccountPayload() []byte

func (*Contract) GetIsBuyerMakerAndSellerTaker added in v0.1.4

func (x *Contract) GetIsBuyerMakerAndSellerTaker() bool

func (*Contract) GetLockTime added in v0.1.4

func (x *Contract) GetLockTime() int64

func (*Contract) GetMakerAccountId added in v0.1.4

func (x *Contract) GetMakerAccountId() string

func (*Contract) GetMakerMultiSigPubKey added in v0.1.4

func (x *Contract) GetMakerMultiSigPubKey() []byte

func (*Contract) GetMakerPaymentAccountPayload added in v0.1.4

func (x *Contract) GetMakerPaymentAccountPayload() *PaymentAccountPayload

func (*Contract) GetMakerPaymentMethodId added in v0.1.5

func (x *Contract) GetMakerPaymentMethodId() string

func (*Contract) GetMakerPayoutAddressString added in v0.1.4

func (x *Contract) GetMakerPayoutAddressString() string

func (*Contract) GetMakerPubKeyRing added in v0.1.4

func (x *Contract) GetMakerPubKeyRing() *PubKeyRing

func (*Contract) GetMediatorNodeAddress added in v0.1.4

func (x *Contract) GetMediatorNodeAddress() *NodeAddress

func (*Contract) GetOfferPayload added in v0.1.4

func (x *Contract) GetOfferPayload() *OfferPayload

func (*Contract) GetRefundAgentNodeAddress added in v0.1.4

func (x *Contract) GetRefundAgentNodeAddress() *NodeAddress

func (*Contract) GetSellerNodeAddress added in v0.1.4

func (x *Contract) GetSellerNodeAddress() *NodeAddress

func (*Contract) GetTakerAccountId added in v0.1.4

func (x *Contract) GetTakerAccountId() string

func (*Contract) GetTakerFeeTxId added in v0.1.4

func (x *Contract) GetTakerFeeTxId() string

func (*Contract) GetTakerMultiSigPubKey added in v0.1.4

func (x *Contract) GetTakerMultiSigPubKey() []byte

func (*Contract) GetTakerPaymentAccountPayload added in v0.1.4

func (x *Contract) GetTakerPaymentAccountPayload() *PaymentAccountPayload

func (*Contract) GetTakerPaymentMethodId added in v0.1.5

func (x *Contract) GetTakerPaymentMethodId() string

func (*Contract) GetTakerPayoutAddressString added in v0.1.4

func (x *Contract) GetTakerPayoutAddressString() string

func (*Contract) GetTakerPubKeyRing added in v0.1.4

func (x *Contract) GetTakerPubKeyRing() *PubKeyRing

func (*Contract) GetTradeAmount added in v0.1.4

func (x *Contract) GetTradeAmount() int64

func (*Contract) GetTradePrice added in v0.1.4

func (x *Contract) GetTradePrice() int64

func (*Contract) ProtoMessage added in v0.1.4

func (*Contract) ProtoMessage()

func (*Contract) ProtoReflect added in v0.1.4

func (x *Contract) ProtoReflect() protoreflect.Message

func (*Contract) Reset added in v0.1.4

func (x *Contract) Reset()

func (*Contract) String added in v0.1.4

func (x *Contract) String() string

type ContractInfo added in v0.1.5

type ContractInfo struct {
	BuyerNodeAddress       string `protobuf:"bytes,1,opt,name=buyer_node_address,json=buyerNodeAddress,proto3" json:"buyer_node_address,omitempty"`          // The BTC buyer peer's node address.
	SellerNodeAddress      string `protobuf:"bytes,2,opt,name=seller_node_address,json=sellerNodeAddress,proto3" json:"seller_node_address,omitempty"`       // The BTC seller peer's node address.
	MediatorNodeAddress    string `protobuf:"bytes,3,opt,name=mediator_node_address,json=mediatorNodeAddress,proto3" json:"mediator_node_address,omitempty"` // If the trade was disputed, the Bisq mediator's node address.
	RefundAgentNodeAddress string ``                                                                                                                         // If a trade refund was requested, the Bisq refund agent's node address.
	/* 131-byte string literal not displayed */
	IsBuyerMakerAndSellerTaker bool `` // Whether the BTC buyer created the original offer, or not.
	/* 148-byte string literal not displayed */
	MakerAccountId             string                     `protobuf:"bytes,6,opt,name=maker_account_id,json=makerAccountId,proto3" json:"maker_account_id,omitempty"` // The offer maker's payment account id.
	TakerAccountId             string                     `protobuf:"bytes,7,opt,name=taker_account_id,json=takerAccountId,proto3" json:"taker_account_id,omitempty"` // The offer taker's payment account id.
	MakerPaymentAccountPayload *PaymentAccountPayloadInfo ``                                                                                                          // A summary of the offer maker's payment account.
	/* 143-byte string literal not displayed */
	TakerPaymentAccountPayload *PaymentAccountPayloadInfo `` // A summary of the offer taker's payment account.
	/* 143-byte string literal not displayed */
	MakerPayoutAddressString string `` // The offer maker's BTC payout address.
	/* 138-byte string literal not displayed */
	TakerPayoutAddressString string `` // The offer taker's BTC payout address.
	/* 138-byte string literal not displayed */
	LockTime uint64 `protobuf:"varint,12,opt,name=lock_time,json=lockTime,proto3" json:"lock_time,omitempty"` // The earliest time a transaction can be added to the block chain.
	// contains filtered or unexported fields
}

func (*ContractInfo) Descriptor deprecated added in v0.1.5

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

Deprecated: Use ContractInfo.ProtoReflect.Descriptor instead.

func (*ContractInfo) GetBuyerNodeAddress added in v0.1.5

func (x *ContractInfo) GetBuyerNodeAddress() string

func (*ContractInfo) GetIsBuyerMakerAndSellerTaker added in v0.1.5

func (x *ContractInfo) GetIsBuyerMakerAndSellerTaker() bool

func (*ContractInfo) GetLockTime added in v0.1.5

func (x *ContractInfo) GetLockTime() uint64

func (*ContractInfo) GetMakerAccountId added in v0.1.5

func (x *ContractInfo) GetMakerAccountId() string

func (*ContractInfo) GetMakerPaymentAccountPayload added in v0.1.5

func (x *ContractInfo) GetMakerPaymentAccountPayload() *PaymentAccountPayloadInfo

func (*ContractInfo) GetMakerPayoutAddressString added in v0.1.5

func (x *ContractInfo) GetMakerPayoutAddressString() string

func (*ContractInfo) GetMediatorNodeAddress added in v0.1.5

func (x *ContractInfo) GetMediatorNodeAddress() string

func (*ContractInfo) GetRefundAgentNodeAddress added in v0.1.5

func (x *ContractInfo) GetRefundAgentNodeAddress() string

func (*ContractInfo) GetSellerNodeAddress added in v0.1.5

func (x *ContractInfo) GetSellerNodeAddress() string

func (*ContractInfo) GetTakerAccountId added in v0.1.5

func (x *ContractInfo) GetTakerAccountId() string

func (*ContractInfo) GetTakerPaymentAccountPayload added in v0.1.5

func (x *ContractInfo) GetTakerPaymentAccountPayload() *PaymentAccountPayloadInfo

func (*ContractInfo) GetTakerPayoutAddressString added in v0.1.5

func (x *ContractInfo) GetTakerPayoutAddressString() string

func (*ContractInfo) ProtoMessage added in v0.1.5

func (*ContractInfo) ProtoMessage()

func (*ContractInfo) ProtoReflect added in v0.1.5

func (x *ContractInfo) ProtoReflect() protoreflect.Message

func (*ContractInfo) Reset added in v0.1.5

func (x *ContractInfo) Reset()

func (*ContractInfo) String added in v0.1.5

func (x *ContractInfo) String() string

type CounterCurrencyTransferStartedMessage added in v0.1.4

type CounterCurrencyTransferStartedMessage struct {
	TradeId                  string       `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	BuyerPayoutAddress       string       `protobuf:"bytes,2,opt,name=buyer_payout_address,json=buyerPayoutAddress,proto3" json:"buyer_payout_address,omitempty"`
	SenderNodeAddress        *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	BuyerSignature           []byte       `protobuf:"bytes,4,opt,name=buyer_signature,json=buyerSignature,proto3" json:"buyer_signature,omitempty"`
	CounterCurrencyTxId      string       `protobuf:"bytes,5,opt,name=counter_currency_tx_id,json=counterCurrencyTxId,proto3" json:"counter_currency_tx_id,omitempty"`
	Uid                      string       `protobuf:"bytes,6,opt,name=uid,proto3" json:"uid,omitempty"`
	CounterCurrencyExtraData string       `` /* 137-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CounterCurrencyTransferStartedMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CounterCurrencyTransferStartedMessage.ProtoReflect.Descriptor instead.

func (*CounterCurrencyTransferStartedMessage) GetBuyerPayoutAddress added in v0.1.4

func (x *CounterCurrencyTransferStartedMessage) GetBuyerPayoutAddress() string

func (*CounterCurrencyTransferStartedMessage) GetBuyerSignature added in v0.1.4

func (x *CounterCurrencyTransferStartedMessage) GetBuyerSignature() []byte

func (*CounterCurrencyTransferStartedMessage) GetCounterCurrencyExtraData added in v0.1.4

func (x *CounterCurrencyTransferStartedMessage) GetCounterCurrencyExtraData() string

func (*CounterCurrencyTransferStartedMessage) GetCounterCurrencyTxId added in v0.1.4

func (x *CounterCurrencyTransferStartedMessage) GetCounterCurrencyTxId() string

func (*CounterCurrencyTransferStartedMessage) GetSenderNodeAddress added in v0.1.4

func (x *CounterCurrencyTransferStartedMessage) GetSenderNodeAddress() *NodeAddress

func (*CounterCurrencyTransferStartedMessage) GetTradeId added in v0.1.4

func (*CounterCurrencyTransferStartedMessage) GetUid added in v0.1.4

func (*CounterCurrencyTransferStartedMessage) ProtoMessage added in v0.1.4

func (*CounterCurrencyTransferStartedMessage) ProtoMessage()

func (*CounterCurrencyTransferStartedMessage) ProtoReflect added in v0.1.4

func (*CounterCurrencyTransferStartedMessage) Reset added in v0.1.4

func (*CounterCurrencyTransferStartedMessage) String added in v0.1.4

type Country added in v0.1.4

type Country struct {
	Code   string  `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Name   string  `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Region *Region `protobuf:"bytes,3,opt,name=region,proto3" json:"region,omitempty"`
	// contains filtered or unexported fields
}

func (*Country) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Country.ProtoReflect.Descriptor instead.

func (*Country) GetCode added in v0.1.4

func (x *Country) GetCode() string

func (*Country) GetName added in v0.1.4

func (x *Country) GetName() string

func (*Country) GetRegion added in v0.1.4

func (x *Country) GetRegion() *Region

func (*Country) ProtoMessage added in v0.1.4

func (*Country) ProtoMessage()

func (*Country) ProtoReflect added in v0.1.4

func (x *Country) ProtoReflect() protoreflect.Message

func (*Country) Reset added in v0.1.4

func (x *Country) Reset()

func (*Country) String added in v0.1.4

func (x *Country) String() string

type CountryBasedPaymentAccountPayload added in v0.1.4

type CountryBasedPaymentAccountPayload struct {
	CountryCode string `protobuf:"bytes,1,opt,name=countryCode,proto3" json:"countryCode,omitempty"`
	// Types that are assignable to Message:
	//
	//	*CountryBasedPaymentAccountPayload_BankAccountPayload
	//	*CountryBasedPaymentAccountPayload_CashDepositAccountPayload
	//	*CountryBasedPaymentAccountPayload_SepaAccountPayload
	//	*CountryBasedPaymentAccountPayload_WesternUnionAccountPayload
	//	*CountryBasedPaymentAccountPayload_SepaInstantAccountPayload
	//	*CountryBasedPaymentAccountPayload_F2FAccountPayload
	//	*CountryBasedPaymentAccountPayload_UpiAccountPayload
	//	*CountryBasedPaymentAccountPayload_PaytmAccountPayload
	//	*CountryBasedPaymentAccountPayload_IfscBasedAccountPayload
	//	*CountryBasedPaymentAccountPayload_NequiAccountPayload
	//	*CountryBasedPaymentAccountPayload_BizumAccountPayload
	//	*CountryBasedPaymentAccountPayload_PixAccountPayload
	//	*CountryBasedPaymentAccountPayload_SatispayAccountPayload
	//	*CountryBasedPaymentAccountPayload_StrikeAccountPayload
	//	*CountryBasedPaymentAccountPayload_TikkieAccountPayload
	//	*CountryBasedPaymentAccountPayload_TransferwiseUsdAccountPayload
	//	*CountryBasedPaymentAccountPayload_MercadoPagoAccountPayload
	Message isCountryBasedPaymentAccountPayload_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*CountryBasedPaymentAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CountryBasedPaymentAccountPayload.ProtoReflect.Descriptor instead.

func (*CountryBasedPaymentAccountPayload) GetBankAccountPayload added in v0.1.4

func (x *CountryBasedPaymentAccountPayload) GetBankAccountPayload() *BankAccountPayload

func (*CountryBasedPaymentAccountPayload) GetBizumAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetBizumAccountPayload() *BizumAccountPayload

func (*CountryBasedPaymentAccountPayload) GetCashDepositAccountPayload added in v0.1.4

func (x *CountryBasedPaymentAccountPayload) GetCashDepositAccountPayload() *CashDepositAccountPayload

func (*CountryBasedPaymentAccountPayload) GetCountryCode added in v0.1.4

func (x *CountryBasedPaymentAccountPayload) GetCountryCode() string

func (*CountryBasedPaymentAccountPayload) GetF2FAccountPayload added in v0.1.4

func (x *CountryBasedPaymentAccountPayload) GetF2FAccountPayload() *F2FAccountPayload

func (*CountryBasedPaymentAccountPayload) GetIfscBasedAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetIfscBasedAccountPayload() *IfscBasedAccountPayload

func (*CountryBasedPaymentAccountPayload) GetMercadoPagoAccountPayload added in v0.1.14

func (x *CountryBasedPaymentAccountPayload) GetMercadoPagoAccountPayload() *MercadoPagoAccountPayload

func (*CountryBasedPaymentAccountPayload) GetMessage added in v0.1.4

func (m *CountryBasedPaymentAccountPayload) GetMessage() isCountryBasedPaymentAccountPayload_Message

func (*CountryBasedPaymentAccountPayload) GetNequiAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetNequiAccountPayload() *NequiAccountPayload

func (*CountryBasedPaymentAccountPayload) GetPaytmAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetPaytmAccountPayload() *PaytmAccountPayload

func (*CountryBasedPaymentAccountPayload) GetPixAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetPixAccountPayload() *PixAccountPayload

func (*CountryBasedPaymentAccountPayload) GetSatispayAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetSatispayAccountPayload() *SatispayAccountPayload

func (*CountryBasedPaymentAccountPayload) GetSepaAccountPayload added in v0.1.4

func (x *CountryBasedPaymentAccountPayload) GetSepaAccountPayload() *SepaAccountPayload

func (*CountryBasedPaymentAccountPayload) GetSepaInstantAccountPayload added in v0.1.4

func (x *CountryBasedPaymentAccountPayload) GetSepaInstantAccountPayload() *SepaInstantAccountPayload

func (*CountryBasedPaymentAccountPayload) GetStrikeAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetStrikeAccountPayload() *StrikeAccountPayload

func (*CountryBasedPaymentAccountPayload) GetTikkieAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetTikkieAccountPayload() *TikkieAccountPayload

func (*CountryBasedPaymentAccountPayload) GetTransferwiseUsdAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetTransferwiseUsdAccountPayload() *TransferwiseUsdAccountPayload

func (*CountryBasedPaymentAccountPayload) GetUpiAccountPayload added in v0.1.6

func (x *CountryBasedPaymentAccountPayload) GetUpiAccountPayload() *UpiAccountPayload

func (*CountryBasedPaymentAccountPayload) GetWesternUnionAccountPayload added in v0.1.4

func (x *CountryBasedPaymentAccountPayload) GetWesternUnionAccountPayload() *WesternUnionAccountPayload

func (*CountryBasedPaymentAccountPayload) ProtoMessage added in v0.1.4

func (*CountryBasedPaymentAccountPayload) ProtoMessage()

func (*CountryBasedPaymentAccountPayload) ProtoReflect added in v0.1.4

func (*CountryBasedPaymentAccountPayload) Reset added in v0.1.4

func (*CountryBasedPaymentAccountPayload) String added in v0.1.4

type CountryBasedPaymentAccountPayload_BankAccountPayload added in v0.1.4

type CountryBasedPaymentAccountPayload_BankAccountPayload struct {
	BankAccountPayload *BankAccountPayload `protobuf:"bytes,2,opt,name=bank_account_payload,json=bankAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_BizumAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_BizumAccountPayload struct {
	BizumAccountPayload *BizumAccountPayload `protobuf:"bytes,13,opt,name=bizum_account_payload,json=bizumAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_CashDepositAccountPayload added in v0.1.4

type CountryBasedPaymentAccountPayload_CashDepositAccountPayload struct {
	CashDepositAccountPayload *CashDepositAccountPayload `protobuf:"bytes,3,opt,name=cash_deposit_account_payload,json=cashDepositAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_F2FAccountPayload added in v0.1.4

type CountryBasedPaymentAccountPayload_F2FAccountPayload struct {
	F2FAccountPayload *F2FAccountPayload `protobuf:"bytes,7,opt,name=f2f_account_payload,json=f2fAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_IfscBasedAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_IfscBasedAccountPayload struct {
	IfscBasedAccountPayload *IfscBasedAccountPayload `protobuf:"bytes,11,opt,name=ifsc_based_account_payload,json=ifscBasedAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_MercadoPagoAccountPayload added in v0.1.14

type CountryBasedPaymentAccountPayload_MercadoPagoAccountPayload struct {
	MercadoPagoAccountPayload *MercadoPagoAccountPayload `protobuf:"bytes,19,opt,name=mercado_pago_account_payload,json=mercadoPagoAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_NequiAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_NequiAccountPayload struct {
	NequiAccountPayload *NequiAccountPayload `protobuf:"bytes,12,opt,name=nequi_account_payload,json=nequiAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_PaytmAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_PaytmAccountPayload struct {
	PaytmAccountPayload *PaytmAccountPayload `protobuf:"bytes,10,opt,name=paytm_account_payload,json=paytmAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_PixAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_PixAccountPayload struct {
	PixAccountPayload *PixAccountPayload `protobuf:"bytes,14,opt,name=pix_account_payload,json=pixAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_SatispayAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_SatispayAccountPayload struct {
	SatispayAccountPayload *SatispayAccountPayload `protobuf:"bytes,15,opt,name=satispay_account_payload,json=satispayAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_SepaAccountPayload added in v0.1.4

type CountryBasedPaymentAccountPayload_SepaAccountPayload struct {
	SepaAccountPayload *SepaAccountPayload `protobuf:"bytes,4,opt,name=sepa_account_payload,json=sepaAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_SepaInstantAccountPayload added in v0.1.4

type CountryBasedPaymentAccountPayload_SepaInstantAccountPayload struct {
	SepaInstantAccountPayload *SepaInstantAccountPayload `protobuf:"bytes,6,opt,name=sepa_instant_account_payload,json=sepaInstantAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_StrikeAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_StrikeAccountPayload struct {
	StrikeAccountPayload *StrikeAccountPayload `protobuf:"bytes,16,opt,name=strike_account_payload,json=strikeAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_TikkieAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_TikkieAccountPayload struct {
	TikkieAccountPayload *TikkieAccountPayload `protobuf:"bytes,17,opt,name=tikkie_account_payload,json=tikkieAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_TransferwiseUsdAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_TransferwiseUsdAccountPayload struct {
	TransferwiseUsdAccountPayload *TransferwiseUsdAccountPayload `protobuf:"bytes,18,opt,name=transferwise_usd_account_payload,json=transferwiseUsdAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_UpiAccountPayload added in v0.1.6

type CountryBasedPaymentAccountPayload_UpiAccountPayload struct {
	UpiAccountPayload *UpiAccountPayload `protobuf:"bytes,9,opt,name=upi_account_payload,json=upiAccountPayload,proto3,oneof"`
}

type CountryBasedPaymentAccountPayload_WesternUnionAccountPayload added in v0.1.4

type CountryBasedPaymentAccountPayload_WesternUnionAccountPayload struct {
	WesternUnionAccountPayload *WesternUnionAccountPayload `protobuf:"bytes,5,opt,name=western_union_account_payload,json=westernUnionAccountPayload,proto3,oneof"`
}

type CreateBsqSwapOfferReply added in v0.1.6

type CreateBsqSwapOfferReply struct {
	BsqSwapOffer *OfferInfo `protobuf:"bytes,1,opt,name=bsq_swap_offer,json=bsqSwapOffer,proto3" json:"bsq_swap_offer,omitempty"` // The newly created BSQ swap offer.
	// contains filtered or unexported fields
}

func (*CreateBsqSwapOfferReply) Descriptor deprecated added in v0.1.6

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

Deprecated: Use CreateBsqSwapOfferReply.ProtoReflect.Descriptor instead.

func (*CreateBsqSwapOfferReply) GetBsqSwapOffer added in v0.1.6

func (x *CreateBsqSwapOfferReply) GetBsqSwapOffer() *OfferInfo

func (*CreateBsqSwapOfferReply) ProtoMessage added in v0.1.6

func (*CreateBsqSwapOfferReply) ProtoMessage()

func (*CreateBsqSwapOfferReply) ProtoReflect added in v0.1.6

func (x *CreateBsqSwapOfferReply) ProtoReflect() protoreflect.Message

func (*CreateBsqSwapOfferReply) Reset added in v0.1.6

func (x *CreateBsqSwapOfferReply) Reset()

func (*CreateBsqSwapOfferReply) String added in v0.1.6

func (x *CreateBsqSwapOfferReply) String() string

type CreateBsqSwapOfferRequest added in v0.1.6

type CreateBsqSwapOfferRequest struct {

	// The new BSQ swap offer's BUY (BTC) or SELL (BTC) direction.
	Direction string `protobuf:"bytes,1,opt,name=direction,proto3" json:"direction,omitempty"`
	// The amount of BTC to be traded as a long representing satoshi units.
	Amount uint64 `protobuf:"varint,2,opt,name=amount,proto3" json:"amount,omitempty"`
	// The minimum amount of BTC to be traded as a long representing satoshi units.
	MinAmount uint64 `protobuf:"varint,3,opt,name=min_amount,json=minAmount,proto3" json:"min_amount,omitempty"`
	// The fixed price of the offer as a string representing BTC units, e.g., "0.00005" or "0.00005000".
	Price string `protobuf:"bytes,4,opt,name=price,proto3" json:"price,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateBsqSwapOfferRequest) Descriptor deprecated added in v0.1.6

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

Deprecated: Use CreateBsqSwapOfferRequest.ProtoReflect.Descriptor instead.

func (*CreateBsqSwapOfferRequest) GetAmount added in v0.1.6

func (x *CreateBsqSwapOfferRequest) GetAmount() uint64

func (*CreateBsqSwapOfferRequest) GetDirection added in v0.1.6

func (x *CreateBsqSwapOfferRequest) GetDirection() string

func (*CreateBsqSwapOfferRequest) GetMinAmount added in v0.1.6

func (x *CreateBsqSwapOfferRequest) GetMinAmount() uint64

func (*CreateBsqSwapOfferRequest) GetPrice added in v0.1.6

func (x *CreateBsqSwapOfferRequest) GetPrice() string

func (*CreateBsqSwapOfferRequest) ProtoMessage added in v0.1.6

func (*CreateBsqSwapOfferRequest) ProtoMessage()

func (*CreateBsqSwapOfferRequest) ProtoReflect added in v0.1.6

func (*CreateBsqSwapOfferRequest) Reset added in v0.1.6

func (x *CreateBsqSwapOfferRequest) Reset()

func (*CreateBsqSwapOfferRequest) String added in v0.1.6

func (x *CreateBsqSwapOfferRequest) String() string

type CreateCryptoCurrencyPaymentAccountReply added in v0.1.5

type CreateCryptoCurrencyPaymentAccountReply struct {
	PaymentAccount *PaymentAccount `protobuf:"bytes,1,opt,name=payment_account,json=paymentAccount,proto3" json:"payment_account,omitempty"` // The new altcoin payment account.
	// contains filtered or unexported fields
}

func (*CreateCryptoCurrencyPaymentAccountReply) Descriptor deprecated added in v0.1.5

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

Deprecated: Use CreateCryptoCurrencyPaymentAccountReply.ProtoReflect.Descriptor instead.

func (*CreateCryptoCurrencyPaymentAccountReply) GetPaymentAccount added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountReply) ProtoMessage added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountReply) ProtoReflect added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountReply) Reset added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountReply) String added in v0.1.5

type CreateCryptoCurrencyPaymentAccountRequest added in v0.1.5

type CreateCryptoCurrencyPaymentAccountRequest struct {
	AccountName  string `protobuf:"bytes,1,opt,name=account_name,json=accountName,proto3" json:"account_name,omitempty"`     // The name of the altcoin payment account.  Uniqueness is not enforced.
	CurrencyCode string `protobuf:"bytes,2,opt,name=currency_code,json=currencyCode,proto3" json:"currency_code,omitempty"`  // The altcoin currency code.
	Address      string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`                                // The altcoin receiving address.
	TradeInstant bool   `protobuf:"varint,4,opt,name=trade_instant,json=tradeInstant,proto3" json:"trade_instant,omitempty"` // Whether the altcoin payment account is an instant account or not.
	// contains filtered or unexported fields
}

func (*CreateCryptoCurrencyPaymentAccountRequest) Descriptor deprecated added in v0.1.5

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

Deprecated: Use CreateCryptoCurrencyPaymentAccountRequest.ProtoReflect.Descriptor instead.

func (*CreateCryptoCurrencyPaymentAccountRequest) GetAccountName added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountRequest) GetAddress added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountRequest) GetCurrencyCode added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountRequest) GetTradeInstant added in v0.1.5

func (x *CreateCryptoCurrencyPaymentAccountRequest) GetTradeInstant() bool

func (*CreateCryptoCurrencyPaymentAccountRequest) ProtoMessage added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountRequest) ProtoReflect added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountRequest) Reset added in v0.1.5

func (*CreateCryptoCurrencyPaymentAccountRequest) String added in v0.1.5

type CreateOfferReply added in v0.1.4

type CreateOfferReply struct {
	Offer *OfferInfo `protobuf:"bytes,1,opt,name=offer,proto3" json:"offer,omitempty"` // The newly created v1 protocol offer.
	// contains filtered or unexported fields
}

func (*CreateOfferReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CreateOfferReply.ProtoReflect.Descriptor instead.

func (*CreateOfferReply) GetOffer added in v0.1.4

func (x *CreateOfferReply) GetOffer() *OfferInfo

func (*CreateOfferReply) ProtoMessage added in v0.1.4

func (*CreateOfferReply) ProtoMessage()

func (*CreateOfferReply) ProtoReflect added in v0.1.4

func (x *CreateOfferReply) ProtoReflect() protoreflect.Message

func (*CreateOfferReply) Reset added in v0.1.4

func (x *CreateOfferReply) Reset()

func (*CreateOfferReply) String added in v0.1.4

func (x *CreateOfferReply) String() string

type CreateOfferRequest added in v0.1.4

type CreateOfferRequest struct {

	// The new offer's fiat or altcoin currency code.
	CurrencyCode string `protobuf:"bytes,1,opt,name=currency_code,json=currencyCode,proto3" json:"currency_code,omitempty"`
	// The new v1 protocol offer's BUY (BTC) or SELL (BTC) direction.
	Direction string `protobuf:"bytes,2,opt,name=direction,proto3" json:"direction,omitempty"`
	// For fiat offers:  a string representing the rounded, fixed fiat price of the offer, e.g., "45000", not "45000".
	// For altcoin offers:  a string representing the fixed BTC price of the offer, e.g., "0.00005".
	Price string `protobuf:"bytes,3,opt,name=price,proto3" json:"price,omitempty"`
	// Whether the offer price is fixed, or market price margin based.
	UseMarketBasedPrice bool `protobuf:"varint,4,opt,name=use_market_based_price,json=useMarketBasedPrice,proto3" json:"use_market_based_price,omitempty"`
	// The offer's market price margin as a percentage above or below the current market BTC price, e.g., 2.50 represents 2.5%.
	MarketPriceMarginPct float64 `` /* 127-byte string literal not displayed */
	// The amount of BTC to be traded, in satoshis.
	Amount uint64 `protobuf:"varint,6,opt,name=amount,proto3" json:"amount,omitempty"`
	// The minimum amount of BTC to be traded, in satoshis.
	MinAmount uint64 `protobuf:"varint,7,opt,name=min_amount,json=minAmount,proto3" json:"min_amount,omitempty"`
	// A BUY BTC offer maker's security deposit as a percentage of the BTC amount to be traded, e.g., 15.00 represents 15%.
	BuyerSecurityDepositPct float64 `` /* 136-byte string literal not displayed */
	// A market price margin based offer's trigger price is the market BTC price at which the offer is automatically disabled.
	// Disabled offers are never automatically enabled, they must be manually re-enabled.
	// A zero value indicates trigger price is not set.  Trigger price does not apply to fixed price offers.
	TriggerPrice string `protobuf:"bytes,9,opt,name=trigger_price,json=triggerPrice,proto3" json:"trigger_price,omitempty"`
	// The unique identifier of the payment account used to create the new offer, and send or receive trade payment.
	PaymentAccountId string `protobuf:"bytes,10,opt,name=payment_account_id,json=paymentAccountId,proto3" json:"payment_account_id,omitempty"`
	// The offer maker's trade fee currency:  BTC or BSQ.
	MakerFeeCurrencyCode string `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreateOfferRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CreateOfferRequest.ProtoReflect.Descriptor instead.

func (*CreateOfferRequest) GetAmount added in v0.1.4

func (x *CreateOfferRequest) GetAmount() uint64

func (*CreateOfferRequest) GetBuyerSecurityDepositPct added in v0.1.9

func (x *CreateOfferRequest) GetBuyerSecurityDepositPct() float64

func (*CreateOfferRequest) GetCurrencyCode added in v0.1.4

func (x *CreateOfferRequest) GetCurrencyCode() string

func (*CreateOfferRequest) GetDirection added in v0.1.4

func (x *CreateOfferRequest) GetDirection() string

func (*CreateOfferRequest) GetMakerFeeCurrencyCode added in v0.1.4

func (x *CreateOfferRequest) GetMakerFeeCurrencyCode() string

func (*CreateOfferRequest) GetMarketPriceMarginPct added in v0.1.9

func (x *CreateOfferRequest) GetMarketPriceMarginPct() float64

func (*CreateOfferRequest) GetMinAmount added in v0.1.4

func (x *CreateOfferRequest) GetMinAmount() uint64

func (*CreateOfferRequest) GetPaymentAccountId added in v0.1.4

func (x *CreateOfferRequest) GetPaymentAccountId() string

func (*CreateOfferRequest) GetPrice added in v0.1.4

func (x *CreateOfferRequest) GetPrice() string

func (*CreateOfferRequest) GetTriggerPrice added in v0.1.4

func (x *CreateOfferRequest) GetTriggerPrice() string

func (*CreateOfferRequest) GetUseMarketBasedPrice added in v0.1.4

func (x *CreateOfferRequest) GetUseMarketBasedPrice() bool

func (*CreateOfferRequest) ProtoMessage added in v0.1.4

func (*CreateOfferRequest) ProtoMessage()

func (*CreateOfferRequest) ProtoReflect added in v0.1.4

func (x *CreateOfferRequest) ProtoReflect() protoreflect.Message

func (*CreateOfferRequest) Reset added in v0.1.4

func (x *CreateOfferRequest) Reset()

func (*CreateOfferRequest) String added in v0.1.4

func (x *CreateOfferRequest) String() string

type CreatePaymentAccountReply added in v0.1.4

type CreatePaymentAccountReply struct {
	PaymentAccount *PaymentAccount `protobuf:"bytes,1,opt,name=payment_account,json=paymentAccount,proto3" json:"payment_account,omitempty"` // The new payment account.
	// contains filtered or unexported fields
}

func (*CreatePaymentAccountReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CreatePaymentAccountReply.ProtoReflect.Descriptor instead.

func (*CreatePaymentAccountReply) GetPaymentAccount added in v0.1.4

func (x *CreatePaymentAccountReply) GetPaymentAccount() *PaymentAccount

func (*CreatePaymentAccountReply) ProtoMessage added in v0.1.4

func (*CreatePaymentAccountReply) ProtoMessage()

func (*CreatePaymentAccountReply) ProtoReflect added in v0.1.4

func (*CreatePaymentAccountReply) Reset added in v0.1.4

func (x *CreatePaymentAccountReply) Reset()

func (*CreatePaymentAccountReply) String added in v0.1.4

func (x *CreatePaymentAccountReply) String() string

type CreatePaymentAccountRequest added in v0.1.4

type CreatePaymentAccountRequest struct {
	PaymentAccountForm string `protobuf:"bytes,1,opt,name=payment_account_form,json=paymentAccountForm,proto3" json:"payment_account_form,omitempty"` // File path of filled json payment account form.
	// contains filtered or unexported fields
}

func (*CreatePaymentAccountRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CreatePaymentAccountRequest.ProtoReflect.Descriptor instead.

func (*CreatePaymentAccountRequest) GetPaymentAccountForm added in v0.1.4

func (x *CreatePaymentAccountRequest) GetPaymentAccountForm() string

func (*CreatePaymentAccountRequest) ProtoMessage added in v0.1.4

func (*CreatePaymentAccountRequest) ProtoMessage()

func (*CreatePaymentAccountRequest) ProtoReflect added in v0.1.4

func (*CreatePaymentAccountRequest) Reset added in v0.1.4

func (x *CreatePaymentAccountRequest) Reset()

func (*CreatePaymentAccountRequest) String added in v0.1.4

func (x *CreatePaymentAccountRequest) String() string

type CryptoCurrency added in v0.1.4

type CryptoCurrency struct {
	IsAsset bool `protobuf:"varint,1,opt,name=is_asset,json=isAsset,proto3" json:"is_asset,omitempty"`
	// contains filtered or unexported fields
}

func (*CryptoCurrency) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CryptoCurrency.ProtoReflect.Descriptor instead.

func (*CryptoCurrency) GetIsAsset added in v0.1.4

func (x *CryptoCurrency) GetIsAsset() bool

func (*CryptoCurrency) ProtoMessage added in v0.1.4

func (*CryptoCurrency) ProtoMessage()

func (*CryptoCurrency) ProtoReflect added in v0.1.4

func (x *CryptoCurrency) ProtoReflect() protoreflect.Message

func (*CryptoCurrency) Reset added in v0.1.4

func (x *CryptoCurrency) Reset()

func (*CryptoCurrency) String added in v0.1.4

func (x *CryptoCurrency) String() string

type CryptoCurrencyAccountPayload added in v0.1.4

type CryptoCurrencyAccountPayload struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*CryptoCurrencyAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use CryptoCurrencyAccountPayload.ProtoReflect.Descriptor instead.

func (*CryptoCurrencyAccountPayload) GetAddress added in v0.1.4

func (x *CryptoCurrencyAccountPayload) GetAddress() string

func (*CryptoCurrencyAccountPayload) ProtoMessage added in v0.1.4

func (*CryptoCurrencyAccountPayload) ProtoMessage()

func (*CryptoCurrencyAccountPayload) ProtoReflect added in v0.1.4

func (*CryptoCurrencyAccountPayload) Reset added in v0.1.4

func (x *CryptoCurrencyAccountPayload) Reset()

func (*CryptoCurrencyAccountPayload) String added in v0.1.4

type Currency added in v0.1.4

type Currency struct {
	CurrencyCode string `protobuf:"bytes,1,opt,name=currency_code,json=currencyCode,proto3" json:"currency_code,omitempty"`
	// contains filtered or unexported fields
}

func (*Currency) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Currency.ProtoReflect.Descriptor instead.

func (*Currency) GetCurrencyCode added in v0.1.4

func (x *Currency) GetCurrencyCode() string

func (*Currency) ProtoMessage added in v0.1.4

func (*Currency) ProtoMessage()

func (*Currency) ProtoReflect added in v0.1.4

func (x *Currency) ProtoReflect() protoreflect.Message

func (*Currency) Reset added in v0.1.4

func (x *Currency) Reset()

func (*Currency) String added in v0.1.4

func (x *Currency) String() string

type Cycle added in v0.1.4

type Cycle struct {
	HeightOfFirstLock int32       `protobuf:"varint,1,opt,name=height_of_first_lock,json=heightOfFirstLock,proto3" json:"height_of_first_lock,omitempty"`
	DaoPhase          []*DaoPhase `protobuf:"bytes,2,rep,name=dao_phase,json=daoPhase,proto3" json:"dao_phase,omitempty"`
	// contains filtered or unexported fields
}

func (*Cycle) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Cycle.ProtoReflect.Descriptor instead.

func (*Cycle) GetDaoPhase added in v0.1.4

func (x *Cycle) GetDaoPhase() []*DaoPhase

func (*Cycle) GetHeightOfFirstLock added in v0.1.4

func (x *Cycle) GetHeightOfFirstLock() int32

func (*Cycle) ProtoMessage added in v0.1.4

func (*Cycle) ProtoMessage()

func (*Cycle) ProtoReflect added in v0.1.4

func (x *Cycle) ProtoReflect() protoreflect.Message

func (*Cycle) Reset added in v0.1.4

func (x *Cycle) Reset()

func (*Cycle) String added in v0.1.4

func (x *Cycle) String() string

type DaoPhase added in v0.1.4

type DaoPhase struct {
	PhaseOrdinal int32 `protobuf:"varint,1,opt,name=phase_ordinal,json=phaseOrdinal,proto3" json:"phase_ordinal,omitempty"`
	Duration     int32 `protobuf:"varint,2,opt,name=duration,proto3" json:"duration,omitempty"`
	// contains filtered or unexported fields
}

func (*DaoPhase) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DaoPhase.ProtoReflect.Descriptor instead.

func (*DaoPhase) GetDuration added in v0.1.4

func (x *DaoPhase) GetDuration() int32

func (*DaoPhase) GetPhaseOrdinal added in v0.1.4

func (x *DaoPhase) GetPhaseOrdinal() int32

func (*DaoPhase) ProtoMessage added in v0.1.4

func (*DaoPhase) ProtoMessage()

func (*DaoPhase) ProtoReflect added in v0.1.4

func (x *DaoPhase) ProtoReflect() protoreflect.Message

func (*DaoPhase) Reset added in v0.1.4

func (x *DaoPhase) Reset()

func (*DaoPhase) String added in v0.1.4

func (x *DaoPhase) String() string

type DaoState added in v0.1.4

type DaoState struct {
	ChainHeight int32 `protobuf:"varint,1,opt,name=chain_height,json=chainHeight,proto3" json:"chain_height,omitempty"`
	// Because of the way how PB implements inheritance we need to use the super class as type.
	Blocks []*BaseBlock `protobuf:"bytes,2,rep,name=blocks,proto3" json:"blocks,omitempty"`
	Cycles []*Cycle     `protobuf:"bytes,3,rep,name=cycles,proto3" json:"cycles,omitempty"`
	// Because of the way how PB implements inheritance we need to use the super class as type.
	UnspentTxOutputMap             map[string]*BaseTxOutput      `` /* 207-byte string literal not displayed */
	IssuanceMap                    map[string]*Issuance          `` /* 182-byte string literal not displayed */
	ConfiscatedLockupTxList        []string                      `` /* 134-byte string literal not displayed */
	SpentInfoMap                   map[string]*SpentInfo         `` /* 187-byte string literal not displayed */
	ParamChangeList                []*ParamChange                `protobuf:"bytes,8,rep,name=param_change_list,json=paramChangeList,proto3" json:"param_change_list,omitempty"`
	EvaluatedProposalList          []*EvaluatedProposal          `` /* 126-byte string literal not displayed */
	DecryptedBallotsWithMeritsList []*DecryptedBallotsWithMerits `` /* 158-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DaoState) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DaoState.ProtoReflect.Descriptor instead.

func (*DaoState) GetBlocks added in v0.1.4

func (x *DaoState) GetBlocks() []*BaseBlock

func (*DaoState) GetChainHeight added in v0.1.4

func (x *DaoState) GetChainHeight() int32

func (*DaoState) GetConfiscatedLockupTxList added in v0.1.4

func (x *DaoState) GetConfiscatedLockupTxList() []string

func (*DaoState) GetCycles added in v0.1.4

func (x *DaoState) GetCycles() []*Cycle

func (*DaoState) GetDecryptedBallotsWithMeritsList added in v0.1.4

func (x *DaoState) GetDecryptedBallotsWithMeritsList() []*DecryptedBallotsWithMerits

func (*DaoState) GetEvaluatedProposalList added in v0.1.4

func (x *DaoState) GetEvaluatedProposalList() []*EvaluatedProposal

func (*DaoState) GetIssuanceMap added in v0.1.4

func (x *DaoState) GetIssuanceMap() map[string]*Issuance

func (*DaoState) GetParamChangeList added in v0.1.4

func (x *DaoState) GetParamChangeList() []*ParamChange

func (*DaoState) GetSpentInfoMap added in v0.1.4

func (x *DaoState) GetSpentInfoMap() map[string]*SpentInfo

func (*DaoState) GetUnspentTxOutputMap added in v0.1.4

func (x *DaoState) GetUnspentTxOutputMap() map[string]*BaseTxOutput

func (*DaoState) ProtoMessage added in v0.1.4

func (*DaoState) ProtoMessage()

func (*DaoState) ProtoReflect added in v0.1.4

func (x *DaoState) ProtoReflect() protoreflect.Message

func (*DaoState) Reset added in v0.1.4

func (x *DaoState) Reset()

func (*DaoState) String added in v0.1.4

func (x *DaoState) String() string

type DaoStateHash added in v0.1.4

type DaoStateHash struct {
	Height int32  `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Hash   []byte `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	PrevHash      []byte `protobuf:"bytes,3,opt,name=prev_hash,json=prevHash,proto3" json:"prev_hash,omitempty"`
	IsSelfCreated bool   `protobuf:"varint,4,opt,name=is_self_created,json=isSelfCreated,proto3" json:"is_self_created,omitempty"`
	// contains filtered or unexported fields
}

func (*DaoStateHash) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DaoStateHash.ProtoReflect.Descriptor instead.

func (*DaoStateHash) GetHash added in v0.1.4

func (x *DaoStateHash) GetHash() []byte

func (*DaoStateHash) GetHeight added in v0.1.4

func (x *DaoStateHash) GetHeight() int32

func (*DaoStateHash) GetIsSelfCreated added in v0.1.6

func (x *DaoStateHash) GetIsSelfCreated() bool

func (*DaoStateHash) GetPrevHash deprecated added in v0.1.4

func (x *DaoStateHash) GetPrevHash() []byte

Deprecated: Marked as deprecated in pb.proto.

func (*DaoStateHash) ProtoMessage added in v0.1.4

func (*DaoStateHash) ProtoMessage()

func (*DaoStateHash) ProtoReflect added in v0.1.4

func (x *DaoStateHash) ProtoReflect() protoreflect.Message

func (*DaoStateHash) Reset added in v0.1.4

func (x *DaoStateHash) Reset()

func (*DaoStateHash) String added in v0.1.4

func (x *DaoStateHash) String() string

type DaoStateStore added in v0.1.4

type DaoStateStore struct {
	DaoState     *DaoState       `protobuf:"bytes,1,opt,name=dao_state,json=daoState,proto3" json:"dao_state,omitempty"`
	DaoStateHash []*DaoStateHash `protobuf:"bytes,2,rep,name=dao_state_hash,json=daoStateHash,proto3" json:"dao_state_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*DaoStateStore) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DaoStateStore.ProtoReflect.Descriptor instead.

func (*DaoStateStore) GetDaoState added in v0.1.4

func (x *DaoStateStore) GetDaoState() *DaoState

func (*DaoStateStore) GetDaoStateHash added in v0.1.4

func (x *DaoStateStore) GetDaoStateHash() []*DaoStateHash

func (*DaoStateStore) ProtoMessage added in v0.1.4

func (*DaoStateStore) ProtoMessage()

func (*DaoStateStore) ProtoReflect added in v0.1.4

func (x *DaoStateStore) ProtoReflect() protoreflect.Message

func (*DaoStateStore) Reset added in v0.1.4

func (x *DaoStateStore) Reset()

func (*DaoStateStore) String added in v0.1.4

func (x *DaoStateStore) String() string

type DataAndSeqNrPair added in v0.1.4

type DataAndSeqNrPair struct {
	Payload        *StoragePayload `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
	SequenceNumber int32           `protobuf:"varint,2,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	// contains filtered or unexported fields
}

func (*DataAndSeqNrPair) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DataAndSeqNrPair.ProtoReflect.Descriptor instead.

func (*DataAndSeqNrPair) GetPayload added in v0.1.4

func (x *DataAndSeqNrPair) GetPayload() *StoragePayload

func (*DataAndSeqNrPair) GetSequenceNumber added in v0.1.4

func (x *DataAndSeqNrPair) GetSequenceNumber() int32

func (*DataAndSeqNrPair) ProtoMessage added in v0.1.4

func (*DataAndSeqNrPair) ProtoMessage()

func (*DataAndSeqNrPair) ProtoReflect added in v0.1.4

func (x *DataAndSeqNrPair) ProtoReflect() protoreflect.Message

func (*DataAndSeqNrPair) Reset added in v0.1.4

func (x *DataAndSeqNrPair) Reset()

func (*DataAndSeqNrPair) String added in v0.1.4

func (x *DataAndSeqNrPair) String() string

type DecryptedBallotsWithMerits added in v0.1.4

type DecryptedBallotsWithMerits struct {
	HashOfBlindVoteList []byte      `protobuf:"bytes,1,opt,name=hash_of_blind_vote_list,json=hashOfBlindVoteList,proto3" json:"hash_of_blind_vote_list,omitempty"`
	BlindVoteTxId       string      `protobuf:"bytes,2,opt,name=blind_vote_tx_id,json=blindVoteTxId,proto3" json:"blind_vote_tx_id,omitempty"`
	VoteRevealTxId      string      `protobuf:"bytes,3,opt,name=vote_reveal_tx_id,json=voteRevealTxId,proto3" json:"vote_reveal_tx_id,omitempty"`
	Stake               int64       `protobuf:"varint,4,opt,name=stake,proto3" json:"stake,omitempty"`
	BallotList          *BallotList `protobuf:"bytes,5,opt,name=ballot_list,json=ballotList,proto3" json:"ballot_list,omitempty"`
	MeritList           *MeritList  `protobuf:"bytes,6,opt,name=merit_list,json=meritList,proto3" json:"merit_list,omitempty"`
	// contains filtered or unexported fields
}

func (*DecryptedBallotsWithMerits) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DecryptedBallotsWithMerits.ProtoReflect.Descriptor instead.

func (*DecryptedBallotsWithMerits) GetBallotList added in v0.1.4

func (x *DecryptedBallotsWithMerits) GetBallotList() *BallotList

func (*DecryptedBallotsWithMerits) GetBlindVoteTxId added in v0.1.4

func (x *DecryptedBallotsWithMerits) GetBlindVoteTxId() string

func (*DecryptedBallotsWithMerits) GetHashOfBlindVoteList added in v0.1.4

func (x *DecryptedBallotsWithMerits) GetHashOfBlindVoteList() []byte

func (*DecryptedBallotsWithMerits) GetMeritList added in v0.1.4

func (x *DecryptedBallotsWithMerits) GetMeritList() *MeritList

func (*DecryptedBallotsWithMerits) GetStake added in v0.1.4

func (x *DecryptedBallotsWithMerits) GetStake() int64

func (*DecryptedBallotsWithMerits) GetVoteRevealTxId added in v0.1.4

func (x *DecryptedBallotsWithMerits) GetVoteRevealTxId() string

func (*DecryptedBallotsWithMerits) ProtoMessage added in v0.1.4

func (*DecryptedBallotsWithMerits) ProtoMessage()

func (*DecryptedBallotsWithMerits) ProtoReflect added in v0.1.4

func (*DecryptedBallotsWithMerits) Reset added in v0.1.4

func (x *DecryptedBallotsWithMerits) Reset()

func (*DecryptedBallotsWithMerits) String added in v0.1.4

func (x *DecryptedBallotsWithMerits) String() string

type DecryptedMessageWithPubKey added in v0.1.4

type DecryptedMessageWithPubKey struct {
	NetworkEnvelope      *NetworkEnvelope `protobuf:"bytes,1,opt,name=network_envelope,json=networkEnvelope,proto3" json:"network_envelope,omitempty"`
	SignaturePubKeyBytes []byte           `protobuf:"bytes,2,opt,name=signature_pub_key_bytes,json=signaturePubKeyBytes,proto3" json:"signature_pub_key_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*DecryptedMessageWithPubKey) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DecryptedMessageWithPubKey.ProtoReflect.Descriptor instead.

func (*DecryptedMessageWithPubKey) GetNetworkEnvelope added in v0.1.4

func (x *DecryptedMessageWithPubKey) GetNetworkEnvelope() *NetworkEnvelope

func (*DecryptedMessageWithPubKey) GetSignaturePubKeyBytes added in v0.1.4

func (x *DecryptedMessageWithPubKey) GetSignaturePubKeyBytes() []byte

func (*DecryptedMessageWithPubKey) ProtoMessage added in v0.1.4

func (*DecryptedMessageWithPubKey) ProtoMessage()

func (*DecryptedMessageWithPubKey) ProtoReflect added in v0.1.4

func (*DecryptedMessageWithPubKey) Reset added in v0.1.4

func (x *DecryptedMessageWithPubKey) Reset()

func (*DecryptedMessageWithPubKey) String added in v0.1.4

func (x *DecryptedMessageWithPubKey) String() string

type DelayedPayoutTxSignatureRequest added in v0.1.4

type DelayedPayoutTxSignatureRequest struct {
	Uid                            string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId                        string       `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress              *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	DelayedPayoutTx                []byte       `protobuf:"bytes,4,opt,name=delayed_payout_tx,json=delayedPayoutTx,proto3" json:"delayed_payout_tx,omitempty"`
	DelayedPayoutTxSellerSignature []byte       `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DelayedPayoutTxSignatureRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DelayedPayoutTxSignatureRequest.ProtoReflect.Descriptor instead.

func (*DelayedPayoutTxSignatureRequest) GetDelayedPayoutTx added in v0.1.4

func (x *DelayedPayoutTxSignatureRequest) GetDelayedPayoutTx() []byte

func (*DelayedPayoutTxSignatureRequest) GetDelayedPayoutTxSellerSignature added in v0.1.4

func (x *DelayedPayoutTxSignatureRequest) GetDelayedPayoutTxSellerSignature() []byte

func (*DelayedPayoutTxSignatureRequest) GetSenderNodeAddress added in v0.1.4

func (x *DelayedPayoutTxSignatureRequest) GetSenderNodeAddress() *NodeAddress

func (*DelayedPayoutTxSignatureRequest) GetTradeId added in v0.1.4

func (x *DelayedPayoutTxSignatureRequest) GetTradeId() string

func (*DelayedPayoutTxSignatureRequest) GetUid added in v0.1.4

func (*DelayedPayoutTxSignatureRequest) ProtoMessage added in v0.1.4

func (*DelayedPayoutTxSignatureRequest) ProtoMessage()

func (*DelayedPayoutTxSignatureRequest) ProtoReflect added in v0.1.4

func (*DelayedPayoutTxSignatureRequest) Reset added in v0.1.4

func (*DelayedPayoutTxSignatureRequest) String added in v0.1.4

type DelayedPayoutTxSignatureResponse added in v0.1.4

type DelayedPayoutTxSignatureResponse struct {
	Uid                           string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId                       string       `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress             *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	DelayedPayoutTxBuyerSignature []byte       `` /* 154-byte string literal not displayed */
	DepositTx                     []byte       `protobuf:"bytes,5,opt,name=deposit_tx,json=depositTx,proto3" json:"deposit_tx,omitempty"`
	// contains filtered or unexported fields
}

func (*DelayedPayoutTxSignatureResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DelayedPayoutTxSignatureResponse.ProtoReflect.Descriptor instead.

func (*DelayedPayoutTxSignatureResponse) GetDelayedPayoutTxBuyerSignature added in v0.1.4

func (x *DelayedPayoutTxSignatureResponse) GetDelayedPayoutTxBuyerSignature() []byte

func (*DelayedPayoutTxSignatureResponse) GetDepositTx added in v0.1.4

func (x *DelayedPayoutTxSignatureResponse) GetDepositTx() []byte

func (*DelayedPayoutTxSignatureResponse) GetSenderNodeAddress added in v0.1.4

func (x *DelayedPayoutTxSignatureResponse) GetSenderNodeAddress() *NodeAddress

func (*DelayedPayoutTxSignatureResponse) GetTradeId added in v0.1.4

func (x *DelayedPayoutTxSignatureResponse) GetTradeId() string

func (*DelayedPayoutTxSignatureResponse) GetUid added in v0.1.4

func (*DelayedPayoutTxSignatureResponse) ProtoMessage added in v0.1.4

func (*DelayedPayoutTxSignatureResponse) ProtoMessage()

func (*DelayedPayoutTxSignatureResponse) ProtoReflect added in v0.1.4

func (*DelayedPayoutTxSignatureResponse) Reset added in v0.1.4

func (*DelayedPayoutTxSignatureResponse) String added in v0.1.4

type DepositTxAndDelayedPayoutTxMessage added in v0.1.4

type DepositTxAndDelayedPayoutTxMessage struct {
	Uid                         string                 `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId                     string                 `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress           *NodeAddress           `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	DepositTx                   []byte                 `protobuf:"bytes,4,opt,name=deposit_tx,json=depositTx,proto3" json:"deposit_tx,omitempty"`
	DelayedPayoutTx             []byte                 `protobuf:"bytes,5,opt,name=delayed_payout_tx,json=delayedPayoutTx,proto3" json:"delayed_payout_tx,omitempty"`
	SellerPaymentAccountPayload *PaymentAccountPayload `` /* 146-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DepositTxAndDelayedPayoutTxMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DepositTxAndDelayedPayoutTxMessage.ProtoReflect.Descriptor instead.

func (*DepositTxAndDelayedPayoutTxMessage) GetDelayedPayoutTx added in v0.1.4

func (x *DepositTxAndDelayedPayoutTxMessage) GetDelayedPayoutTx() []byte

func (*DepositTxAndDelayedPayoutTxMessage) GetDepositTx added in v0.1.4

func (x *DepositTxAndDelayedPayoutTxMessage) GetDepositTx() []byte

func (*DepositTxAndDelayedPayoutTxMessage) GetSellerPaymentAccountPayload added in v0.1.5

func (x *DepositTxAndDelayedPayoutTxMessage) GetSellerPaymentAccountPayload() *PaymentAccountPayload

func (*DepositTxAndDelayedPayoutTxMessage) GetSenderNodeAddress added in v0.1.4

func (x *DepositTxAndDelayedPayoutTxMessage) GetSenderNodeAddress() *NodeAddress

func (*DepositTxAndDelayedPayoutTxMessage) GetTradeId added in v0.1.4

func (*DepositTxAndDelayedPayoutTxMessage) GetUid added in v0.1.4

func (*DepositTxAndDelayedPayoutTxMessage) ProtoMessage added in v0.1.4

func (*DepositTxAndDelayedPayoutTxMessage) ProtoMessage()

func (*DepositTxAndDelayedPayoutTxMessage) ProtoReflect added in v0.1.4

func (*DepositTxAndDelayedPayoutTxMessage) Reset added in v0.1.4

func (*DepositTxAndDelayedPayoutTxMessage) String added in v0.1.4

type DepositTxMessage added in v0.1.4

type DepositTxMessage struct {
	Uid                       string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId                   string       `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress         *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	DepositTxWithoutWitnesses []byte       `` /* 140-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DepositTxMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DepositTxMessage.ProtoReflect.Descriptor instead.

func (*DepositTxMessage) GetDepositTxWithoutWitnesses added in v0.1.4

func (x *DepositTxMessage) GetDepositTxWithoutWitnesses() []byte

func (*DepositTxMessage) GetSenderNodeAddress added in v0.1.4

func (x *DepositTxMessage) GetSenderNodeAddress() *NodeAddress

func (*DepositTxMessage) GetTradeId added in v0.1.4

func (x *DepositTxMessage) GetTradeId() string

func (*DepositTxMessage) GetUid added in v0.1.4

func (x *DepositTxMessage) GetUid() string

func (*DepositTxMessage) ProtoMessage added in v0.1.4

func (*DepositTxMessage) ProtoMessage()

func (*DepositTxMessage) ProtoReflect added in v0.1.4

func (x *DepositTxMessage) ProtoReflect() protoreflect.Message

func (*DepositTxMessage) Reset added in v0.1.4

func (x *DepositTxMessage) Reset()

func (*DepositTxMessage) String added in v0.1.4

func (x *DepositTxMessage) String() string

type Dispute added in v0.1.4

type Dispute struct {
	TradeId                          string            `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	Id                               string            `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	TraderId                         int32             `protobuf:"varint,3,opt,name=trader_id,json=traderId,proto3" json:"trader_id,omitempty"`
	DisputeOpenerIsBuyer             bool              `` /* 126-byte string literal not displayed */
	DisputeOpenerIsMaker             bool              `` /* 126-byte string literal not displayed */
	OpeningDate                      int64             `protobuf:"varint,6,opt,name=opening_date,json=openingDate,proto3" json:"opening_date,omitempty"`
	TraderPubKeyRing                 *PubKeyRing       `protobuf:"bytes,7,opt,name=trader_pub_key_ring,json=traderPubKeyRing,proto3" json:"trader_pub_key_ring,omitempty"`
	TradeDate                        int64             `protobuf:"varint,8,opt,name=trade_date,json=tradeDate,proto3" json:"trade_date,omitempty"`
	Contract                         *Contract         `protobuf:"bytes,9,opt,name=contract,proto3" json:"contract,omitempty"`
	ContractHash                     []byte            `protobuf:"bytes,10,opt,name=contract_hash,json=contractHash,proto3" json:"contract_hash,omitempty"`
	DepositTxSerialized              []byte            `protobuf:"bytes,11,opt,name=deposit_tx_serialized,json=depositTxSerialized,proto3" json:"deposit_tx_serialized,omitempty"`
	PayoutTxSerialized               []byte            `protobuf:"bytes,12,opt,name=payout_tx_serialized,json=payoutTxSerialized,proto3" json:"payout_tx_serialized,omitempty"`
	DepositTxId                      string            `protobuf:"bytes,13,opt,name=deposit_tx_id,json=depositTxId,proto3" json:"deposit_tx_id,omitempty"`
	PayoutTxId                       string            `protobuf:"bytes,14,opt,name=payout_tx_id,json=payoutTxId,proto3" json:"payout_tx_id,omitempty"`
	ContractAsJson                   string            `protobuf:"bytes,15,opt,name=contract_as_json,json=contractAsJson,proto3" json:"contract_as_json,omitempty"`
	MakerContractSignature           string            `` /* 130-byte string literal not displayed */
	TakerContractSignature           string            `` /* 130-byte string literal not displayed */
	AgentPubKeyRing                  *PubKeyRing       `protobuf:"bytes,18,opt,name=agent_pub_key_ring,json=agentPubKeyRing,proto3" json:"agent_pub_key_ring,omitempty"`
	IsSupportTicket                  bool              `protobuf:"varint,19,opt,name=is_support_ticket,json=isSupportTicket,proto3" json:"is_support_ticket,omitempty"`
	ChatMessage                      []*ChatMessage    `protobuf:"bytes,20,rep,name=chat_message,json=chatMessage,proto3" json:"chat_message,omitempty"`
	IsClosed                         bool              `protobuf:"varint,21,opt,name=is_closed,json=isClosed,proto3" json:"is_closed,omitempty"`
	DisputeResult                    *DisputeResult    `protobuf:"bytes,22,opt,name=dispute_result,json=disputeResult,proto3" json:"dispute_result,omitempty"`
	DisputePayoutTxId                string            `protobuf:"bytes,23,opt,name=dispute_payout_tx_id,json=disputePayoutTxId,proto3" json:"dispute_payout_tx_id,omitempty"`
	SupportType                      SupportType       `` /* 133-byte string literal not displayed */
	MediatorsDisputeResult           string            `` /* 130-byte string literal not displayed */
	DelayedPayoutTxId                string            `protobuf:"bytes,26,opt,name=delayed_payout_tx_id,json=delayedPayoutTxId,proto3" json:"delayed_payout_tx_id,omitempty"`
	DonationAddressOfDelayedPayoutTx string            `` /* 166-byte string literal not displayed */
	State                            Dispute_State     `protobuf:"varint,28,opt,name=state,proto3,enum=io.bisq.protobuffer.Dispute_State" json:"state,omitempty"`
	TradePeriodEnd                   int64             `protobuf:"varint,29,opt,name=trade_period_end,json=tradePeriodEnd,proto3" json:"trade_period_end,omitempty"`
	ExtraData                        map[string]string `` /* 177-byte string literal not displayed */
	BurningManSelectionHeight        int32             `` // Added in v 1.9.7
	/* 142-byte string literal not displayed */
	TradeTxFee int64 `protobuf:"varint,32,opt,name=trade_tx_fee,json=tradeTxFee,proto3" json:"trade_tx_fee,omitempty"` // Added in v 1.9.7
	// contains filtered or unexported fields
}

func (*Dispute) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Dispute.ProtoReflect.Descriptor instead.

func (*Dispute) GetAgentPubKeyRing added in v0.1.4

func (x *Dispute) GetAgentPubKeyRing() *PubKeyRing

func (*Dispute) GetBurningManSelectionHeight added in v0.1.10

func (x *Dispute) GetBurningManSelectionHeight() int32

func (*Dispute) GetChatMessage added in v0.1.4

func (x *Dispute) GetChatMessage() []*ChatMessage

func (*Dispute) GetContract added in v0.1.4

func (x *Dispute) GetContract() *Contract

func (*Dispute) GetContractAsJson added in v0.1.4

func (x *Dispute) GetContractAsJson() string

func (*Dispute) GetContractHash added in v0.1.4

func (x *Dispute) GetContractHash() []byte

func (*Dispute) GetDelayedPayoutTxId added in v0.1.4

func (x *Dispute) GetDelayedPayoutTxId() string

func (*Dispute) GetDepositTxId added in v0.1.4

func (x *Dispute) GetDepositTxId() string

func (*Dispute) GetDepositTxSerialized added in v0.1.4

func (x *Dispute) GetDepositTxSerialized() []byte

func (*Dispute) GetDisputeOpenerIsBuyer added in v0.1.4

func (x *Dispute) GetDisputeOpenerIsBuyer() bool

func (*Dispute) GetDisputeOpenerIsMaker added in v0.1.4

func (x *Dispute) GetDisputeOpenerIsMaker() bool

func (*Dispute) GetDisputePayoutTxId added in v0.1.4

func (x *Dispute) GetDisputePayoutTxId() string

func (*Dispute) GetDisputeResult added in v0.1.4

func (x *Dispute) GetDisputeResult() *DisputeResult

func (*Dispute) GetDonationAddressOfDelayedPayoutTx added in v0.1.4

func (x *Dispute) GetDonationAddressOfDelayedPayoutTx() string

func (*Dispute) GetExtraData added in v0.1.5

func (x *Dispute) GetExtraData() map[string]string

func (*Dispute) GetId added in v0.1.4

func (x *Dispute) GetId() string

func (*Dispute) GetIsClosed added in v0.1.4

func (x *Dispute) GetIsClosed() bool

func (*Dispute) GetIsSupportTicket added in v0.1.4

func (x *Dispute) GetIsSupportTicket() bool

func (*Dispute) GetMakerContractSignature added in v0.1.4

func (x *Dispute) GetMakerContractSignature() string

func (*Dispute) GetMediatorsDisputeResult added in v0.1.4

func (x *Dispute) GetMediatorsDisputeResult() string

func (*Dispute) GetOpeningDate added in v0.1.4

func (x *Dispute) GetOpeningDate() int64

func (*Dispute) GetPayoutTxId added in v0.1.4

func (x *Dispute) GetPayoutTxId() string

func (*Dispute) GetPayoutTxSerialized added in v0.1.4

func (x *Dispute) GetPayoutTxSerialized() []byte

func (*Dispute) GetState added in v0.1.5

func (x *Dispute) GetState() Dispute_State

func (*Dispute) GetSupportType added in v0.1.4

func (x *Dispute) GetSupportType() SupportType

func (*Dispute) GetTakerContractSignature added in v0.1.4

func (x *Dispute) GetTakerContractSignature() string

func (*Dispute) GetTradeDate added in v0.1.4

func (x *Dispute) GetTradeDate() int64

func (*Dispute) GetTradeId added in v0.1.4

func (x *Dispute) GetTradeId() string

func (*Dispute) GetTradePeriodEnd added in v0.1.5

func (x *Dispute) GetTradePeriodEnd() int64

func (*Dispute) GetTradeTxFee added in v0.1.10

func (x *Dispute) GetTradeTxFee() int64

func (*Dispute) GetTraderId added in v0.1.4

func (x *Dispute) GetTraderId() int32

func (*Dispute) GetTraderPubKeyRing added in v0.1.4

func (x *Dispute) GetTraderPubKeyRing() *PubKeyRing

func (*Dispute) ProtoMessage added in v0.1.4

func (*Dispute) ProtoMessage()

func (*Dispute) ProtoReflect added in v0.1.4

func (x *Dispute) ProtoReflect() protoreflect.Message

func (*Dispute) Reset added in v0.1.4

func (x *Dispute) Reset()

func (*Dispute) String added in v0.1.4

func (x *Dispute) String() string

type DisputeAgentsClient added in v0.1.4

type DisputeAgentsClient interface {
	// Register regtest / dev mode dispute agents.  Does not work when running on mainnet.
	RegisterDisputeAgent(ctx context.Context, in *RegisterDisputeAgentRequest, opts ...grpc.CallOption) (*RegisterDisputeAgentReply, error)
}

DisputeAgentsClient is the client API for DisputeAgents service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewDisputeAgentsClient added in v0.1.4

func NewDisputeAgentsClient(cc grpc.ClientConnInterface) DisputeAgentsClient

type DisputeAgentsServer added in v0.1.4

type DisputeAgentsServer interface {
	// Register regtest / dev mode dispute agents.  Does not work when running on mainnet.
	RegisterDisputeAgent(context.Context, *RegisterDisputeAgentRequest) (*RegisterDisputeAgentReply, error)
	// contains filtered or unexported methods
}

DisputeAgentsServer is the server API for DisputeAgents service. All implementations must embed UnimplementedDisputeAgentsServer for forward compatibility

type DisputeResult added in v0.1.4

type DisputeResult struct {
	TradeId                 string                         `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	TraderId                int32                          `protobuf:"varint,2,opt,name=trader_id,json=traderId,proto3" json:"trader_id,omitempty"`
	Winner                  DisputeResult_Winner           `protobuf:"varint,3,opt,name=winner,proto3,enum=io.bisq.protobuffer.DisputeResult_Winner" json:"winner,omitempty"`
	ReasonOrdinal           int32                          `protobuf:"varint,4,opt,name=reason_ordinal,json=reasonOrdinal,proto3" json:"reason_ordinal,omitempty"`
	TamperProofEvidence     bool                           `protobuf:"varint,5,opt,name=tamper_proof_evidence,json=tamperProofEvidence,proto3" json:"tamper_proof_evidence,omitempty"`
	IdVerification          bool                           `protobuf:"varint,6,opt,name=id_verification,json=idVerification,proto3" json:"id_verification,omitempty"`
	ScreenCast              bool                           `protobuf:"varint,7,opt,name=screen_cast,json=screenCast,proto3" json:"screen_cast,omitempty"`
	SummaryNotes            string                         `protobuf:"bytes,8,opt,name=summary_notes,json=summaryNotes,proto3" json:"summary_notes,omitempty"`
	ChatMessage             *ChatMessage                   `protobuf:"bytes,9,opt,name=chat_message,json=chatMessage,proto3" json:"chat_message,omitempty"`
	ArbitratorSignature     []byte                         `protobuf:"bytes,10,opt,name=arbitrator_signature,json=arbitratorSignature,proto3" json:"arbitrator_signature,omitempty"`
	BuyerPayoutAmount       int64                          `protobuf:"varint,11,opt,name=buyer_payout_amount,json=buyerPayoutAmount,proto3" json:"buyer_payout_amount,omitempty"`
	SellerPayoutAmount      int64                          `protobuf:"varint,12,opt,name=seller_payout_amount,json=sellerPayoutAmount,proto3" json:"seller_payout_amount,omitempty"`
	ArbitratorPubKey        []byte                         `protobuf:"bytes,13,opt,name=arbitrator_pub_key,json=arbitratorPubKey,proto3" json:"arbitrator_pub_key,omitempty"`
	CloseDate               int64                          `protobuf:"varint,14,opt,name=close_date,json=closeDate,proto3" json:"close_date,omitempty"`
	IsLoserPublisher        bool                           `protobuf:"varint,15,opt,name=is_loser_publisher,json=isLoserPublisher,proto3" json:"is_loser_publisher,omitempty"`
	PayoutAdjustmentPercent string                         `` /* 133-byte string literal not displayed */
	PayoutSuggestion        DisputeResult_PayoutSuggestion `` /* 167-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DisputeResult) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DisputeResult.ProtoReflect.Descriptor instead.

func (*DisputeResult) GetArbitratorPubKey added in v0.1.4

func (x *DisputeResult) GetArbitratorPubKey() []byte

func (*DisputeResult) GetArbitratorSignature added in v0.1.4

func (x *DisputeResult) GetArbitratorSignature() []byte

func (*DisputeResult) GetBuyerPayoutAmount added in v0.1.4

func (x *DisputeResult) GetBuyerPayoutAmount() int64

func (*DisputeResult) GetChatMessage added in v0.1.4

func (x *DisputeResult) GetChatMessage() *ChatMessage

func (*DisputeResult) GetCloseDate added in v0.1.4

func (x *DisputeResult) GetCloseDate() int64

func (*DisputeResult) GetIdVerification added in v0.1.4

func (x *DisputeResult) GetIdVerification() bool

func (*DisputeResult) GetIsLoserPublisher added in v0.1.4

func (x *DisputeResult) GetIsLoserPublisher() bool

func (*DisputeResult) GetPayoutAdjustmentPercent added in v0.1.6

func (x *DisputeResult) GetPayoutAdjustmentPercent() string

func (*DisputeResult) GetPayoutSuggestion added in v0.1.6

func (x *DisputeResult) GetPayoutSuggestion() DisputeResult_PayoutSuggestion

func (*DisputeResult) GetReasonOrdinal added in v0.1.4

func (x *DisputeResult) GetReasonOrdinal() int32

func (*DisputeResult) GetScreenCast added in v0.1.4

func (x *DisputeResult) GetScreenCast() bool

func (*DisputeResult) GetSellerPayoutAmount added in v0.1.4

func (x *DisputeResult) GetSellerPayoutAmount() int64

func (*DisputeResult) GetSummaryNotes added in v0.1.4

func (x *DisputeResult) GetSummaryNotes() string

func (*DisputeResult) GetTamperProofEvidence added in v0.1.4

func (x *DisputeResult) GetTamperProofEvidence() bool

func (*DisputeResult) GetTradeId added in v0.1.4

func (x *DisputeResult) GetTradeId() string

func (*DisputeResult) GetTraderId added in v0.1.4

func (x *DisputeResult) GetTraderId() int32

func (*DisputeResult) GetWinner added in v0.1.4

func (x *DisputeResult) GetWinner() DisputeResult_Winner

func (*DisputeResult) ProtoMessage added in v0.1.4

func (*DisputeResult) ProtoMessage()

func (*DisputeResult) ProtoReflect added in v0.1.4

func (x *DisputeResult) ProtoReflect() protoreflect.Message

func (*DisputeResult) Reset added in v0.1.4

func (x *DisputeResult) Reset()

func (*DisputeResult) String added in v0.1.4

func (x *DisputeResult) String() string

type DisputeResultMessage added in v0.1.4

type DisputeResultMessage struct {
	Uid               string         `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	DisputeResult     *DisputeResult `protobuf:"bytes,2,opt,name=dispute_result,json=disputeResult,proto3" json:"dispute_result,omitempty"`
	SenderNodeAddress *NodeAddress   `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Type              SupportType    `protobuf:"varint,4,opt,name=type,proto3,enum=io.bisq.protobuffer.SupportType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*DisputeResultMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use DisputeResultMessage.ProtoReflect.Descriptor instead.

func (*DisputeResultMessage) GetDisputeResult added in v0.1.4

func (x *DisputeResultMessage) GetDisputeResult() *DisputeResult

func (*DisputeResultMessage) GetSenderNodeAddress added in v0.1.4

func (x *DisputeResultMessage) GetSenderNodeAddress() *NodeAddress

func (*DisputeResultMessage) GetType added in v0.1.4

func (x *DisputeResultMessage) GetType() SupportType

func (*DisputeResultMessage) GetUid added in v0.1.4

func (x *DisputeResultMessage) GetUid() string

func (*DisputeResultMessage) ProtoMessage added in v0.1.4

func (*DisputeResultMessage) ProtoMessage()

func (*DisputeResultMessage) ProtoReflect added in v0.1.4

func (x *DisputeResultMessage) ProtoReflect() protoreflect.Message

func (*DisputeResultMessage) Reset added in v0.1.4

func (x *DisputeResultMessage) Reset()

func (*DisputeResultMessage) String added in v0.1.4

func (x *DisputeResultMessage) String() string

type DisputeResult_PayoutSuggestion added in v0.1.6

type DisputeResult_PayoutSuggestion int32
const (
	DisputeResult_CUSTOM_PAYOUT                              DisputeResult_PayoutSuggestion = 0
	DisputeResult_BUYER_GETS_TRADE_AMOUNT                    DisputeResult_PayoutSuggestion = 1
	DisputeResult_BUYER_GETS_TRADE_AMOUNT_PLUS_COMPENSATION  DisputeResult_PayoutSuggestion = 2
	DisputeResult_BUYER_GETS_TRADE_AMOUNT_MINUS_PENALTY      DisputeResult_PayoutSuggestion = 3
	DisputeResult_SELLER_GETS_TRADE_AMOUNT                   DisputeResult_PayoutSuggestion = 4
	DisputeResult_SELLER_GETS_TRADE_AMOUNT_PLUS_COMPENSATION DisputeResult_PayoutSuggestion = 5
	DisputeResult_SELLER_GETS_TRADE_AMOUNT_MINUS_PENALTY     DisputeResult_PayoutSuggestion = 6
)

func (DisputeResult_PayoutSuggestion) Descriptor added in v0.1.6

func (DisputeResult_PayoutSuggestion) Enum added in v0.1.6

func (DisputeResult_PayoutSuggestion) EnumDescriptor deprecated added in v0.1.6

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

Deprecated: Use DisputeResult_PayoutSuggestion.Descriptor instead.

func (DisputeResult_PayoutSuggestion) Number added in v0.1.6

func (DisputeResult_PayoutSuggestion) String added in v0.1.6

func (DisputeResult_PayoutSuggestion) Type added in v0.1.6

type DisputeResult_Reason added in v0.1.4

type DisputeResult_Reason int32
const (
	DisputeResult_PB_ERROR_REASON       DisputeResult_Reason = 0
	DisputeResult_OTHER                 DisputeResult_Reason = 1
	DisputeResult_BUG                   DisputeResult_Reason = 2
	DisputeResult_USABILITY             DisputeResult_Reason = 3
	DisputeResult_SCAM                  DisputeResult_Reason = 4
	DisputeResult_PROTOCOL_VIOLATION    DisputeResult_Reason = 5
	DisputeResult_NO_REPLY              DisputeResult_Reason = 6
	DisputeResult_BANK_PROBLEMS         DisputeResult_Reason = 7
	DisputeResult_OPTION_TRADE          DisputeResult_Reason = 8
	DisputeResult_SELLER_NOT_RESPONDING DisputeResult_Reason = 9
	DisputeResult_WRONG_SENDER_ACCOUNT  DisputeResult_Reason = 10
	DisputeResult_TRADE_ALREADY_SETTLED DisputeResult_Reason = 11
	DisputeResult_PEER_WAS_LATE         DisputeResult_Reason = 12
)

func (DisputeResult_Reason) Descriptor added in v0.1.4

func (DisputeResult_Reason) Enum added in v0.1.4

func (DisputeResult_Reason) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use DisputeResult_Reason.Descriptor instead.

func (DisputeResult_Reason) Number added in v0.1.4

func (DisputeResult_Reason) String added in v0.1.4

func (x DisputeResult_Reason) String() string

func (DisputeResult_Reason) Type added in v0.1.4

type DisputeResult_Winner added in v0.1.4

type DisputeResult_Winner int32
const (
	DisputeResult_PB_ERROR_WINNER DisputeResult_Winner = 0
	DisputeResult_BUYER           DisputeResult_Winner = 1
	DisputeResult_SELLER          DisputeResult_Winner = 2
)

func (DisputeResult_Winner) Descriptor added in v0.1.4

func (DisputeResult_Winner) Enum added in v0.1.4

func (DisputeResult_Winner) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use DisputeResult_Winner.Descriptor instead.

func (DisputeResult_Winner) Number added in v0.1.4

func (DisputeResult_Winner) String added in v0.1.4

func (x DisputeResult_Winner) String() string

func (DisputeResult_Winner) Type added in v0.1.4

type Dispute_State added in v0.1.5

type Dispute_State int32
const (
	Dispute_NEEDS_UPGRADE   Dispute_State = 0
	Dispute_NEW             Dispute_State = 1
	Dispute_OPEN            Dispute_State = 2
	Dispute_REOPENED        Dispute_State = 3
	Dispute_CLOSED          Dispute_State = 4
	Dispute_RESULT_PROPOSED Dispute_State = 5
)

func (Dispute_State) Descriptor added in v0.1.5

func (Dispute_State) Enum added in v0.1.5

func (x Dispute_State) Enum() *Dispute_State

func (Dispute_State) EnumDescriptor deprecated added in v0.1.5

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

Deprecated: Use Dispute_State.Descriptor instead.

func (Dispute_State) Number added in v0.1.5

func (Dispute_State) String added in v0.1.5

func (x Dispute_State) String() string

func (Dispute_State) Type added in v0.1.5

type DomesticWireTransferAccountPayload added in v0.1.6

type DomesticWireTransferAccountPayload struct {
	HolderAddress string `protobuf:"bytes,1,opt,name=holder_address,json=holderAddress,proto3" json:"holder_address,omitempty"`
	// contains filtered or unexported fields
}

func (*DomesticWireTransferAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use DomesticWireTransferAccountPayload.ProtoReflect.Descriptor instead.

func (*DomesticWireTransferAccountPayload) GetHolderAddress added in v0.1.6

func (x *DomesticWireTransferAccountPayload) GetHolderAddress() string

func (*DomesticWireTransferAccountPayload) ProtoMessage added in v0.1.6

func (*DomesticWireTransferAccountPayload) ProtoMessage()

func (*DomesticWireTransferAccountPayload) ProtoReflect added in v0.1.6

func (*DomesticWireTransferAccountPayload) Reset added in v0.1.6

func (*DomesticWireTransferAccountPayload) String added in v0.1.6

type DoubleValueReportingItem added in v0.1.10

type DoubleValueReportingItem struct {
	Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*DoubleValueReportingItem) Descriptor deprecated added in v0.1.10

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

Deprecated: Use DoubleValueReportingItem.ProtoReflect.Descriptor instead.

func (*DoubleValueReportingItem) GetValue added in v0.1.10

func (x *DoubleValueReportingItem) GetValue() float64

func (*DoubleValueReportingItem) ProtoMessage added in v0.1.10

func (*DoubleValueReportingItem) ProtoMessage()

func (*DoubleValueReportingItem) ProtoReflect added in v0.1.10

func (x *DoubleValueReportingItem) ProtoReflect() protoreflect.Message

func (*DoubleValueReportingItem) Reset added in v0.1.10

func (x *DoubleValueReportingItem) Reset()

func (*DoubleValueReportingItem) String added in v0.1.10

func (x *DoubleValueReportingItem) String() string

type EditOfferReply added in v0.1.5

type EditOfferReply struct {
	// contains filtered or unexported fields
}

func (*EditOfferReply) Descriptor deprecated added in v0.1.5

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

Deprecated: Use EditOfferReply.ProtoReflect.Descriptor instead.

func (*EditOfferReply) ProtoMessage added in v0.1.5

func (*EditOfferReply) ProtoMessage()

func (*EditOfferReply) ProtoReflect added in v0.1.5

func (x *EditOfferReply) ProtoReflect() protoreflect.Message

func (*EditOfferReply) Reset added in v0.1.5

func (x *EditOfferReply) Reset()

func (*EditOfferReply) String added in v0.1.5

func (x *EditOfferReply) String() string

type EditOfferRequest added in v0.1.5

type EditOfferRequest struct {

	// The edited offer's unique identifier.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// For fiat offers:  a string representing the new rounded, fixed fiat price of the offer, e.g., "45000", not "45000".
	// For altcoin offers:  a string representing the new fixed BTC price of the offer, e.g., "0.00005".
	Price string `protobuf:"bytes,2,opt,name=price,proto3" json:"price,omitempty"`
	// Whether the offer price is fixed, or market price margin based.
	UseMarketBasedPrice bool `protobuf:"varint,3,opt,name=use_market_based_price,json=useMarketBasedPrice,proto3" json:"use_market_based_price,omitempty"`
	// An offer's new market price margin as a percentage above or below the current market BTC price.
	MarketPriceMarginPct float64 `` /* 127-byte string literal not displayed */
	// A market price margin based offer's trigger price is the market BTC price at which the offer is automatically disabled.
	// Disabled offers are never automatically enabled, they must be manually re-enabled.
	// A zero value indicates trigger price is not set.  Trigger price does not apply to fixed price offers.
	TriggerPrice string `protobuf:"bytes,5,opt,name=trigger_price,json=triggerPrice,proto3" json:"trigger_price,omitempty"`
	// Whether the offer's activation state should be changed (disable or enable), or left alone.
	// Send a signed int, not a bool (with default=false).
	//
	//	-1 = do not change activation state
	//	0 = disable
	//	1 = enable
	Enable int32 `protobuf:"zigzag32,6,opt,name=enable,proto3" json:"enable,omitempty"`
	// Tell the daemon precisely what is being edited.
	EditType EditOfferRequest_EditType `` /* 137-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*EditOfferRequest) Descriptor deprecated added in v0.1.5

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

Deprecated: Use EditOfferRequest.ProtoReflect.Descriptor instead.

func (*EditOfferRequest) GetEditType added in v0.1.5

func (*EditOfferRequest) GetEnable added in v0.1.5

func (x *EditOfferRequest) GetEnable() int32

func (*EditOfferRequest) GetId added in v0.1.5

func (x *EditOfferRequest) GetId() string

func (*EditOfferRequest) GetMarketPriceMarginPct added in v0.1.9

func (x *EditOfferRequest) GetMarketPriceMarginPct() float64

func (*EditOfferRequest) GetPrice added in v0.1.5

func (x *EditOfferRequest) GetPrice() string

func (*EditOfferRequest) GetTriggerPrice added in v0.1.5

func (x *EditOfferRequest) GetTriggerPrice() string

func (*EditOfferRequest) GetUseMarketBasedPrice added in v0.1.5

func (x *EditOfferRequest) GetUseMarketBasedPrice() bool

func (*EditOfferRequest) ProtoMessage added in v0.1.5

func (*EditOfferRequest) ProtoMessage()

func (*EditOfferRequest) ProtoReflect added in v0.1.5

func (x *EditOfferRequest) ProtoReflect() protoreflect.Message

func (*EditOfferRequest) Reset added in v0.1.5

func (x *EditOfferRequest) Reset()

func (*EditOfferRequest) String added in v0.1.5

func (x *EditOfferRequest) String() string

type EditOfferRequest_EditType added in v0.1.5

type EditOfferRequest_EditType int32

The EditType determines and constricts what offer details can be modified by the request, simplifying param validation. (The CLI need to infer this detail from 'editoffer' command options, other clients do not.)

const (
	// Edit only the offer's activation state (enabled or disabled).
	EditOfferRequest_ACTIVATION_STATE_ONLY EditOfferRequest_EditType = 0
	// Edit only the offer's fixed price.
	EditOfferRequest_FIXED_PRICE_ONLY EditOfferRequest_EditType = 1
	// Edit only the offer's fixed price and activation state.
	EditOfferRequest_FIXED_PRICE_AND_ACTIVATION_STATE EditOfferRequest_EditType = 2
	// Edit only the offer's market price margin.
	EditOfferRequest_MKT_PRICE_MARGIN_ONLY EditOfferRequest_EditType = 3
	// Edit only the offer's market price margin and activation state.
	EditOfferRequest_MKT_PRICE_MARGIN_AND_ACTIVATION_STATE EditOfferRequest_EditType = 4
	// Edit only the market price margin based offer's trigger price.
	EditOfferRequest_TRIGGER_PRICE_ONLY EditOfferRequest_EditType = 5
	// Edit only the market price margin based offer's trigger price and activation state.
	EditOfferRequest_TRIGGER_PRICE_AND_ACTIVATION_STATE EditOfferRequest_EditType = 6
	// Edit only the offer's market price margin and trigger price.
	EditOfferRequest_MKT_PRICE_MARGIN_AND_TRIGGER_PRICE EditOfferRequest_EditType = 7
	// Edit only the offer's market price margin, trigger price, and activation state.
	EditOfferRequest_MKT_PRICE_MARGIN_AND_TRIGGER_PRICE_AND_ACTIVATION_STATE EditOfferRequest_EditType = 8
)

func (EditOfferRequest_EditType) Descriptor added in v0.1.5

func (EditOfferRequest_EditType) Enum added in v0.1.5

func (EditOfferRequest_EditType) EnumDescriptor deprecated added in v0.1.5

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

Deprecated: Use EditOfferRequest_EditType.Descriptor instead.

func (EditOfferRequest_EditType) Number added in v0.1.5

func (EditOfferRequest_EditType) String added in v0.1.5

func (x EditOfferRequest_EditType) String() string

func (EditOfferRequest_EditType) Type added in v0.1.5

type EvaluatedProposal added in v0.1.4

type EvaluatedProposal struct {
	IsAccepted         bool                `protobuf:"varint,1,opt,name=is_accepted,json=isAccepted,proto3" json:"is_accepted,omitempty"`
	ProposalVoteResult *ProposalVoteResult `protobuf:"bytes,2,opt,name=proposal_vote_result,json=proposalVoteResult,proto3" json:"proposal_vote_result,omitempty"`
	// contains filtered or unexported fields
}

func (*EvaluatedProposal) Descriptor deprecated added in v0.1.4

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

Deprecated: Use EvaluatedProposal.ProtoReflect.Descriptor instead.

func (*EvaluatedProposal) GetIsAccepted added in v0.1.4

func (x *EvaluatedProposal) GetIsAccepted() bool

func (*EvaluatedProposal) GetProposalVoteResult added in v0.1.4

func (x *EvaluatedProposal) GetProposalVoteResult() *ProposalVoteResult

func (*EvaluatedProposal) ProtoMessage added in v0.1.4

func (*EvaluatedProposal) ProtoMessage()

func (*EvaluatedProposal) ProtoReflect added in v0.1.4

func (x *EvaluatedProposal) ProtoReflect() protoreflect.Message

func (*EvaluatedProposal) Reset added in v0.1.4

func (x *EvaluatedProposal) Reset()

func (*EvaluatedProposal) String added in v0.1.4

func (x *EvaluatedProposal) String() string

type F2FAccountPayload added in v0.1.4

type F2FAccountPayload struct {
	Contact   string `protobuf:"bytes,1,opt,name=contact,proto3" json:"contact,omitempty"`
	City      string `protobuf:"bytes,2,opt,name=city,proto3" json:"city,omitempty"`
	ExtraInfo string `protobuf:"bytes,3,opt,name=extra_info,json=extraInfo,proto3" json:"extra_info,omitempty"`
	// contains filtered or unexported fields
}

func (*F2FAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use F2FAccountPayload.ProtoReflect.Descriptor instead.

func (*F2FAccountPayload) GetCity added in v0.1.4

func (x *F2FAccountPayload) GetCity() string

func (*F2FAccountPayload) GetContact added in v0.1.4

func (x *F2FAccountPayload) GetContact() string

func (*F2FAccountPayload) GetExtraInfo added in v0.1.4

func (x *F2FAccountPayload) GetExtraInfo() string

func (*F2FAccountPayload) ProtoMessage added in v0.1.4

func (*F2FAccountPayload) ProtoMessage()

func (*F2FAccountPayload) ProtoReflect added in v0.1.4

func (x *F2FAccountPayload) ProtoReflect() protoreflect.Message

func (*F2FAccountPayload) Reset added in v0.1.4

func (x *F2FAccountPayload) Reset()

func (*F2FAccountPayload) String added in v0.1.4

func (x *F2FAccountPayload) String() string

type FailTradeReply added in v0.1.9

type FailTradeReply struct {
	// contains filtered or unexported fields
}

func (*FailTradeReply) Descriptor deprecated added in v0.1.9

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

Deprecated: Use FailTradeReply.ProtoReflect.Descriptor instead.

func (*FailTradeReply) ProtoMessage added in v0.1.9

func (*FailTradeReply) ProtoMessage()

func (*FailTradeReply) ProtoReflect added in v0.1.9

func (x *FailTradeReply) ProtoReflect() protoreflect.Message

func (*FailTradeReply) Reset added in v0.1.9

func (x *FailTradeReply) Reset()

func (*FailTradeReply) String added in v0.1.9

func (x *FailTradeReply) String() string

type FailTradeRequest added in v0.1.9

type FailTradeRequest struct {
	TradeId string `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"` // The unique identifier of the trade.
	// contains filtered or unexported fields
}

func (*FailTradeRequest) Descriptor deprecated added in v0.1.9

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

Deprecated: Use FailTradeRequest.ProtoReflect.Descriptor instead.

func (*FailTradeRequest) GetTradeId added in v0.1.9

func (x *FailTradeRequest) GetTradeId() string

func (*FailTradeRequest) ProtoMessage added in v0.1.9

func (*FailTradeRequest) ProtoMessage()

func (*FailTradeRequest) ProtoReflect added in v0.1.9

func (x *FailTradeRequest) ProtoReflect() protoreflect.Message

func (*FailTradeRequest) Reset added in v0.1.9

func (x *FailTradeRequest) Reset()

func (*FailTradeRequest) String added in v0.1.9

func (x *FailTradeRequest) String() string

type FasterPaymentsAccountPayload added in v0.1.4

type FasterPaymentsAccountPayload struct {
	SortCode  string `protobuf:"bytes,1,opt,name=sort_code,json=sortCode,proto3" json:"sort_code,omitempty"`
	AccountNr string `protobuf:"bytes,2,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*FasterPaymentsAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use FasterPaymentsAccountPayload.ProtoReflect.Descriptor instead.

func (*FasterPaymentsAccountPayload) GetAccountNr added in v0.1.4

func (x *FasterPaymentsAccountPayload) GetAccountNr() string

func (*FasterPaymentsAccountPayload) GetEmail deprecated added in v0.1.4

func (x *FasterPaymentsAccountPayload) GetEmail() string

Deprecated: Marked as deprecated in pb.proto.

func (*FasterPaymentsAccountPayload) GetSortCode added in v0.1.4

func (x *FasterPaymentsAccountPayload) GetSortCode() string

func (*FasterPaymentsAccountPayload) ProtoMessage added in v0.1.4

func (*FasterPaymentsAccountPayload) ProtoMessage()

func (*FasterPaymentsAccountPayload) ProtoReflect added in v0.1.4

func (*FasterPaymentsAccountPayload) Reset added in v0.1.4

func (x *FasterPaymentsAccountPayload) Reset()

func (*FasterPaymentsAccountPayload) String added in v0.1.4

type FiatCurrency added in v0.1.4

type FiatCurrency struct {
	Currency *Currency `protobuf:"bytes,1,opt,name=currency,proto3" json:"currency,omitempty"`
	// contains filtered or unexported fields
}

func (*FiatCurrency) Descriptor deprecated added in v0.1.4

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

Deprecated: Use FiatCurrency.ProtoReflect.Descriptor instead.

func (*FiatCurrency) GetCurrency added in v0.1.4

func (x *FiatCurrency) GetCurrency() *Currency

func (*FiatCurrency) ProtoMessage added in v0.1.4

func (*FiatCurrency) ProtoMessage()

func (*FiatCurrency) ProtoReflect added in v0.1.4

func (x *FiatCurrency) ProtoReflect() protoreflect.Message

func (*FiatCurrency) Reset added in v0.1.4

func (x *FiatCurrency) Reset()

func (*FiatCurrency) String added in v0.1.4

func (x *FiatCurrency) String() string

type FileTransferPart added in v0.1.9

type FileTransferPart struct {
	SenderNodeAddress  *NodeAddress `protobuf:"bytes,1,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Uid                string       `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId            string       `protobuf:"bytes,3,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	TraderId           int32        `protobuf:"varint,4,opt,name=trader_id,json=traderId,proto3" json:"trader_id,omitempty"`
	SeqNumOrFileLength int64        `protobuf:"varint,5,opt,name=seq_num_or_file_length,json=seqNumOrFileLength,proto3" json:"seq_num_or_file_length,omitempty"`
	MessageData        []byte       `protobuf:"bytes,6,opt,name=message_data,json=messageData,proto3" json:"message_data,omitempty"`
	// contains filtered or unexported fields
}

func (*FileTransferPart) Descriptor deprecated added in v0.1.9

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

Deprecated: Use FileTransferPart.ProtoReflect.Descriptor instead.

func (*FileTransferPart) GetMessageData added in v0.1.9

func (x *FileTransferPart) GetMessageData() []byte

func (*FileTransferPart) GetSenderNodeAddress added in v0.1.9

func (x *FileTransferPart) GetSenderNodeAddress() *NodeAddress

func (*FileTransferPart) GetSeqNumOrFileLength added in v0.1.9

func (x *FileTransferPart) GetSeqNumOrFileLength() int64

func (*FileTransferPart) GetTradeId added in v0.1.9

func (x *FileTransferPart) GetTradeId() string

func (*FileTransferPart) GetTraderId added in v0.1.9

func (x *FileTransferPart) GetTraderId() int32

func (*FileTransferPart) GetUid added in v0.1.9

func (x *FileTransferPart) GetUid() string

func (*FileTransferPart) ProtoMessage added in v0.1.9

func (*FileTransferPart) ProtoMessage()

func (*FileTransferPart) ProtoReflect added in v0.1.9

func (x *FileTransferPart) ProtoReflect() protoreflect.Message

func (*FileTransferPart) Reset added in v0.1.9

func (x *FileTransferPart) Reset()

func (*FileTransferPart) String added in v0.1.9

func (x *FileTransferPart) String() string

type Filter added in v0.1.4

type Filter struct {
	NodeAddressesBannedFromTrading []string                `` /* 157-byte string literal not displayed */
	BannedOfferIds                 []string                `protobuf:"bytes,2,rep,name=banned_offer_ids,json=bannedOfferIds,proto3" json:"banned_offer_ids,omitempty"`
	BannedPaymentAccounts          []*PaymentAccountFilter `` /* 126-byte string literal not displayed */
	SignatureAsBase64              string                  `protobuf:"bytes,4,opt,name=signature_as_base64,json=signatureAsBase64,proto3" json:"signature_as_base64,omitempty"`
	OwnerPubKeyBytes               []byte                  `protobuf:"bytes,5,opt,name=owner_pub_key_bytes,json=ownerPubKeyBytes,proto3" json:"owner_pub_key_bytes,omitempty"`
	ExtraData                      map[string]string       `` /* 176-byte string literal not displayed */
	BannedCurrencies               []string                `protobuf:"bytes,7,rep,name=banned_currencies,json=bannedCurrencies,proto3" json:"banned_currencies,omitempty"`
	BannedPaymentMethods           []string                `protobuf:"bytes,8,rep,name=banned_payment_methods,json=bannedPaymentMethods,proto3" json:"banned_payment_methods,omitempty"`
	Arbitrators                    []string                `protobuf:"bytes,9,rep,name=arbitrators,proto3" json:"arbitrators,omitempty"`
	SeedNodes                      []string                `protobuf:"bytes,10,rep,name=seed_nodes,json=seedNodes,proto3" json:"seed_nodes,omitempty"`
	PriceRelayNodes                []string                `protobuf:"bytes,11,rep,name=price_relay_nodes,json=priceRelayNodes,proto3" json:"price_relay_nodes,omitempty"`
	PreventPublicBtcNetwork        bool                    `` /* 136-byte string literal not displayed */
	BtcNodes                       []string                `protobuf:"bytes,13,rep,name=btc_nodes,json=btcNodes,proto3" json:"btc_nodes,omitempty"`
	DisableDao                     bool                    `protobuf:"varint,14,opt,name=disable_dao,json=disableDao,proto3" json:"disable_dao,omitempty"`
	DisableDaoBelowVersion         string                  `` /* 132-byte string literal not displayed */
	DisableTradeBelowVersion       string                  `` /* 138-byte string literal not displayed */
	Mediators                      []string                `protobuf:"bytes,17,rep,name=mediators,proto3" json:"mediators,omitempty"`
	RefundAgents                   []string                `protobuf:"bytes,18,rep,name=refundAgents,proto3" json:"refundAgents,omitempty"`
	BannedSignerPubKeys            []string                `protobuf:"bytes,19,rep,name=bannedSignerPubKeys,proto3" json:"bannedSignerPubKeys,omitempty"`
	BtcFeeReceiverAddresses        []string                `` /* 135-byte string literal not displayed */
	CreationDate                   int64                   `protobuf:"varint,21,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
	SignerPubKeyAsHex              string                  `protobuf:"bytes,22,opt,name=signer_pub_key_as_hex,json=signerPubKeyAsHex,proto3" json:"signer_pub_key_as_hex,omitempty"`
	BannedPrivilegedDevPubKeys     []string                `protobuf:"bytes,23,rep,name=bannedPrivilegedDevPubKeys,proto3" json:"bannedPrivilegedDevPubKeys,omitempty"`
	DisableAutoConf                bool                    `protobuf:"varint,24,opt,name=disable_auto_conf,json=disableAutoConf,proto3" json:"disable_auto_conf,omitempty"`
	BannedAutoConfExplorers        []string                `` /* 135-byte string literal not displayed */
	NodeAddressesBannedFromNetwork []string                `` /* 158-byte string literal not displayed */
	DisableApi                     bool                    `protobuf:"varint,27,opt,name=disable_api,json=disableApi,proto3" json:"disable_api,omitempty"`
	DisableMempoolValidation       bool                    `` /* 137-byte string literal not displayed */
	DisablePowMessage              bool                    `protobuf:"varint,29,opt,name=disable_pow_message,json=disablePowMessage,proto3" json:"disable_pow_message,omitempty"`
	PowDifficulty                  float64                 `protobuf:"fixed64,30,opt,name=pow_difficulty,json=powDifficulty,proto3" json:"pow_difficulty,omitempty"`
	MakerFeeBtc                    int64                   `protobuf:"varint,31,opt,name=maker_fee_btc,json=makerFeeBtc,proto3" json:"maker_fee_btc,omitempty"`
	TakerFeeBtc                    int64                   `protobuf:"varint,32,opt,name=taker_fee_btc,json=takerFeeBtc,proto3" json:"taker_fee_btc,omitempty"`
	MakerFeeBsq                    int64                   `protobuf:"varint,33,opt,name=maker_fee_bsq,json=makerFeeBsq,proto3" json:"maker_fee_bsq,omitempty"`
	TakerFeeBsq                    int64                   `protobuf:"varint,34,opt,name=taker_fee_bsq,json=takerFeeBsq,proto3" json:"taker_fee_bsq,omitempty"`
	EnabledPowVersions             []int32                 `` /* 126-byte string literal not displayed */
	DelayedPayoutPaymentAccounts   []*PaymentAccountFilter `protobuf:"bytes,36,rep,name=delayedPayoutPaymentAccounts,proto3" json:"delayedPayoutPaymentAccounts,omitempty"`
	// contains filtered or unexported fields
}

func (*Filter) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Filter.ProtoReflect.Descriptor instead.

func (*Filter) GetArbitrators added in v0.1.4

func (x *Filter) GetArbitrators() []string

func (*Filter) GetBannedAutoConfExplorers added in v0.1.4

func (x *Filter) GetBannedAutoConfExplorers() []string

func (*Filter) GetBannedCurrencies added in v0.1.4

func (x *Filter) GetBannedCurrencies() []string

func (*Filter) GetBannedOfferIds added in v0.1.4

func (x *Filter) GetBannedOfferIds() []string

func (*Filter) GetBannedPaymentAccounts added in v0.1.4

func (x *Filter) GetBannedPaymentAccounts() []*PaymentAccountFilter

func (*Filter) GetBannedPaymentMethods added in v0.1.4

func (x *Filter) GetBannedPaymentMethods() []string

func (*Filter) GetBannedPrivilegedDevPubKeys added in v0.1.4

func (x *Filter) GetBannedPrivilegedDevPubKeys() []string

func (*Filter) GetBannedSignerPubKeys added in v0.1.4

func (x *Filter) GetBannedSignerPubKeys() []string

func (*Filter) GetBtcFeeReceiverAddresses added in v0.1.4

func (x *Filter) GetBtcFeeReceiverAddresses() []string

func (*Filter) GetBtcNodes added in v0.1.4

func (x *Filter) GetBtcNodes() []string

func (*Filter) GetCreationDate added in v0.1.4

func (x *Filter) GetCreationDate() int64

func (*Filter) GetDelayedPayoutPaymentAccounts added in v0.1.14

func (x *Filter) GetDelayedPayoutPaymentAccounts() []*PaymentAccountFilter

func (*Filter) GetDisableApi added in v0.1.4

func (x *Filter) GetDisableApi() bool

func (*Filter) GetDisableAutoConf added in v0.1.4

func (x *Filter) GetDisableAutoConf() bool

func (*Filter) GetDisableDao added in v0.1.4

func (x *Filter) GetDisableDao() bool

func (*Filter) GetDisableDaoBelowVersion added in v0.1.4

func (x *Filter) GetDisableDaoBelowVersion() string

func (*Filter) GetDisableMempoolValidation added in v0.1.5

func (x *Filter) GetDisableMempoolValidation() bool

func (*Filter) GetDisablePowMessage added in v0.1.6

func (x *Filter) GetDisablePowMessage() bool

func (*Filter) GetDisableTradeBelowVersion added in v0.1.4

func (x *Filter) GetDisableTradeBelowVersion() string

func (*Filter) GetEnabledPowVersions added in v0.1.6

func (x *Filter) GetEnabledPowVersions() []int32

func (*Filter) GetExtraData added in v0.1.4

func (x *Filter) GetExtraData() map[string]string

func (*Filter) GetMakerFeeBsq added in v0.1.6

func (x *Filter) GetMakerFeeBsq() int64

func (*Filter) GetMakerFeeBtc added in v0.1.6

func (x *Filter) GetMakerFeeBtc() int64

func (*Filter) GetMediators added in v0.1.4

func (x *Filter) GetMediators() []string

func (*Filter) GetNodeAddressesBannedFromNetwork added in v0.1.4

func (x *Filter) GetNodeAddressesBannedFromNetwork() []string

func (*Filter) GetNodeAddressesBannedFromTrading added in v0.1.4

func (x *Filter) GetNodeAddressesBannedFromTrading() []string

func (*Filter) GetOwnerPubKeyBytes added in v0.1.4

func (x *Filter) GetOwnerPubKeyBytes() []byte

func (*Filter) GetPowDifficulty added in v0.1.6

func (x *Filter) GetPowDifficulty() float64

func (*Filter) GetPreventPublicBtcNetwork added in v0.1.4

func (x *Filter) GetPreventPublicBtcNetwork() bool

func (*Filter) GetPriceRelayNodes added in v0.1.4

func (x *Filter) GetPriceRelayNodes() []string

func (*Filter) GetRefundAgents added in v0.1.4

func (x *Filter) GetRefundAgents() []string

func (*Filter) GetSeedNodes added in v0.1.4

func (x *Filter) GetSeedNodes() []string

func (*Filter) GetSignatureAsBase64 added in v0.1.4

func (x *Filter) GetSignatureAsBase64() string

func (*Filter) GetSignerPubKeyAsHex added in v0.1.4

func (x *Filter) GetSignerPubKeyAsHex() string

func (*Filter) GetTakerFeeBsq added in v0.1.6

func (x *Filter) GetTakerFeeBsq() int64

func (*Filter) GetTakerFeeBtc added in v0.1.6

func (x *Filter) GetTakerFeeBtc() int64

func (*Filter) ProtoMessage added in v0.1.4

func (*Filter) ProtoMessage()

func (*Filter) ProtoReflect added in v0.1.4

func (x *Filter) ProtoReflect() protoreflect.Message

func (*Filter) Reset added in v0.1.4

func (x *Filter) Reset()

func (*Filter) String added in v0.1.4

func (x *Filter) String() string

type FinalizePayoutTxRequest added in v0.1.4

type FinalizePayoutTxRequest struct {
	TradeId             string       `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SellerSignature     []byte       `protobuf:"bytes,2,opt,name=seller_signature,json=sellerSignature,proto3" json:"seller_signature,omitempty"`
	SellerPayoutAddress string       `protobuf:"bytes,3,opt,name=seller_payout_address,json=sellerPayoutAddress,proto3" json:"seller_payout_address,omitempty"`
	SenderNodeAddress   *NodeAddress `protobuf:"bytes,4,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Uid                 string       `protobuf:"bytes,5,opt,name=uid,proto3" json:"uid,omitempty"`
	// contains filtered or unexported fields
}

func (*FinalizePayoutTxRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use FinalizePayoutTxRequest.ProtoReflect.Descriptor instead.

func (*FinalizePayoutTxRequest) GetSellerPayoutAddress added in v0.1.4

func (x *FinalizePayoutTxRequest) GetSellerPayoutAddress() string

func (*FinalizePayoutTxRequest) GetSellerSignature added in v0.1.4

func (x *FinalizePayoutTxRequest) GetSellerSignature() []byte

func (*FinalizePayoutTxRequest) GetSenderNodeAddress added in v0.1.4

func (x *FinalizePayoutTxRequest) GetSenderNodeAddress() *NodeAddress

func (*FinalizePayoutTxRequest) GetTradeId added in v0.1.4

func (x *FinalizePayoutTxRequest) GetTradeId() string

func (*FinalizePayoutTxRequest) GetUid added in v0.1.4

func (x *FinalizePayoutTxRequest) GetUid() string

func (*FinalizePayoutTxRequest) ProtoMessage added in v0.1.4

func (*FinalizePayoutTxRequest) ProtoMessage()

func (*FinalizePayoutTxRequest) ProtoReflect added in v0.1.4

func (x *FinalizePayoutTxRequest) ProtoReflect() protoreflect.Message

func (*FinalizePayoutTxRequest) Reset added in v0.1.4

func (x *FinalizePayoutTxRequest) Reset()

func (*FinalizePayoutTxRequest) String added in v0.1.4

func (x *FinalizePayoutTxRequest) String() string

type GenericProposal added in v0.1.4

type GenericProposal struct {
	// contains filtered or unexported fields
}

func (*GenericProposal) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GenericProposal.ProtoReflect.Descriptor instead.

func (*GenericProposal) ProtoMessage added in v0.1.4

func (*GenericProposal) ProtoMessage()

func (*GenericProposal) ProtoReflect added in v0.1.4

func (x *GenericProposal) ProtoReflect() protoreflect.Message

func (*GenericProposal) Reset added in v0.1.4

func (x *GenericProposal) Reset()

func (*GenericProposal) String added in v0.1.4

func (x *GenericProposal) String() string

type GetAccountingBlocksRequest added in v0.1.10

type GetAccountingBlocksRequest struct {
	FromBlockHeight       int32        `protobuf:"varint,1,opt,name=from_block_height,json=fromBlockHeight,proto3" json:"from_block_height,omitempty"`
	Nonce                 int32        `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	SenderNodeAddress     *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	SupportedCapabilities []int32      `` /* 132-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetAccountingBlocksRequest) Descriptor deprecated added in v0.1.10

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

Deprecated: Use GetAccountingBlocksRequest.ProtoReflect.Descriptor instead.

func (*GetAccountingBlocksRequest) GetFromBlockHeight added in v0.1.10

func (x *GetAccountingBlocksRequest) GetFromBlockHeight() int32

func (*GetAccountingBlocksRequest) GetNonce added in v0.1.10

func (x *GetAccountingBlocksRequest) GetNonce() int32

func (*GetAccountingBlocksRequest) GetSenderNodeAddress added in v0.1.10

func (x *GetAccountingBlocksRequest) GetSenderNodeAddress() *NodeAddress

func (*GetAccountingBlocksRequest) GetSupportedCapabilities added in v0.1.10

func (x *GetAccountingBlocksRequest) GetSupportedCapabilities() []int32

func (*GetAccountingBlocksRequest) ProtoMessage added in v0.1.10

func (*GetAccountingBlocksRequest) ProtoMessage()

func (*GetAccountingBlocksRequest) ProtoReflect added in v0.1.10

func (*GetAccountingBlocksRequest) Reset added in v0.1.10

func (x *GetAccountingBlocksRequest) Reset()

func (*GetAccountingBlocksRequest) String added in v0.1.10

func (x *GetAccountingBlocksRequest) String() string

type GetAccountingBlocksResponse added in v0.1.10

type GetAccountingBlocksResponse struct {
	Blocks       []*AccountingBlock `protobuf:"bytes,1,rep,name=blocks,proto3" json:"blocks,omitempty"`
	RequestNonce int32              `protobuf:"varint,2,opt,name=request_nonce,json=requestNonce,proto3" json:"request_nonce,omitempty"`
	PubKey       string             `protobuf:"bytes,3,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	Signature    []byte             `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAccountingBlocksResponse) Descriptor deprecated added in v0.1.10

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

Deprecated: Use GetAccountingBlocksResponse.ProtoReflect.Descriptor instead.

func (*GetAccountingBlocksResponse) GetBlocks added in v0.1.10

func (x *GetAccountingBlocksResponse) GetBlocks() []*AccountingBlock

func (*GetAccountingBlocksResponse) GetPubKey added in v0.1.10

func (x *GetAccountingBlocksResponse) GetPubKey() string

func (*GetAccountingBlocksResponse) GetRequestNonce added in v0.1.10

func (x *GetAccountingBlocksResponse) GetRequestNonce() int32

func (*GetAccountingBlocksResponse) GetSignature added in v0.1.10

func (x *GetAccountingBlocksResponse) GetSignature() []byte

func (*GetAccountingBlocksResponse) ProtoMessage added in v0.1.10

func (*GetAccountingBlocksResponse) ProtoMessage()

func (*GetAccountingBlocksResponse) ProtoReflect added in v0.1.10

func (*GetAccountingBlocksResponse) Reset added in v0.1.10

func (x *GetAccountingBlocksResponse) Reset()

func (*GetAccountingBlocksResponse) String added in v0.1.10

func (x *GetAccountingBlocksResponse) String() string

type GetAddressBalanceReply added in v0.1.4

type GetAddressBalanceReply struct {
	AddressBalanceInfo *AddressBalanceInfo `protobuf:"bytes,1,opt,name=address_balance_info,json=addressBalanceInfo,proto3" json:"address_balance_info,omitempty"` // The BTC wallet address with its balance summary.
	// contains filtered or unexported fields
}

func (*GetAddressBalanceReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetAddressBalanceReply.ProtoReflect.Descriptor instead.

func (*GetAddressBalanceReply) GetAddressBalanceInfo added in v0.1.4

func (x *GetAddressBalanceReply) GetAddressBalanceInfo() *AddressBalanceInfo

func (*GetAddressBalanceReply) ProtoMessage added in v0.1.4

func (*GetAddressBalanceReply) ProtoMessage()

func (*GetAddressBalanceReply) ProtoReflect added in v0.1.4

func (x *GetAddressBalanceReply) ProtoReflect() protoreflect.Message

func (*GetAddressBalanceReply) Reset added in v0.1.4

func (x *GetAddressBalanceReply) Reset()

func (*GetAddressBalanceReply) String added in v0.1.4

func (x *GetAddressBalanceReply) String() string

type GetAddressBalanceRequest added in v0.1.4

type GetAddressBalanceRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` // The BTC wallet address being queried.
	// contains filtered or unexported fields
}

func (*GetAddressBalanceRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetAddressBalanceRequest.ProtoReflect.Descriptor instead.

func (*GetAddressBalanceRequest) GetAddress added in v0.1.4

func (x *GetAddressBalanceRequest) GetAddress() string

func (*GetAddressBalanceRequest) ProtoMessage added in v0.1.4

func (*GetAddressBalanceRequest) ProtoMessage()

func (*GetAddressBalanceRequest) ProtoReflect added in v0.1.4

func (x *GetAddressBalanceRequest) ProtoReflect() protoreflect.Message

func (*GetAddressBalanceRequest) Reset added in v0.1.4

func (x *GetAddressBalanceRequest) Reset()

func (*GetAddressBalanceRequest) String added in v0.1.4

func (x *GetAddressBalanceRequest) String() string

type GetAverageBsqTradePriceReply added in v0.1.10

type GetAverageBsqTradePriceReply struct {

	// The average BSQ trade price in USD to 4 decimal places, and in BTC to 8 decimal places.
	Price *AverageBsqTradePrice `protobuf:"bytes,1,opt,name=price,proto3" json:"price,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAverageBsqTradePriceReply) Descriptor deprecated added in v0.1.10

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

Deprecated: Use GetAverageBsqTradePriceReply.ProtoReflect.Descriptor instead.

func (*GetAverageBsqTradePriceReply) GetPrice added in v0.1.10

func (*GetAverageBsqTradePriceReply) ProtoMessage added in v0.1.10

func (*GetAverageBsqTradePriceReply) ProtoMessage()

func (*GetAverageBsqTradePriceReply) ProtoReflect added in v0.1.10

func (*GetAverageBsqTradePriceReply) Reset added in v0.1.10

func (x *GetAverageBsqTradePriceReply) Reset()

func (*GetAverageBsqTradePriceReply) String added in v0.1.10

type GetAverageBsqTradePriceRequest added in v0.1.10

type GetAverageBsqTradePriceRequest struct {
	Days int32 `protobuf:"zigzag32,1,opt,name=days,proto3" json:"days,omitempty"` // The number of days used in the average BSQ trade price calculations.
	// contains filtered or unexported fields
}

func (*GetAverageBsqTradePriceRequest) Descriptor deprecated added in v0.1.10

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

Deprecated: Use GetAverageBsqTradePriceRequest.ProtoReflect.Descriptor instead.

func (*GetAverageBsqTradePriceRequest) GetDays added in v0.1.10

func (*GetAverageBsqTradePriceRequest) ProtoMessage added in v0.1.10

func (*GetAverageBsqTradePriceRequest) ProtoMessage()

func (*GetAverageBsqTradePriceRequest) ProtoReflect added in v0.1.10

func (*GetAverageBsqTradePriceRequest) Reset added in v0.1.10

func (x *GetAverageBsqTradePriceRequest) Reset()

func (*GetAverageBsqTradePriceRequest) String added in v0.1.10

type GetBalancesReply added in v0.1.4

type GetBalancesReply struct {
	Balances *BalancesInfo `protobuf:"bytes,1,opt,name=balances,proto3" json:"balances,omitempty"` // The summary of Bisq wallet's BSQ and BTC balances.
	// contains filtered or unexported fields
}

func (*GetBalancesReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetBalancesReply.ProtoReflect.Descriptor instead.

func (*GetBalancesReply) GetBalances added in v0.1.4

func (x *GetBalancesReply) GetBalances() *BalancesInfo

func (*GetBalancesReply) ProtoMessage added in v0.1.4

func (*GetBalancesReply) ProtoMessage()

func (*GetBalancesReply) ProtoReflect added in v0.1.4

func (x *GetBalancesReply) ProtoReflect() protoreflect.Message

func (*GetBalancesReply) Reset added in v0.1.4

func (x *GetBalancesReply) Reset()

func (*GetBalancesReply) String added in v0.1.4

func (x *GetBalancesReply) String() string

type GetBalancesRequest added in v0.1.4

type GetBalancesRequest struct {
	CurrencyCode string `protobuf:"bytes,1,opt,name=currency_code,json=currencyCode,proto3" json:"currency_code,omitempty"` // The Bisq wallet currency (BSQ or BTC) for the balances request.
	// contains filtered or unexported fields
}

func (*GetBalancesRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetBalancesRequest.ProtoReflect.Descriptor instead.

func (*GetBalancesRequest) GetCurrencyCode added in v0.1.4

func (x *GetBalancesRequest) GetCurrencyCode() string

func (*GetBalancesRequest) ProtoMessage added in v0.1.4

func (*GetBalancesRequest) ProtoMessage()

func (*GetBalancesRequest) ProtoReflect added in v0.1.4

func (x *GetBalancesRequest) ProtoReflect() protoreflect.Message

func (*GetBalancesRequest) Reset added in v0.1.4

func (x *GetBalancesRequest) Reset()

func (*GetBalancesRequest) String added in v0.1.4

func (x *GetBalancesRequest) String() string

type GetBlindVoteStateHashesRequest added in v0.1.4

type GetBlindVoteStateHashesRequest struct {
	Height int32 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Nonce  int32 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlindVoteStateHashesRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetBlindVoteStateHashesRequest.ProtoReflect.Descriptor instead.

func (*GetBlindVoteStateHashesRequest) GetHeight added in v0.1.4

func (x *GetBlindVoteStateHashesRequest) GetHeight() int32

func (*GetBlindVoteStateHashesRequest) GetNonce added in v0.1.4

func (x *GetBlindVoteStateHashesRequest) GetNonce() int32

func (*GetBlindVoteStateHashesRequest) ProtoMessage added in v0.1.4

func (*GetBlindVoteStateHashesRequest) ProtoMessage()

func (*GetBlindVoteStateHashesRequest) ProtoReflect added in v0.1.4

func (*GetBlindVoteStateHashesRequest) Reset added in v0.1.4

func (x *GetBlindVoteStateHashesRequest) Reset()

func (*GetBlindVoteStateHashesRequest) String added in v0.1.4

type GetBlindVoteStateHashesResponse added in v0.1.4

type GetBlindVoteStateHashesResponse struct {
	StateHashes  []*BlindVoteStateHash `protobuf:"bytes,1,rep,name=state_hashes,json=stateHashes,proto3" json:"state_hashes,omitempty"`
	RequestNonce int32                 `protobuf:"varint,2,opt,name=request_nonce,json=requestNonce,proto3" json:"request_nonce,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlindVoteStateHashesResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetBlindVoteStateHashesResponse.ProtoReflect.Descriptor instead.

func (*GetBlindVoteStateHashesResponse) GetRequestNonce added in v0.1.4

func (x *GetBlindVoteStateHashesResponse) GetRequestNonce() int32

func (*GetBlindVoteStateHashesResponse) GetStateHashes added in v0.1.4

func (x *GetBlindVoteStateHashesResponse) GetStateHashes() []*BlindVoteStateHash

func (*GetBlindVoteStateHashesResponse) ProtoMessage added in v0.1.4

func (*GetBlindVoteStateHashesResponse) ProtoMessage()

func (*GetBlindVoteStateHashesResponse) ProtoReflect added in v0.1.4

func (*GetBlindVoteStateHashesResponse) Reset added in v0.1.4

func (*GetBlindVoteStateHashesResponse) String added in v0.1.4

type GetBlocksRequest added in v0.1.4

type GetBlocksRequest struct {
	FromBlockHeight       int32        `protobuf:"varint,1,opt,name=from_block_height,json=fromBlockHeight,proto3" json:"from_block_height,omitempty"`
	Nonce                 int32        `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	SenderNodeAddress     *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	SupportedCapabilities []int32      `` /* 132-byte string literal not displayed */
	// contains filtered or unexported fields
}

DAO blocks request.

func (*GetBlocksRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetBlocksRequest.ProtoReflect.Descriptor instead.

func (*GetBlocksRequest) GetFromBlockHeight added in v0.1.4

func (x *GetBlocksRequest) GetFromBlockHeight() int32

func (*GetBlocksRequest) GetNonce added in v0.1.4

func (x *GetBlocksRequest) GetNonce() int32

func (*GetBlocksRequest) GetSenderNodeAddress added in v0.1.4

func (x *GetBlocksRequest) GetSenderNodeAddress() *NodeAddress

func (*GetBlocksRequest) GetSupportedCapabilities added in v0.1.4

func (x *GetBlocksRequest) GetSupportedCapabilities() []int32

func (*GetBlocksRequest) ProtoMessage added in v0.1.4

func (*GetBlocksRequest) ProtoMessage()

func (*GetBlocksRequest) ProtoReflect added in v0.1.4

func (x *GetBlocksRequest) ProtoReflect() protoreflect.Message

func (*GetBlocksRequest) Reset added in v0.1.4

func (x *GetBlocksRequest) Reset()

func (*GetBlocksRequest) String added in v0.1.4

func (x *GetBlocksRequest) String() string

type GetBlocksResponse added in v0.1.4

type GetBlocksResponse struct {

	// Because of the way how PB implements inheritance we need to use the super class as type.
	RawBlocks    []*BaseBlock `protobuf:"bytes,1,rep,name=raw_blocks,json=rawBlocks,proto3" json:"raw_blocks,omitempty"`
	RequestNonce int32        `protobuf:"varint,2,opt,name=request_nonce,json=requestNonce,proto3" json:"request_nonce,omitempty"`
	// contains filtered or unexported fields
}

DAO blocks response.

func (*GetBlocksResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetBlocksResponse.ProtoReflect.Descriptor instead.

func (*GetBlocksResponse) GetRawBlocks added in v0.1.4

func (x *GetBlocksResponse) GetRawBlocks() []*BaseBlock

func (*GetBlocksResponse) GetRequestNonce added in v0.1.4

func (x *GetBlocksResponse) GetRequestNonce() int32

func (*GetBlocksResponse) ProtoMessage added in v0.1.4

func (*GetBlocksResponse) ProtoMessage()

func (*GetBlocksResponse) ProtoReflect added in v0.1.4

func (x *GetBlocksResponse) ProtoReflect() protoreflect.Message

func (*GetBlocksResponse) Reset added in v0.1.4

func (x *GetBlocksResponse) Reset()

func (*GetBlocksResponse) String added in v0.1.4

func (x *GetBlocksResponse) String() string

type GetBsqSwapOfferReply added in v0.1.6

type GetBsqSwapOfferReply struct {
	BsqSwapOffer *OfferInfo `protobuf:"bytes,1,opt,name=bsq_swap_offer,json=bsqSwapOffer,proto3" json:"bsq_swap_offer,omitempty"` // The returned BSQ swap offer.
	// contains filtered or unexported fields
}

func (*GetBsqSwapOfferReply) Descriptor deprecated added in v0.1.6

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

Deprecated: Use GetBsqSwapOfferReply.ProtoReflect.Descriptor instead.

func (*GetBsqSwapOfferReply) GetBsqSwapOffer added in v0.1.6

func (x *GetBsqSwapOfferReply) GetBsqSwapOffer() *OfferInfo

func (*GetBsqSwapOfferReply) ProtoMessage added in v0.1.6

func (*GetBsqSwapOfferReply) ProtoMessage()

func (*GetBsqSwapOfferReply) ProtoReflect added in v0.1.6

func (x *GetBsqSwapOfferReply) ProtoReflect() protoreflect.Message

func (*GetBsqSwapOfferReply) Reset added in v0.1.6

func (x *GetBsqSwapOfferReply) Reset()

func (*GetBsqSwapOfferReply) String added in v0.1.6

func (x *GetBsqSwapOfferReply) String() string

type GetBsqSwapOffersReply added in v0.1.6

type GetBsqSwapOffersReply struct {
	BsqSwapOffers []*OfferInfo `protobuf:"bytes,1,rep,name=bsq_swap_offers,json=bsqSwapOffers,proto3" json:"bsq_swap_offers,omitempty"` // The returned list of available BSQ swap offers.
	// contains filtered or unexported fields
}

func (*GetBsqSwapOffersReply) Descriptor deprecated added in v0.1.6

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

Deprecated: Use GetBsqSwapOffersReply.ProtoReflect.Descriptor instead.

func (*GetBsqSwapOffersReply) GetBsqSwapOffers added in v0.1.6

func (x *GetBsqSwapOffersReply) GetBsqSwapOffers() []*OfferInfo

func (*GetBsqSwapOffersReply) ProtoMessage added in v0.1.6

func (*GetBsqSwapOffersReply) ProtoMessage()

func (*GetBsqSwapOffersReply) ProtoReflect added in v0.1.6

func (x *GetBsqSwapOffersReply) ProtoReflect() protoreflect.Message

func (*GetBsqSwapOffersReply) Reset added in v0.1.6

func (x *GetBsqSwapOffersReply) Reset()

func (*GetBsqSwapOffersReply) String added in v0.1.6

func (x *GetBsqSwapOffersReply) String() string

type GetBsqSwapOffersRequest added in v0.1.9

type GetBsqSwapOffersRequest struct {
	Direction string `protobuf:"bytes,1,opt,name=direction,proto3" json:"direction,omitempty"` // The BSQ swap offer's BUY (BTC) or SELL (BTC) direction.
	// contains filtered or unexported fields
}

func (*GetBsqSwapOffersRequest) Descriptor deprecated added in v0.1.9

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

Deprecated: Use GetBsqSwapOffersRequest.ProtoReflect.Descriptor instead.

func (*GetBsqSwapOffersRequest) GetDirection added in v0.1.9

func (x *GetBsqSwapOffersRequest) GetDirection() string

func (*GetBsqSwapOffersRequest) ProtoMessage added in v0.1.9

func (*GetBsqSwapOffersRequest) ProtoMessage()

func (*GetBsqSwapOffersRequest) ProtoReflect added in v0.1.9

func (x *GetBsqSwapOffersRequest) ProtoReflect() protoreflect.Message

func (*GetBsqSwapOffersRequest) Reset added in v0.1.9

func (x *GetBsqSwapOffersRequest) Reset()

func (*GetBsqSwapOffersRequest) String added in v0.1.9

func (x *GetBsqSwapOffersRequest) String() string

type GetCryptoCurrencyPaymentMethodsReply added in v0.1.5

type GetCryptoCurrencyPaymentMethodsReply struct {
	PaymentMethods []*PaymentMethod `protobuf:"bytes,1,rep,name=payment_methods,json=paymentMethods,proto3" json:"payment_methods,omitempty"` // Ids of all supported Bisq altcoin payment methods.
	// contains filtered or unexported fields
}

func (*GetCryptoCurrencyPaymentMethodsReply) Descriptor deprecated added in v0.1.5

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

Deprecated: Use GetCryptoCurrencyPaymentMethodsReply.ProtoReflect.Descriptor instead.

func (*GetCryptoCurrencyPaymentMethodsReply) GetPaymentMethods added in v0.1.5

func (x *GetCryptoCurrencyPaymentMethodsReply) GetPaymentMethods() []*PaymentMethod

func (*GetCryptoCurrencyPaymentMethodsReply) ProtoMessage added in v0.1.5

func (*GetCryptoCurrencyPaymentMethodsReply) ProtoMessage()

func (*GetCryptoCurrencyPaymentMethodsReply) ProtoReflect added in v0.1.5

func (*GetCryptoCurrencyPaymentMethodsReply) Reset added in v0.1.5

func (*GetCryptoCurrencyPaymentMethodsReply) String added in v0.1.5

type GetCryptoCurrencyPaymentMethodsRequest added in v0.1.5

type GetCryptoCurrencyPaymentMethodsRequest struct {
	// contains filtered or unexported fields
}

func (*GetCryptoCurrencyPaymentMethodsRequest) Descriptor deprecated added in v0.1.5

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

Deprecated: Use GetCryptoCurrencyPaymentMethodsRequest.ProtoReflect.Descriptor instead.

func (*GetCryptoCurrencyPaymentMethodsRequest) ProtoMessage added in v0.1.5

func (*GetCryptoCurrencyPaymentMethodsRequest) ProtoReflect added in v0.1.5

func (*GetCryptoCurrencyPaymentMethodsRequest) Reset added in v0.1.5

func (*GetCryptoCurrencyPaymentMethodsRequest) String added in v0.1.5

type GetDaoStateHashesRequest added in v0.1.4

type GetDaoStateHashesRequest struct {
	Height int32 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Nonce  int32 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDaoStateHashesRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetDaoStateHashesRequest.ProtoReflect.Descriptor instead.

func (*GetDaoStateHashesRequest) GetHeight added in v0.1.4

func (x *GetDaoStateHashesRequest) GetHeight() int32

func (*GetDaoStateHashesRequest) GetNonce added in v0.1.4

func (x *GetDaoStateHashesRequest) GetNonce() int32

func (*GetDaoStateHashesRequest) ProtoMessage added in v0.1.4

func (*GetDaoStateHashesRequest) ProtoMessage()

func (*GetDaoStateHashesRequest) ProtoReflect added in v0.1.4

func (x *GetDaoStateHashesRequest) ProtoReflect() protoreflect.Message

func (*GetDaoStateHashesRequest) Reset added in v0.1.4

func (x *GetDaoStateHashesRequest) Reset()

func (*GetDaoStateHashesRequest) String added in v0.1.4

func (x *GetDaoStateHashesRequest) String() string

type GetDaoStateHashesResponse added in v0.1.4

type GetDaoStateHashesResponse struct {
	StateHashes  []*DaoStateHash `protobuf:"bytes,1,rep,name=state_hashes,json=stateHashes,proto3" json:"state_hashes,omitempty"`
	RequestNonce int32           `protobuf:"varint,2,opt,name=request_nonce,json=requestNonce,proto3" json:"request_nonce,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDaoStateHashesResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetDaoStateHashesResponse.ProtoReflect.Descriptor instead.

func (*GetDaoStateHashesResponse) GetRequestNonce added in v0.1.4

func (x *GetDaoStateHashesResponse) GetRequestNonce() int32

func (*GetDaoStateHashesResponse) GetStateHashes added in v0.1.4

func (x *GetDaoStateHashesResponse) GetStateHashes() []*DaoStateHash

func (*GetDaoStateHashesResponse) ProtoMessage added in v0.1.4

func (*GetDaoStateHashesResponse) ProtoMessage()

func (*GetDaoStateHashesResponse) ProtoReflect added in v0.1.4

func (*GetDaoStateHashesResponse) Reset added in v0.1.4

func (x *GetDaoStateHashesResponse) Reset()

func (*GetDaoStateHashesResponse) String added in v0.1.4

func (x *GetDaoStateHashesResponse) String() string

type GetDataResponse added in v0.1.4

type GetDataResponse struct {
	RequestNonce                   int32                        `protobuf:"varint,1,opt,name=request_nonce,json=requestNonce,proto3" json:"request_nonce,omitempty"`
	IsGetUpdatedDataResponse       bool                         `` /* 140-byte string literal not displayed */
	DataSet                        []*StorageEntryWrapper       `protobuf:"bytes,3,rep,name=data_set,json=dataSet,proto3" json:"data_set,omitempty"`
	SupportedCapabilities          []int32                      `` /* 132-byte string literal not displayed */
	PersistableNetworkPayloadItems []*PersistableNetworkPayload `` /* 155-byte string literal not displayed */
	WasTruncated                   bool                         `protobuf:"varint,6,opt,name=was_truncated,json=wasTruncated,proto3" json:"was_truncated,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDataResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetDataResponse.ProtoReflect.Descriptor instead.

func (*GetDataResponse) GetDataSet added in v0.1.4

func (x *GetDataResponse) GetDataSet() []*StorageEntryWrapper

func (*GetDataResponse) GetIsGetUpdatedDataResponse added in v0.1.4

func (x *GetDataResponse) GetIsGetUpdatedDataResponse() bool

func (*GetDataResponse) GetPersistableNetworkPayloadItems added in v0.1.4

func (x *GetDataResponse) GetPersistableNetworkPayloadItems() []*PersistableNetworkPayload

func (*GetDataResponse) GetRequestNonce added in v0.1.4

func (x *GetDataResponse) GetRequestNonce() int32

func (*GetDataResponse) GetSupportedCapabilities added in v0.1.4

func (x *GetDataResponse) GetSupportedCapabilities() []int32

func (*GetDataResponse) GetWasTruncated added in v0.1.10

func (x *GetDataResponse) GetWasTruncated() bool

func (*GetDataResponse) ProtoMessage added in v0.1.4

func (*GetDataResponse) ProtoMessage()

func (*GetDataResponse) ProtoReflect added in v0.1.4

func (x *GetDataResponse) ProtoReflect() protoreflect.Message

func (*GetDataResponse) Reset added in v0.1.4

func (x *GetDataResponse) Reset()

func (*GetDataResponse) String added in v0.1.4

func (x *GetDataResponse) String() string

type GetFundingAddressesReply added in v0.1.4

type GetFundingAddressesReply struct {
	AddressBalanceInfo []*AddressBalanceInfo `protobuf:"bytes,1,rep,name=address_balance_info,json=addressBalanceInfo,proto3" json:"address_balance_info,omitempty"` // The list of BTC wallet addresses with their balances.
	// contains filtered or unexported fields
}

func (*GetFundingAddressesReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetFundingAddressesReply.ProtoReflect.Descriptor instead.

func (*GetFundingAddressesReply) GetAddressBalanceInfo added in v0.1.4

func (x *GetFundingAddressesReply) GetAddressBalanceInfo() []*AddressBalanceInfo

func (*GetFundingAddressesReply) ProtoMessage added in v0.1.4

func (*GetFundingAddressesReply) ProtoMessage()

func (*GetFundingAddressesReply) ProtoReflect added in v0.1.4

func (x *GetFundingAddressesReply) ProtoReflect() protoreflect.Message

func (*GetFundingAddressesReply) Reset added in v0.1.4

func (x *GetFundingAddressesReply) Reset()

func (*GetFundingAddressesReply) String added in v0.1.4

func (x *GetFundingAddressesReply) String() string

type GetFundingAddressesRequest added in v0.1.4

type GetFundingAddressesRequest struct {
	// contains filtered or unexported fields
}

func (*GetFundingAddressesRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetFundingAddressesRequest.ProtoReflect.Descriptor instead.

func (*GetFundingAddressesRequest) ProtoMessage added in v0.1.4

func (*GetFundingAddressesRequest) ProtoMessage()

func (*GetFundingAddressesRequest) ProtoReflect added in v0.1.4

func (*GetFundingAddressesRequest) Reset added in v0.1.4

func (x *GetFundingAddressesRequest) Reset()

func (*GetFundingAddressesRequest) String added in v0.1.4

func (x *GetFundingAddressesRequest) String() string

type GetInventoryRequest added in v0.1.4

type GetInventoryRequest struct {
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*GetInventoryRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetInventoryRequest.ProtoReflect.Descriptor instead.

func (*GetInventoryRequest) GetVersion added in v0.1.4

func (x *GetInventoryRequest) GetVersion() string

func (*GetInventoryRequest) ProtoMessage added in v0.1.4

func (*GetInventoryRequest) ProtoMessage()

func (*GetInventoryRequest) ProtoReflect added in v0.1.4

func (x *GetInventoryRequest) ProtoReflect() protoreflect.Message

func (*GetInventoryRequest) Reset added in v0.1.4

func (x *GetInventoryRequest) Reset()

func (*GetInventoryRequest) String added in v0.1.4

func (x *GetInventoryRequest) String() string

type GetInventoryResponse added in v0.1.4

type GetInventoryResponse struct {
	Inventory map[string]string `` /* 159-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetInventoryResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetInventoryResponse.ProtoReflect.Descriptor instead.

func (*GetInventoryResponse) GetInventory added in v0.1.4

func (x *GetInventoryResponse) GetInventory() map[string]string

func (*GetInventoryResponse) ProtoMessage added in v0.1.4

func (*GetInventoryResponse) ProtoMessage()

func (*GetInventoryResponse) ProtoReflect added in v0.1.4

func (x *GetInventoryResponse) ProtoReflect() protoreflect.Message

func (*GetInventoryResponse) Reset added in v0.1.4

func (x *GetInventoryResponse) Reset()

func (*GetInventoryResponse) String added in v0.1.4

func (x *GetInventoryResponse) String() string

type GetMethodHelpReply added in v0.1.4

type GetMethodHelpReply struct {
	MethodHelp string `protobuf:"bytes,1,opt,name=method_help,json=methodHelp,proto3" json:"method_help,omitempty"` // The man page for the CLI command.
	// contains filtered or unexported fields
}

func (*GetMethodHelpReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetMethodHelpReply.ProtoReflect.Descriptor instead.

func (*GetMethodHelpReply) GetMethodHelp added in v0.1.4

func (x *GetMethodHelpReply) GetMethodHelp() string

func (*GetMethodHelpReply) ProtoMessage added in v0.1.4

func (*GetMethodHelpReply) ProtoMessage()

func (*GetMethodHelpReply) ProtoReflect added in v0.1.4

func (x *GetMethodHelpReply) ProtoReflect() protoreflect.Message

func (*GetMethodHelpReply) Reset added in v0.1.4

func (x *GetMethodHelpReply) Reset()

func (*GetMethodHelpReply) String added in v0.1.4

func (x *GetMethodHelpReply) String() string

type GetMethodHelpRequest added in v0.1.4

type GetMethodHelpRequest struct {
	MethodName string `protobuf:"bytes,1,opt,name=method_name,json=methodName,proto3" json:"method_name,omitempty"` // The CLI command name.
	// contains filtered or unexported fields
}

func (*GetMethodHelpRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetMethodHelpRequest.ProtoReflect.Descriptor instead.

func (*GetMethodHelpRequest) GetMethodName added in v0.1.4

func (x *GetMethodHelpRequest) GetMethodName() string

func (*GetMethodHelpRequest) ProtoMessage added in v0.1.4

func (*GetMethodHelpRequest) ProtoMessage()

func (*GetMethodHelpRequest) ProtoReflect added in v0.1.4

func (x *GetMethodHelpRequest) ProtoReflect() protoreflect.Message

func (*GetMethodHelpRequest) Reset added in v0.1.4

func (x *GetMethodHelpRequest) Reset()

func (*GetMethodHelpRequest) String added in v0.1.4

func (x *GetMethodHelpRequest) String() string

type GetMyBsqSwapOfferReply added in v0.1.6

type GetMyBsqSwapOfferReply struct {
	BsqSwapOffer *OfferInfo `protobuf:"bytes,1,opt,name=bsq_swap_offer,json=bsqSwapOffer,proto3" json:"bsq_swap_offer,omitempty"` // The returned BSQ swap offer.
	// contains filtered or unexported fields
}

func (*GetMyBsqSwapOfferReply) Descriptor deprecated added in v0.1.6

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

Deprecated: Use GetMyBsqSwapOfferReply.ProtoReflect.Descriptor instead.

func (*GetMyBsqSwapOfferReply) GetBsqSwapOffer added in v0.1.6

func (x *GetMyBsqSwapOfferReply) GetBsqSwapOffer() *OfferInfo

func (*GetMyBsqSwapOfferReply) ProtoMessage added in v0.1.6

func (*GetMyBsqSwapOfferReply) ProtoMessage()

func (*GetMyBsqSwapOfferReply) ProtoReflect added in v0.1.6

func (x *GetMyBsqSwapOfferReply) ProtoReflect() protoreflect.Message

func (*GetMyBsqSwapOfferReply) Reset added in v0.1.6

func (x *GetMyBsqSwapOfferReply) Reset()

func (*GetMyBsqSwapOfferReply) String added in v0.1.6

func (x *GetMyBsqSwapOfferReply) String() string

type GetMyBsqSwapOffersReply added in v0.1.6

type GetMyBsqSwapOffersReply struct {
	BsqSwapOffers []*OfferInfo `protobuf:"bytes,1,rep,name=bsq_swap_offers,json=bsqSwapOffers,proto3" json:"bsq_swap_offers,omitempty"` // The returned list of user's open BSQ swap offers.
	// contains filtered or unexported fields
}

func (*GetMyBsqSwapOffersReply) Descriptor deprecated added in v0.1.6

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

Deprecated: Use GetMyBsqSwapOffersReply.ProtoReflect.Descriptor instead.

func (*GetMyBsqSwapOffersReply) GetBsqSwapOffers added in v0.1.6

func (x *GetMyBsqSwapOffersReply) GetBsqSwapOffers() []*OfferInfo

func (*GetMyBsqSwapOffersReply) ProtoMessage added in v0.1.6

func (*GetMyBsqSwapOffersReply) ProtoMessage()

func (*GetMyBsqSwapOffersReply) ProtoReflect added in v0.1.6

func (x *GetMyBsqSwapOffersReply) ProtoReflect() protoreflect.Message

func (*GetMyBsqSwapOffersReply) Reset added in v0.1.6

func (x *GetMyBsqSwapOffersReply) Reset()

func (*GetMyBsqSwapOffersReply) String added in v0.1.6

func (x *GetMyBsqSwapOffersReply) String() string

type GetMyOfferReply added in v0.1.4

type GetMyOfferReply struct {
	Offer *OfferInfo `protobuf:"bytes,1,opt,name=offer,proto3" json:"offer,omitempty"` // The returned v1 protocol offer.
	// contains filtered or unexported fields
}

Deprecated with rpc method GetMyOffer since 27-Dec-2021 (v1.8.0).

func (*GetMyOfferReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetMyOfferReply.ProtoReflect.Descriptor instead.

func (*GetMyOfferReply) GetOffer added in v0.1.4

func (x *GetMyOfferReply) GetOffer() *OfferInfo

func (*GetMyOfferReply) ProtoMessage added in v0.1.4

func (*GetMyOfferReply) ProtoMessage()

func (*GetMyOfferReply) ProtoReflect added in v0.1.4

func (x *GetMyOfferReply) ProtoReflect() protoreflect.Message

func (*GetMyOfferReply) Reset added in v0.1.4

func (x *GetMyOfferReply) Reset()

func (*GetMyOfferReply) String added in v0.1.4

func (x *GetMyOfferReply) String() string

type GetMyOfferRequest added in v0.1.4

type GetMyOfferRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // The offer's unique identifier.
	// contains filtered or unexported fields
}

Deprecated with rpc method GetMyOffer since 27-Dec-2021 (v1.8.0).

func (*GetMyOfferRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetMyOfferRequest.ProtoReflect.Descriptor instead.

func (*GetMyOfferRequest) GetId added in v0.1.4

func (x *GetMyOfferRequest) GetId() string

func (*GetMyOfferRequest) ProtoMessage added in v0.1.4

func (*GetMyOfferRequest) ProtoMessage()

func (*GetMyOfferRequest) ProtoReflect added in v0.1.4

func (x *GetMyOfferRequest) ProtoReflect() protoreflect.Message

func (*GetMyOfferRequest) Reset added in v0.1.4

func (x *GetMyOfferRequest) Reset()

func (*GetMyOfferRequest) String added in v0.1.4

func (x *GetMyOfferRequest) String() string

type GetMyOffersReply added in v0.1.4

type GetMyOffersReply struct {
	Offers []*OfferInfo `protobuf:"bytes,1,rep,name=offers,proto3" json:"offers,omitempty"` // The returned list of user's open offers.
	// contains filtered or unexported fields
}

func (*GetMyOffersReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetMyOffersReply.ProtoReflect.Descriptor instead.

func (*GetMyOffersReply) GetOffers added in v0.1.4

func (x *GetMyOffersReply) GetOffers() []*OfferInfo

func (*GetMyOffersReply) ProtoMessage added in v0.1.4

func (*GetMyOffersReply) ProtoMessage()

func (*GetMyOffersReply) ProtoReflect added in v0.1.4

func (x *GetMyOffersReply) ProtoReflect() protoreflect.Message

func (*GetMyOffersReply) Reset added in v0.1.4

func (x *GetMyOffersReply) Reset()

func (*GetMyOffersReply) String added in v0.1.4

func (x *GetMyOffersReply) String() string

type GetMyOffersRequest added in v0.1.4

type GetMyOffersRequest struct {
	Direction    string `protobuf:"bytes,1,opt,name=direction,proto3" json:"direction,omitempty"`                           // The offers' BUY (BTC) or SELL (BTC) direction.
	CurrencyCode string `protobuf:"bytes,2,opt,name=currency_code,json=currencyCode,proto3" json:"currency_code,omitempty"` // The offer's fiat or altcoin currency code.
	// contains filtered or unexported fields
}

func (*GetMyOffersRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetMyOffersRequest.ProtoReflect.Descriptor instead.

func (*GetMyOffersRequest) GetCurrencyCode added in v0.1.4

func (x *GetMyOffersRequest) GetCurrencyCode() string

func (*GetMyOffersRequest) GetDirection added in v0.1.4

func (x *GetMyOffersRequest) GetDirection() string

func (*GetMyOffersRequest) ProtoMessage added in v0.1.4

func (*GetMyOffersRequest) ProtoMessage()

func (*GetMyOffersRequest) ProtoReflect added in v0.1.4

func (x *GetMyOffersRequest) ProtoReflect() protoreflect.Message

func (*GetMyOffersRequest) Reset added in v0.1.4

func (x *GetMyOffersRequest) Reset()

func (*GetMyOffersRequest) String added in v0.1.4

func (x *GetMyOffersRequest) String() string

type GetNetworkReply added in v0.1.10

type GetNetworkReply struct {
	Network string `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"` // The BTC network name (mainnet, testnet3, or regtest).
	// contains filtered or unexported fields
}

func (*GetNetworkReply) Descriptor deprecated added in v0.1.10

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

Deprecated: Use GetNetworkReply.ProtoReflect.Descriptor instead.

func (*GetNetworkReply) GetNetwork added in v0.1.10

func (x *GetNetworkReply) GetNetwork() string

func (*GetNetworkReply) ProtoMessage added in v0.1.10

func (*GetNetworkReply) ProtoMessage()

func (*GetNetworkReply) ProtoReflect added in v0.1.10

func (x *GetNetworkReply) ProtoReflect() protoreflect.Message

func (*GetNetworkReply) Reset added in v0.1.10

func (x *GetNetworkReply) Reset()

func (*GetNetworkReply) String added in v0.1.10

func (x *GetNetworkReply) String() string

type GetNetworkRequest added in v0.1.10

type GetNetworkRequest struct {
	// contains filtered or unexported fields
}

func (*GetNetworkRequest) Descriptor deprecated added in v0.1.10

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

Deprecated: Use GetNetworkRequest.ProtoReflect.Descriptor instead.

func (*GetNetworkRequest) ProtoMessage added in v0.1.10

func (*GetNetworkRequest) ProtoMessage()

func (*GetNetworkRequest) ProtoReflect added in v0.1.10

func (x *GetNetworkRequest) ProtoReflect() protoreflect.Message

func (*GetNetworkRequest) Reset added in v0.1.10

func (x *GetNetworkRequest) Reset()

func (*GetNetworkRequest) String added in v0.1.10

func (x *GetNetworkRequest) String() string

type GetOfferCategoryReply added in v0.1.9

type GetOfferCategoryReply struct {
	OfferCategory GetOfferCategoryReply_OfferCategory `` /* 162-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetOfferCategoryReply) Descriptor deprecated added in v0.1.9

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

Deprecated: Use GetOfferCategoryReply.ProtoReflect.Descriptor instead.

func (*GetOfferCategoryReply) GetOfferCategory added in v0.1.9

func (*GetOfferCategoryReply) ProtoMessage added in v0.1.9

func (*GetOfferCategoryReply) ProtoMessage()

func (*GetOfferCategoryReply) ProtoReflect added in v0.1.9

func (x *GetOfferCategoryReply) ProtoReflect() protoreflect.Message

func (*GetOfferCategoryReply) Reset added in v0.1.9

func (x *GetOfferCategoryReply) Reset()

func (*GetOfferCategoryReply) String added in v0.1.9

func (x *GetOfferCategoryReply) String() string

type GetOfferCategoryReply_OfferCategory added in v0.1.9

type GetOfferCategoryReply_OfferCategory int32
const (
	GetOfferCategoryReply_UNKNOWN  GetOfferCategoryReply_OfferCategory = 0 // An invalid offer category probably indicates a software bug.
	GetOfferCategoryReply_FIAT     GetOfferCategoryReply_OfferCategory = 1 // Indicates offer is to BUY or SELL BTC with a fiat currency.
	GetOfferCategoryReply_ALTCOIN  GetOfferCategoryReply_OfferCategory = 2 // Indicates offer is to BUY or SELL BTC with an altcoin.
	GetOfferCategoryReply_BSQ_SWAP GetOfferCategoryReply_OfferCategory = 3 // Indicates offer is to swap BTC for BSQ.
)

func (GetOfferCategoryReply_OfferCategory) Descriptor added in v0.1.9

func (GetOfferCategoryReply_OfferCategory) Enum added in v0.1.9

func (GetOfferCategoryReply_OfferCategory) EnumDescriptor deprecated added in v0.1.9

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

Deprecated: Use GetOfferCategoryReply_OfferCategory.Descriptor instead.

func (GetOfferCategoryReply_OfferCategory) Number added in v0.1.9

func (GetOfferCategoryReply_OfferCategory) String added in v0.1.9

func (GetOfferCategoryReply_OfferCategory) Type added in v0.1.9

type GetOfferCategoryRequest added in v0.1.9

type GetOfferCategoryRequest struct {
	Id        string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`                                   // The offer's unique identifier.
	IsMyOffer bool   `protobuf:"varint,2,opt,name=is_my_offer,json=isMyOffer,proto3" json:"is_my_offer,omitempty"` // Whether the offer was created by the user or not.
	// contains filtered or unexported fields
}

func (*GetOfferCategoryRequest) Descriptor deprecated added in v0.1.9

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

Deprecated: Use GetOfferCategoryRequest.ProtoReflect.Descriptor instead.

func (*GetOfferCategoryRequest) GetId added in v0.1.9

func (x *GetOfferCategoryRequest) GetId() string

func (*GetOfferCategoryRequest) GetIsMyOffer added in v0.1.9

func (x *GetOfferCategoryRequest) GetIsMyOffer() bool

func (*GetOfferCategoryRequest) ProtoMessage added in v0.1.9

func (*GetOfferCategoryRequest) ProtoMessage()

func (*GetOfferCategoryRequest) ProtoReflect added in v0.1.9

func (x *GetOfferCategoryRequest) ProtoReflect() protoreflect.Message

func (*GetOfferCategoryRequest) Reset added in v0.1.9

func (x *GetOfferCategoryRequest) Reset()

func (*GetOfferCategoryRequest) String added in v0.1.9

func (x *GetOfferCategoryRequest) String() string

type GetOfferReply added in v0.1.4

type GetOfferReply struct {
	Offer *OfferInfo `protobuf:"bytes,1,opt,name=offer,proto3" json:"offer,omitempty"` // The returned v1 protocol offer.
	// contains filtered or unexported fields
}

func (*GetOfferReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetOfferReply.ProtoReflect.Descriptor instead.

func (*GetOfferReply) GetOffer added in v0.1.4

func (x *GetOfferReply) GetOffer() *OfferInfo

func (*GetOfferReply) ProtoMessage added in v0.1.4

func (*GetOfferReply) ProtoMessage()

func (*GetOfferReply) ProtoReflect added in v0.1.4

func (x *GetOfferReply) ProtoReflect() protoreflect.Message

func (*GetOfferReply) Reset added in v0.1.4

func (x *GetOfferReply) Reset()

func (*GetOfferReply) String added in v0.1.4

func (x *GetOfferReply) String() string

type GetOfferRequest added in v0.1.4

type GetOfferRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // The offer's unique identifier.
	// contains filtered or unexported fields
}

func (*GetOfferRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetOfferRequest.ProtoReflect.Descriptor instead.

func (*GetOfferRequest) GetId added in v0.1.4

func (x *GetOfferRequest) GetId() string

func (*GetOfferRequest) ProtoMessage added in v0.1.4

func (*GetOfferRequest) ProtoMessage()

func (*GetOfferRequest) ProtoReflect added in v0.1.4

func (x *GetOfferRequest) ProtoReflect() protoreflect.Message

func (*GetOfferRequest) Reset added in v0.1.4

func (x *GetOfferRequest) Reset()

func (*GetOfferRequest) String added in v0.1.4

func (x *GetOfferRequest) String() string

type GetOffersReply added in v0.1.4

type GetOffersReply struct {
	Offers []*OfferInfo `protobuf:"bytes,1,rep,name=offers,proto3" json:"offers,omitempty"` // The returned list of available offers.
	// contains filtered or unexported fields
}

func (*GetOffersReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetOffersReply.ProtoReflect.Descriptor instead.

func (*GetOffersReply) GetOffers added in v0.1.4

func (x *GetOffersReply) GetOffers() []*OfferInfo

func (*GetOffersReply) ProtoMessage added in v0.1.4

func (*GetOffersReply) ProtoMessage()

func (*GetOffersReply) ProtoReflect added in v0.1.4

func (x *GetOffersReply) ProtoReflect() protoreflect.Message

func (*GetOffersReply) Reset added in v0.1.4

func (x *GetOffersReply) Reset()

func (*GetOffersReply) String added in v0.1.4

func (x *GetOffersReply) String() string

type GetOffersRequest added in v0.1.4

type GetOffersRequest struct {
	Direction    string `protobuf:"bytes,1,opt,name=direction,proto3" json:"direction,omitempty"`                           // The offer's BUY (BTC) or SELL (BTC) direction.
	CurrencyCode string `protobuf:"bytes,2,opt,name=currency_code,json=currencyCode,proto3" json:"currency_code,omitempty"` // The offer's fiat or altcoin currency code.
	All          bool   `protobuf:"varint,3,opt,name=all,proto3" json:"all,omitempty"`                                      // Return all or only these matching my account
	// contains filtered or unexported fields
}

func (*GetOffersRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetOffersRequest.ProtoReflect.Descriptor instead.

func (*GetOffersRequest) GetAll added in v0.1.10

func (x *GetOffersRequest) GetAll() bool

func (*GetOffersRequest) GetCurrencyCode added in v0.1.4

func (x *GetOffersRequest) GetCurrencyCode() string

func (*GetOffersRequest) GetDirection added in v0.1.4

func (x *GetOffersRequest) GetDirection() string

func (*GetOffersRequest) ProtoMessage added in v0.1.4

func (*GetOffersRequest) ProtoMessage()

func (*GetOffersRequest) ProtoReflect added in v0.1.4

func (x *GetOffersRequest) ProtoReflect() protoreflect.Message

func (*GetOffersRequest) Reset added in v0.1.4

func (x *GetOffersRequest) Reset()

func (*GetOffersRequest) String added in v0.1.4

func (x *GetOffersRequest) String() string

type GetPaymentAccountFormReply added in v0.1.4

type GetPaymentAccountFormReply struct {

	// An empty payment account json form to be filled out and passed to rpc method CreatePaymentAccount.
	PaymentAccountFormJson string `` /* 131-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetPaymentAccountFormReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetPaymentAccountFormReply.ProtoReflect.Descriptor instead.

func (*GetPaymentAccountFormReply) GetPaymentAccountFormJson added in v0.1.4

func (x *GetPaymentAccountFormReply) GetPaymentAccountFormJson() string

func (*GetPaymentAccountFormReply) ProtoMessage added in v0.1.4

func (*GetPaymentAccountFormReply) ProtoMessage()

func (*GetPaymentAccountFormReply) ProtoReflect added in v0.1.4

func (*GetPaymentAccountFormReply) Reset added in v0.1.4

func (x *GetPaymentAccountFormReply) Reset()

func (*GetPaymentAccountFormReply) String added in v0.1.4

func (x *GetPaymentAccountFormReply) String() string

type GetPaymentAccountFormRequest added in v0.1.4

type GetPaymentAccountFormRequest struct {
	PaymentMethodId string `protobuf:"bytes,1,opt,name=payment_method_id,json=paymentMethodId,proto3" json:"payment_method_id,omitempty"` // Payment method id determining content of the requested payment account form.
	// contains filtered or unexported fields
}

func (*GetPaymentAccountFormRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetPaymentAccountFormRequest.ProtoReflect.Descriptor instead.

func (*GetPaymentAccountFormRequest) GetPaymentMethodId added in v0.1.4

func (x *GetPaymentAccountFormRequest) GetPaymentMethodId() string

func (*GetPaymentAccountFormRequest) ProtoMessage added in v0.1.4

func (*GetPaymentAccountFormRequest) ProtoMessage()

func (*GetPaymentAccountFormRequest) ProtoReflect added in v0.1.4

func (*GetPaymentAccountFormRequest) Reset added in v0.1.4

func (x *GetPaymentAccountFormRequest) Reset()

func (*GetPaymentAccountFormRequest) String added in v0.1.4

type GetPaymentAccountsReply added in v0.1.4

type GetPaymentAccountsReply struct {
	PaymentAccounts []*PaymentAccount `protobuf:"bytes,1,rep,name=payment_accounts,json=paymentAccounts,proto3" json:"payment_accounts,omitempty"` // All user's saved payment accounts.
	// contains filtered or unexported fields
}

func (*GetPaymentAccountsReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetPaymentAccountsReply.ProtoReflect.Descriptor instead.

func (*GetPaymentAccountsReply) GetPaymentAccounts added in v0.1.4

func (x *GetPaymentAccountsReply) GetPaymentAccounts() []*PaymentAccount

func (*GetPaymentAccountsReply) ProtoMessage added in v0.1.4

func (*GetPaymentAccountsReply) ProtoMessage()

func (*GetPaymentAccountsReply) ProtoReflect added in v0.1.4

func (x *GetPaymentAccountsReply) ProtoReflect() protoreflect.Message

func (*GetPaymentAccountsReply) Reset added in v0.1.4

func (x *GetPaymentAccountsReply) Reset()

func (*GetPaymentAccountsReply) String added in v0.1.4

func (x *GetPaymentAccountsReply) String() string

type GetPaymentAccountsRequest added in v0.1.4

type GetPaymentAccountsRequest struct {
	// contains filtered or unexported fields
}

func (*GetPaymentAccountsRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetPaymentAccountsRequest.ProtoReflect.Descriptor instead.

func (*GetPaymentAccountsRequest) ProtoMessage added in v0.1.4

func (*GetPaymentAccountsRequest) ProtoMessage()

func (*GetPaymentAccountsRequest) ProtoReflect added in v0.1.4

func (*GetPaymentAccountsRequest) Reset added in v0.1.4

func (x *GetPaymentAccountsRequest) Reset()

func (*GetPaymentAccountsRequest) String added in v0.1.4

func (x *GetPaymentAccountsRequest) String() string

type GetPaymentMethodsReply added in v0.1.4

type GetPaymentMethodsReply struct {
	PaymentMethods []*PaymentMethod `protobuf:"bytes,1,rep,name=payment_methods,json=paymentMethods,proto3" json:"payment_methods,omitempty"` // Ids of all supported Bisq fiat payment methods.
	// contains filtered or unexported fields
}

func (*GetPaymentMethodsReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetPaymentMethodsReply.ProtoReflect.Descriptor instead.

func (*GetPaymentMethodsReply) GetPaymentMethods added in v0.1.4

func (x *GetPaymentMethodsReply) GetPaymentMethods() []*PaymentMethod

func (*GetPaymentMethodsReply) ProtoMessage added in v0.1.4

func (*GetPaymentMethodsReply) ProtoMessage()

func (*GetPaymentMethodsReply) ProtoReflect added in v0.1.4

func (x *GetPaymentMethodsReply) ProtoReflect() protoreflect.Message

func (*GetPaymentMethodsReply) Reset added in v0.1.4

func (x *GetPaymentMethodsReply) Reset()

func (*GetPaymentMethodsReply) String added in v0.1.4

func (x *GetPaymentMethodsReply) String() string

type GetPaymentMethodsRequest added in v0.1.4

type GetPaymentMethodsRequest struct {
	// contains filtered or unexported fields
}

func (*GetPaymentMethodsRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetPaymentMethodsRequest.ProtoReflect.Descriptor instead.

func (*GetPaymentMethodsRequest) ProtoMessage added in v0.1.4

func (*GetPaymentMethodsRequest) ProtoMessage()

func (*GetPaymentMethodsRequest) ProtoReflect added in v0.1.4

func (x *GetPaymentMethodsRequest) ProtoReflect() protoreflect.Message

func (*GetPaymentMethodsRequest) Reset added in v0.1.4

func (x *GetPaymentMethodsRequest) Reset()

func (*GetPaymentMethodsRequest) String added in v0.1.4

func (x *GetPaymentMethodsRequest) String() string

type GetPeersRequest added in v0.1.4

type GetPeersRequest struct {
	SenderNodeAddress     *NodeAddress `protobuf:"bytes,1,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Nonce                 int32        `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	SupportedCapabilities []int32      `` /* 132-byte string literal not displayed */
	ReportedPeers         []*Peer      `protobuf:"bytes,4,rep,name=reported_peers,json=reportedPeers,proto3" json:"reported_peers,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPeersRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetPeersRequest.ProtoReflect.Descriptor instead.

func (*GetPeersRequest) GetNonce added in v0.1.4

func (x *GetPeersRequest) GetNonce() int32

func (*GetPeersRequest) GetReportedPeers added in v0.1.4

func (x *GetPeersRequest) GetReportedPeers() []*Peer

func (*GetPeersRequest) GetSenderNodeAddress added in v0.1.4

func (x *GetPeersRequest) GetSenderNodeAddress() *NodeAddress

func (*GetPeersRequest) GetSupportedCapabilities added in v0.1.4

func (x *GetPeersRequest) GetSupportedCapabilities() []int32

func (*GetPeersRequest) ProtoMessage added in v0.1.4

func (*GetPeersRequest) ProtoMessage()

func (*GetPeersRequest) ProtoReflect added in v0.1.4

func (x *GetPeersRequest) ProtoReflect() protoreflect.Message

func (*GetPeersRequest) Reset added in v0.1.4

func (x *GetPeersRequest) Reset()

func (*GetPeersRequest) String added in v0.1.4

func (x *GetPeersRequest) String() string

type GetPeersResponse added in v0.1.4

type GetPeersResponse struct {
	RequestNonce          int32   `protobuf:"varint,1,opt,name=request_nonce,json=requestNonce,proto3" json:"request_nonce,omitempty"`
	ReportedPeers         []*Peer `protobuf:"bytes,2,rep,name=reported_peers,json=reportedPeers,proto3" json:"reported_peers,omitempty"`
	SupportedCapabilities []int32 `` /* 132-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetPeersResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetPeersResponse.ProtoReflect.Descriptor instead.

func (*GetPeersResponse) GetReportedPeers added in v0.1.4

func (x *GetPeersResponse) GetReportedPeers() []*Peer

func (*GetPeersResponse) GetRequestNonce added in v0.1.4

func (x *GetPeersResponse) GetRequestNonce() int32

func (*GetPeersResponse) GetSupportedCapabilities added in v0.1.4

func (x *GetPeersResponse) GetSupportedCapabilities() []int32

func (*GetPeersResponse) ProtoMessage added in v0.1.4

func (*GetPeersResponse) ProtoMessage()

func (*GetPeersResponse) ProtoReflect added in v0.1.4

func (x *GetPeersResponse) ProtoReflect() protoreflect.Message

func (*GetPeersResponse) Reset added in v0.1.4

func (x *GetPeersResponse) Reset()

func (*GetPeersResponse) String added in v0.1.4

func (x *GetPeersResponse) String() string

type GetProposalStateHashesRequest added in v0.1.4

type GetProposalStateHashesRequest struct {
	Height int32 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Nonce  int32 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProposalStateHashesRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetProposalStateHashesRequest.ProtoReflect.Descriptor instead.

func (*GetProposalStateHashesRequest) GetHeight added in v0.1.4

func (x *GetProposalStateHashesRequest) GetHeight() int32

func (*GetProposalStateHashesRequest) GetNonce added in v0.1.4

func (x *GetProposalStateHashesRequest) GetNonce() int32

func (*GetProposalStateHashesRequest) ProtoMessage added in v0.1.4

func (*GetProposalStateHashesRequest) ProtoMessage()

func (*GetProposalStateHashesRequest) ProtoReflect added in v0.1.4

func (*GetProposalStateHashesRequest) Reset added in v0.1.4

func (x *GetProposalStateHashesRequest) Reset()

func (*GetProposalStateHashesRequest) String added in v0.1.4

type GetProposalStateHashesResponse added in v0.1.4

type GetProposalStateHashesResponse struct {
	StateHashes  []*ProposalStateHash `protobuf:"bytes,1,rep,name=state_hashes,json=stateHashes,proto3" json:"state_hashes,omitempty"`
	RequestNonce int32                `protobuf:"varint,2,opt,name=request_nonce,json=requestNonce,proto3" json:"request_nonce,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProposalStateHashesResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetProposalStateHashesResponse.ProtoReflect.Descriptor instead.

func (*GetProposalStateHashesResponse) GetRequestNonce added in v0.1.4

func (x *GetProposalStateHashesResponse) GetRequestNonce() int32

func (*GetProposalStateHashesResponse) GetStateHashes added in v0.1.4

func (x *GetProposalStateHashesResponse) GetStateHashes() []*ProposalStateHash

func (*GetProposalStateHashesResponse) ProtoMessage added in v0.1.4

func (*GetProposalStateHashesResponse) ProtoMessage()

func (*GetProposalStateHashesResponse) ProtoReflect added in v0.1.4

func (*GetProposalStateHashesResponse) Reset added in v0.1.4

func (x *GetProposalStateHashesResponse) Reset()

func (*GetProposalStateHashesResponse) String added in v0.1.4

type GetTradeReply added in v0.1.4

type GetTradeReply struct {
	Trade *TradeInfo `protobuf:"bytes,1,opt,name=trade,proto3" json:"trade,omitempty"` // The unique identifier of the trade.
	// contains filtered or unexported fields
}

func (*GetTradeReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetTradeReply.ProtoReflect.Descriptor instead.

func (*GetTradeReply) GetTrade added in v0.1.4

func (x *GetTradeReply) GetTrade() *TradeInfo

func (*GetTradeReply) ProtoMessage added in v0.1.4

func (*GetTradeReply) ProtoMessage()

func (*GetTradeReply) ProtoReflect added in v0.1.4

func (x *GetTradeReply) ProtoReflect() protoreflect.Message

func (*GetTradeReply) Reset added in v0.1.4

func (x *GetTradeReply) Reset()

func (*GetTradeReply) String added in v0.1.4

func (x *GetTradeReply) String() string

type GetTradeRequest added in v0.1.4

type GetTradeRequest struct {
	TradeId string `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"` // The unique identifier of the trade.
	// contains filtered or unexported fields
}

func (*GetTradeRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetTradeRequest.ProtoReflect.Descriptor instead.

func (*GetTradeRequest) GetTradeId added in v0.1.4

func (x *GetTradeRequest) GetTradeId() string

func (*GetTradeRequest) ProtoMessage added in v0.1.4

func (*GetTradeRequest) ProtoMessage()

func (*GetTradeRequest) ProtoReflect added in v0.1.4

func (x *GetTradeRequest) ProtoReflect() protoreflect.Message

func (*GetTradeRequest) Reset added in v0.1.4

func (x *GetTradeRequest) Reset()

func (*GetTradeRequest) String added in v0.1.4

func (x *GetTradeRequest) String() string

type GetTradesReply added in v0.1.9

type GetTradesReply struct {
	Trades []*TradeInfo `protobuf:"bytes,1,rep,name=trades,proto3" json:"trades,omitempty"` // All trades for GetTradesRequest.Category.
	// contains filtered or unexported fields
}

func (*GetTradesReply) Descriptor deprecated added in v0.1.9

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

Deprecated: Use GetTradesReply.ProtoReflect.Descriptor instead.

func (*GetTradesReply) GetTrades added in v0.1.9

func (x *GetTradesReply) GetTrades() []*TradeInfo

func (*GetTradesReply) ProtoMessage added in v0.1.9

func (*GetTradesReply) ProtoMessage()

func (*GetTradesReply) ProtoReflect added in v0.1.9

func (x *GetTradesReply) ProtoReflect() protoreflect.Message

func (*GetTradesReply) Reset added in v0.1.9

func (x *GetTradesReply) Reset()

func (*GetTradesReply) String added in v0.1.9

func (x *GetTradesReply) String() string

type GetTradesRequest added in v0.1.9

type GetTradesRequest struct {
	Category GetTradesRequest_Category `protobuf:"varint,1,opt,name=category,proto3,enum=io.bisq.protobuffer.GetTradesRequest_Category" json:"category,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTradesRequest) Descriptor deprecated added in v0.1.9

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

Deprecated: Use GetTradesRequest.ProtoReflect.Descriptor instead.

func (*GetTradesRequest) GetCategory added in v0.1.9

func (*GetTradesRequest) ProtoMessage added in v0.1.9

func (*GetTradesRequest) ProtoMessage()

func (*GetTradesRequest) ProtoReflect added in v0.1.9

func (x *GetTradesRequest) ProtoReflect() protoreflect.Message

func (*GetTradesRequest) Reset added in v0.1.9

func (x *GetTradesRequest) Reset()

func (*GetTradesRequest) String added in v0.1.9

func (x *GetTradesRequest) String() string

type GetTradesRequest_Category added in v0.1.9

type GetTradesRequest_Category int32

Rpc method GetTrades parameter determining what category of trade list is is being requested.

const (
	GetTradesRequest_OPEN   GetTradesRequest_Category = 0 // Get all currently open trades.
	GetTradesRequest_CLOSED GetTradesRequest_Category = 1 // Get all completed trades.
	GetTradesRequest_FAILED GetTradesRequest_Category = 2 // Get all failed trades.
)

func (GetTradesRequest_Category) Descriptor added in v0.1.9

func (GetTradesRequest_Category) Enum added in v0.1.9

func (GetTradesRequest_Category) EnumDescriptor deprecated added in v0.1.9

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

Deprecated: Use GetTradesRequest_Category.Descriptor instead.

func (GetTradesRequest_Category) Number added in v0.1.9

func (GetTradesRequest_Category) String added in v0.1.9

func (x GetTradesRequest_Category) String() string

func (GetTradesRequest_Category) Type added in v0.1.9

type GetTransactionReply added in v0.1.4

type GetTransactionReply struct {
	TxInfo *TxInfo `protobuf:"bytes,1,opt,name=tx_info,json=txInfo,proto3" json:"tx_info,omitempty"` // The summary of a bitcoin transaction.
	// contains filtered or unexported fields
}

func (*GetTransactionReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetTransactionReply.ProtoReflect.Descriptor instead.

func (*GetTransactionReply) GetTxInfo added in v0.1.4

func (x *GetTransactionReply) GetTxInfo() *TxInfo

func (*GetTransactionReply) ProtoMessage added in v0.1.4

func (*GetTransactionReply) ProtoMessage()

func (*GetTransactionReply) ProtoReflect added in v0.1.4

func (x *GetTransactionReply) ProtoReflect() protoreflect.Message

func (*GetTransactionReply) Reset added in v0.1.4

func (x *GetTransactionReply) Reset()

func (*GetTransactionReply) String added in v0.1.4

func (x *GetTransactionReply) String() string

type GetTransactionRequest added in v0.1.4

type GetTransactionRequest struct {
	TxId string `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTransactionRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetTransactionRequest.ProtoReflect.Descriptor instead.

func (*GetTransactionRequest) GetTxId added in v0.1.4

func (x *GetTransactionRequest) GetTxId() string

func (*GetTransactionRequest) ProtoMessage added in v0.1.4

func (*GetTransactionRequest) ProtoMessage()

func (*GetTransactionRequest) ProtoReflect added in v0.1.4

func (x *GetTransactionRequest) ProtoReflect() protoreflect.Message

func (*GetTransactionRequest) Reset added in v0.1.4

func (x *GetTransactionRequest) Reset()

func (*GetTransactionRequest) String added in v0.1.4

func (x *GetTransactionRequest) String() string

type GetTransactionsReply added in v0.1.10

type GetTransactionsReply struct {
	TxInfo []*TxInfo `protobuf:"bytes,1,rep,name=tx_info,json=txInfo,proto3" json:"tx_info,omitempty"` // List of Bitcoin transactions.
	// contains filtered or unexported fields
}

func (*GetTransactionsReply) Descriptor deprecated added in v0.1.10

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

Deprecated: Use GetTransactionsReply.ProtoReflect.Descriptor instead.

func (*GetTransactionsReply) GetTxInfo added in v0.1.10

func (x *GetTransactionsReply) GetTxInfo() []*TxInfo

func (*GetTransactionsReply) ProtoMessage added in v0.1.10

func (*GetTransactionsReply) ProtoMessage()

func (*GetTransactionsReply) ProtoReflect added in v0.1.10

func (x *GetTransactionsReply) ProtoReflect() protoreflect.Message

func (*GetTransactionsReply) Reset added in v0.1.10

func (x *GetTransactionsReply) Reset()

func (*GetTransactionsReply) String added in v0.1.10

func (x *GetTransactionsReply) String() string

type GetTransactionsRequest added in v0.1.10

type GetTransactionsRequest struct {
	// contains filtered or unexported fields
}

func (*GetTransactionsRequest) Descriptor deprecated added in v0.1.10

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

Deprecated: Use GetTransactionsRequest.ProtoReflect.Descriptor instead.

func (*GetTransactionsRequest) ProtoMessage added in v0.1.10

func (*GetTransactionsRequest) ProtoMessage()

func (*GetTransactionsRequest) ProtoReflect added in v0.1.10

func (x *GetTransactionsRequest) ProtoReflect() protoreflect.Message

func (*GetTransactionsRequest) Reset added in v0.1.10

func (x *GetTransactionsRequest) Reset()

func (*GetTransactionsRequest) String added in v0.1.10

func (x *GetTransactionsRequest) String() string

type GetTxFeeRateReply added in v0.1.4

type GetTxFeeRateReply struct {
	TxFeeRateInfo *TxFeeRateInfo `protobuf:"bytes,1,opt,name=tx_fee_rate_info,json=txFeeRateInfo,proto3" json:"tx_fee_rate_info,omitempty"` // The summary of the most recently available bitcoin transaction fee rates.
	// contains filtered or unexported fields
}

func (*GetTxFeeRateReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetTxFeeRateReply.ProtoReflect.Descriptor instead.

func (*GetTxFeeRateReply) GetTxFeeRateInfo added in v0.1.4

func (x *GetTxFeeRateReply) GetTxFeeRateInfo() *TxFeeRateInfo

func (*GetTxFeeRateReply) ProtoMessage added in v0.1.4

func (*GetTxFeeRateReply) ProtoMessage()

func (*GetTxFeeRateReply) ProtoReflect added in v0.1.4

func (x *GetTxFeeRateReply) ProtoReflect() protoreflect.Message

func (*GetTxFeeRateReply) Reset added in v0.1.4

func (x *GetTxFeeRateReply) Reset()

func (*GetTxFeeRateReply) String added in v0.1.4

func (x *GetTxFeeRateReply) String() string

type GetTxFeeRateRequest added in v0.1.4

type GetTxFeeRateRequest struct {
	// contains filtered or unexported fields
}

func (*GetTxFeeRateRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetTxFeeRateRequest.ProtoReflect.Descriptor instead.

func (*GetTxFeeRateRequest) ProtoMessage added in v0.1.4

func (*GetTxFeeRateRequest) ProtoMessage()

func (*GetTxFeeRateRequest) ProtoReflect added in v0.1.4

func (x *GetTxFeeRateRequest) ProtoReflect() protoreflect.Message

func (*GetTxFeeRateRequest) Reset added in v0.1.4

func (x *GetTxFeeRateRequest) Reset()

func (*GetTxFeeRateRequest) String added in v0.1.4

func (x *GetTxFeeRateRequest) String() string

type GetUnusedBsqAddressReply added in v0.1.4

type GetUnusedBsqAddressReply struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` // The BSQ wallet's unused address.
	// contains filtered or unexported fields
}

func (*GetUnusedBsqAddressReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetUnusedBsqAddressReply.ProtoReflect.Descriptor instead.

func (*GetUnusedBsqAddressReply) GetAddress added in v0.1.4

func (x *GetUnusedBsqAddressReply) GetAddress() string

func (*GetUnusedBsqAddressReply) ProtoMessage added in v0.1.4

func (*GetUnusedBsqAddressReply) ProtoMessage()

func (*GetUnusedBsqAddressReply) ProtoReflect added in v0.1.4

func (x *GetUnusedBsqAddressReply) ProtoReflect() protoreflect.Message

func (*GetUnusedBsqAddressReply) Reset added in v0.1.4

func (x *GetUnusedBsqAddressReply) Reset()

func (*GetUnusedBsqAddressReply) String added in v0.1.4

func (x *GetUnusedBsqAddressReply) String() string

type GetUnusedBsqAddressRequest added in v0.1.4

type GetUnusedBsqAddressRequest struct {
	// contains filtered or unexported fields
}

func (*GetUnusedBsqAddressRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetUnusedBsqAddressRequest.ProtoReflect.Descriptor instead.

func (*GetUnusedBsqAddressRequest) ProtoMessage added in v0.1.4

func (*GetUnusedBsqAddressRequest) ProtoMessage()

func (*GetUnusedBsqAddressRequest) ProtoReflect added in v0.1.4

func (*GetUnusedBsqAddressRequest) Reset added in v0.1.4

func (x *GetUnusedBsqAddressRequest) Reset()

func (*GetUnusedBsqAddressRequest) String added in v0.1.4

func (x *GetUnusedBsqAddressRequest) String() string

type GetUpdatedDataRequest added in v0.1.4

type GetUpdatedDataRequest struct {
	SenderNodeAddress *NodeAddress `protobuf:"bytes,1,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Nonce             int32        `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	ExcludedKeys      [][]byte     `protobuf:"bytes,3,rep,name=excluded_keys,json=excludedKeys,proto3" json:"excluded_keys,omitempty"`
	Version           string       `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUpdatedDataRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetUpdatedDataRequest.ProtoReflect.Descriptor instead.

func (*GetUpdatedDataRequest) GetExcludedKeys added in v0.1.4

func (x *GetUpdatedDataRequest) GetExcludedKeys() [][]byte

func (*GetUpdatedDataRequest) GetNonce added in v0.1.4

func (x *GetUpdatedDataRequest) GetNonce() int32

func (*GetUpdatedDataRequest) GetSenderNodeAddress added in v0.1.4

func (x *GetUpdatedDataRequest) GetSenderNodeAddress() *NodeAddress

func (*GetUpdatedDataRequest) GetVersion added in v0.1.4

func (x *GetUpdatedDataRequest) GetVersion() string

func (*GetUpdatedDataRequest) ProtoMessage added in v0.1.4

func (*GetUpdatedDataRequest) ProtoMessage()

func (*GetUpdatedDataRequest) ProtoReflect added in v0.1.4

func (x *GetUpdatedDataRequest) ProtoReflect() protoreflect.Message

func (*GetUpdatedDataRequest) Reset added in v0.1.4

func (x *GetUpdatedDataRequest) Reset()

func (*GetUpdatedDataRequest) String added in v0.1.4

func (x *GetUpdatedDataRequest) String() string

type GetVersionClient added in v0.1.4

type GetVersionClient interface {
	// Get the current Bisq version number.
	GetVersion(ctx context.Context, in *GetVersionRequest, opts ...grpc.CallOption) (*GetVersionReply, error)
}

GetVersionClient is the client API for GetVersion service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewGetVersionClient added in v0.1.4

func NewGetVersionClient(cc grpc.ClientConnInterface) GetVersionClient

type GetVersionReply added in v0.1.4

type GetVersionReply struct {
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"` // The version of the Bisq software release.
	// contains filtered or unexported fields
}

func (*GetVersionReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetVersionReply.ProtoReflect.Descriptor instead.

func (*GetVersionReply) GetVersion added in v0.1.4

func (x *GetVersionReply) GetVersion() string

func (*GetVersionReply) ProtoMessage added in v0.1.4

func (*GetVersionReply) ProtoMessage()

func (*GetVersionReply) ProtoReflect added in v0.1.4

func (x *GetVersionReply) ProtoReflect() protoreflect.Message

func (*GetVersionReply) Reset added in v0.1.4

func (x *GetVersionReply) Reset()

func (*GetVersionReply) String added in v0.1.4

func (x *GetVersionReply) String() string

type GetVersionRequest added in v0.1.4

type GetVersionRequest struct {
	// contains filtered or unexported fields
}

func (*GetVersionRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use GetVersionRequest.ProtoReflect.Descriptor instead.

func (*GetVersionRequest) ProtoMessage added in v0.1.4

func (*GetVersionRequest) ProtoMessage()

func (*GetVersionRequest) ProtoReflect added in v0.1.4

func (x *GetVersionRequest) ProtoReflect() protoreflect.Message

func (*GetVersionRequest) Reset added in v0.1.4

func (x *GetVersionRequest) Reset()

func (*GetVersionRequest) String added in v0.1.4

func (x *GetVersionRequest) String() string

type GetVersionServer added in v0.1.4

type GetVersionServer interface {
	// Get the current Bisq version number.
	GetVersion(context.Context, *GetVersionRequest) (*GetVersionReply, error)
	// contains filtered or unexported methods
}

GetVersionServer is the server API for GetVersion service. All implementations must embed UnimplementedGetVersionServer for forward compatibility

type HalCashAccountPayload added in v0.1.4

type HalCashAccountPayload struct {
	MobileNr string `protobuf:"bytes,1,opt,name=mobile_nr,json=mobileNr,proto3" json:"mobile_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*HalCashAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use HalCashAccountPayload.ProtoReflect.Descriptor instead.

func (*HalCashAccountPayload) GetMobileNr added in v0.1.4

func (x *HalCashAccountPayload) GetMobileNr() string

func (*HalCashAccountPayload) ProtoMessage added in v0.1.4

func (*HalCashAccountPayload) ProtoMessage()

func (*HalCashAccountPayload) ProtoReflect added in v0.1.4

func (x *HalCashAccountPayload) ProtoReflect() protoreflect.Message

func (*HalCashAccountPayload) Reset added in v0.1.4

func (x *HalCashAccountPayload) Reset()

func (*HalCashAccountPayload) String added in v0.1.4

func (x *HalCashAccountPayload) String() string

type HelpClient added in v0.1.4

type HelpClient interface {
	// Returns a CLI command man page.
	GetMethodHelp(ctx context.Context, in *GetMethodHelpRequest, opts ...grpc.CallOption) (*GetMethodHelpReply, error)
}

HelpClient is the client API for Help service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewHelpClient added in v0.1.4

func NewHelpClient(cc grpc.ClientConnInterface) HelpClient

type HelpServer added in v0.1.4

type HelpServer interface {
	// Returns a CLI command man page.
	GetMethodHelp(context.Context, *GetMethodHelpRequest) (*GetMethodHelpReply, error)
	// contains filtered or unexported methods
}

HelpServer is the server API for Help service. All implementations must embed UnimplementedHelpServer for forward compatibility

type IfscBasedAccountPayload added in v0.1.6

type IfscBasedAccountPayload struct {
	HolderName string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	AccountNr  string `protobuf:"bytes,2,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	Ifsc       string `protobuf:"bytes,3,opt,name=ifsc,proto3" json:"ifsc,omitempty"`
	// Types that are assignable to Message:
	//
	//	*IfscBasedAccountPayload_NeftAccountPayload
	//	*IfscBasedAccountPayload_RtgsAccountPayload
	//	*IfscBasedAccountPayload_ImpsAccountPayload
	Message isIfscBasedAccountPayload_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*IfscBasedAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use IfscBasedAccountPayload.ProtoReflect.Descriptor instead.

func (*IfscBasedAccountPayload) GetAccountNr added in v0.1.6

func (x *IfscBasedAccountPayload) GetAccountNr() string

func (*IfscBasedAccountPayload) GetHolderName added in v0.1.6

func (x *IfscBasedAccountPayload) GetHolderName() string

func (*IfscBasedAccountPayload) GetIfsc added in v0.1.6

func (x *IfscBasedAccountPayload) GetIfsc() string

func (*IfscBasedAccountPayload) GetImpsAccountPayload added in v0.1.6

func (x *IfscBasedAccountPayload) GetImpsAccountPayload() *ImpsAccountPayload

func (*IfscBasedAccountPayload) GetMessage added in v0.1.6

func (m *IfscBasedAccountPayload) GetMessage() isIfscBasedAccountPayload_Message

func (*IfscBasedAccountPayload) GetNeftAccountPayload added in v0.1.6

func (x *IfscBasedAccountPayload) GetNeftAccountPayload() *NeftAccountPayload

func (*IfscBasedAccountPayload) GetRtgsAccountPayload added in v0.1.6

func (x *IfscBasedAccountPayload) GetRtgsAccountPayload() *RtgsAccountPayload

func (*IfscBasedAccountPayload) ProtoMessage added in v0.1.6

func (*IfscBasedAccountPayload) ProtoMessage()

func (*IfscBasedAccountPayload) ProtoReflect added in v0.1.6

func (x *IfscBasedAccountPayload) ProtoReflect() protoreflect.Message

func (*IfscBasedAccountPayload) Reset added in v0.1.6

func (x *IfscBasedAccountPayload) Reset()

func (*IfscBasedAccountPayload) String added in v0.1.6

func (x *IfscBasedAccountPayload) String() string

type IfscBasedAccountPayload_ImpsAccountPayload added in v0.1.6

type IfscBasedAccountPayload_ImpsAccountPayload struct {
	ImpsAccountPayload *ImpsAccountPayload `protobuf:"bytes,6,opt,name=imps_account_payload,json=impsAccountPayload,proto3,oneof"`
}

type IfscBasedAccountPayload_NeftAccountPayload added in v0.1.6

type IfscBasedAccountPayload_NeftAccountPayload struct {
	NeftAccountPayload *NeftAccountPayload `protobuf:"bytes,4,opt,name=neft_account_payload,json=neftAccountPayload,proto3,oneof"`
}

type IfscBasedAccountPayload_RtgsAccountPayload added in v0.1.6

type IfscBasedAccountPayload_RtgsAccountPayload struct {
	RtgsAccountPayload *RtgsAccountPayload `protobuf:"bytes,5,opt,name=rtgs_account_payload,json=rtgsAccountPayload,proto3,oneof"`
}

type IgnoredMailboxMap added in v0.1.4

type IgnoredMailboxMap struct {
	Data map[string]uint64 `` /* 150-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*IgnoredMailboxMap) Descriptor deprecated added in v0.1.4

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

Deprecated: Use IgnoredMailboxMap.ProtoReflect.Descriptor instead.

func (*IgnoredMailboxMap) GetData added in v0.1.4

func (x *IgnoredMailboxMap) GetData() map[string]uint64

func (*IgnoredMailboxMap) ProtoMessage added in v0.1.4

func (*IgnoredMailboxMap) ProtoMessage()

func (*IgnoredMailboxMap) ProtoReflect added in v0.1.4

func (x *IgnoredMailboxMap) ProtoReflect() protoreflect.Message

func (*IgnoredMailboxMap) Reset added in v0.1.4

func (x *IgnoredMailboxMap) Reset()

func (*IgnoredMailboxMap) String added in v0.1.4

func (x *IgnoredMailboxMap) String() string

type ImpsAccountPayload added in v0.1.6

type ImpsAccountPayload struct {
	// contains filtered or unexported fields
}

func (*ImpsAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use ImpsAccountPayload.ProtoReflect.Descriptor instead.

func (*ImpsAccountPayload) ProtoMessage added in v0.1.6

func (*ImpsAccountPayload) ProtoMessage()

func (*ImpsAccountPayload) ProtoReflect added in v0.1.6

func (x *ImpsAccountPayload) ProtoReflect() protoreflect.Message

func (*ImpsAccountPayload) Reset added in v0.1.6

func (x *ImpsAccountPayload) Reset()

func (*ImpsAccountPayload) String added in v0.1.6

func (x *ImpsAccountPayload) String() string

type InputsForDepositTxRequest added in v0.1.4

type InputsForDepositTxRequest struct {
	TradeId                  string                 `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress        *NodeAddress           `protobuf:"bytes,2,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	TradeAmount              int64                  `protobuf:"varint,3,opt,name=trade_amount,json=tradeAmount,proto3" json:"trade_amount,omitempty"`
	TradePrice               int64                  `protobuf:"varint,4,opt,name=trade_price,json=tradePrice,proto3" json:"trade_price,omitempty"`
	TxFee                    int64                  `protobuf:"varint,5,opt,name=tx_fee,json=txFee,proto3" json:"tx_fee,omitempty"`
	TakerFee                 int64                  `protobuf:"varint,6,opt,name=taker_fee,json=takerFee,proto3" json:"taker_fee,omitempty"`
	IsCurrencyForTakerFeeBtc bool                   `` /* 142-byte string literal not displayed */
	RawTransactionInputs     []*RawTransactionInput `protobuf:"bytes,8,rep,name=raw_transaction_inputs,json=rawTransactionInputs,proto3" json:"raw_transaction_inputs,omitempty"`
	ChangeOutputValue        int64                  `protobuf:"varint,9,opt,name=change_output_value,json=changeOutputValue,proto3" json:"change_output_value,omitempty"`
	ChangeOutputAddress      string                 `protobuf:"bytes,10,opt,name=change_output_address,json=changeOutputAddress,proto3" json:"change_output_address,omitempty"`
	TakerMultiSigPubKey      []byte                 `protobuf:"bytes,11,opt,name=taker_multi_sig_pub_key,json=takerMultiSigPubKey,proto3" json:"taker_multi_sig_pub_key,omitempty"`
	TakerPayoutAddressString string                 `` /* 138-byte string literal not displayed */
	TakerPubKeyRing          *PubKeyRing            `protobuf:"bytes,13,opt,name=taker_pub_key_ring,json=takerPubKeyRing,proto3" json:"taker_pub_key_ring,omitempty"`
	// Not used anymore from 1.7.0 but kept for backward compatibility.
	TakerPaymentAccountPayload          *PaymentAccountPayload `` /* 144-byte string literal not displayed */
	TakerAccountId                      string                 `protobuf:"bytes,15,opt,name=taker_account_id,json=takerAccountId,proto3" json:"taker_account_id,omitempty"`
	TakerFeeTxId                        string                 `protobuf:"bytes,16,opt,name=taker_fee_tx_id,json=takerFeeTxId,proto3" json:"taker_fee_tx_id,omitempty"`
	AcceptedArbitratorNodeAddresses     []*NodeAddress         `` /* 159-byte string literal not displayed */
	AcceptedMediatorNodeAddresses       []*NodeAddress         `` /* 153-byte string literal not displayed */
	ArbitratorNodeAddress               *NodeAddress           `` /* 127-byte string literal not displayed */
	MediatorNodeAddress                 *NodeAddress           `protobuf:"bytes,20,opt,name=mediator_node_address,json=mediatorNodeAddress,proto3" json:"mediator_node_address,omitempty"`
	Uid                                 string                 `protobuf:"bytes,21,opt,name=uid,proto3" json:"uid,omitempty"`
	AccountAgeWitnessSignatureOfOfferId []byte                 `` /* 177-byte string literal not displayed */
	CurrentDate                         int64                  `protobuf:"varint,23,opt,name=current_date,json=currentDate,proto3" json:"current_date,omitempty"`
	AcceptedRefundAgentNodeAddresses    []*NodeAddress         `` /* 164-byte string literal not displayed */
	RefundAgentNodeAddress              *NodeAddress           `` /* 132-byte string literal not displayed */
	HashOfTakersPaymentAccountPayload   []byte                 `` /* 169-byte string literal not displayed */
	TakersPayoutMethodId                string                 `` /* 126-byte string literal not displayed */
	BurningManSelectionHeight           int32                  `` // Added in v 1.9.7
	/* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*InputsForDepositTxRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use InputsForDepositTxRequest.ProtoReflect.Descriptor instead.

func (*InputsForDepositTxRequest) GetAcceptedArbitratorNodeAddresses added in v0.1.4

func (x *InputsForDepositTxRequest) GetAcceptedArbitratorNodeAddresses() []*NodeAddress

func (*InputsForDepositTxRequest) GetAcceptedMediatorNodeAddresses added in v0.1.4

func (x *InputsForDepositTxRequest) GetAcceptedMediatorNodeAddresses() []*NodeAddress

func (*InputsForDepositTxRequest) GetAcceptedRefundAgentNodeAddresses added in v0.1.4

func (x *InputsForDepositTxRequest) GetAcceptedRefundAgentNodeAddresses() []*NodeAddress

func (*InputsForDepositTxRequest) GetAccountAgeWitnessSignatureOfOfferId added in v0.1.4

func (x *InputsForDepositTxRequest) GetAccountAgeWitnessSignatureOfOfferId() []byte

func (*InputsForDepositTxRequest) GetArbitratorNodeAddress added in v0.1.4

func (x *InputsForDepositTxRequest) GetArbitratorNodeAddress() *NodeAddress

func (*InputsForDepositTxRequest) GetBurningManSelectionHeight added in v0.1.10

func (x *InputsForDepositTxRequest) GetBurningManSelectionHeight() int32

func (*InputsForDepositTxRequest) GetChangeOutputAddress added in v0.1.4

func (x *InputsForDepositTxRequest) GetChangeOutputAddress() string

func (*InputsForDepositTxRequest) GetChangeOutputValue added in v0.1.4

func (x *InputsForDepositTxRequest) GetChangeOutputValue() int64

func (*InputsForDepositTxRequest) GetCurrentDate added in v0.1.4

func (x *InputsForDepositTxRequest) GetCurrentDate() int64

func (*InputsForDepositTxRequest) GetHashOfTakersPaymentAccountPayload added in v0.1.5

func (x *InputsForDepositTxRequest) GetHashOfTakersPaymentAccountPayload() []byte

func (*InputsForDepositTxRequest) GetIsCurrencyForTakerFeeBtc added in v0.1.4

func (x *InputsForDepositTxRequest) GetIsCurrencyForTakerFeeBtc() bool

func (*InputsForDepositTxRequest) GetMediatorNodeAddress added in v0.1.4

func (x *InputsForDepositTxRequest) GetMediatorNodeAddress() *NodeAddress

func (*InputsForDepositTxRequest) GetRawTransactionInputs added in v0.1.4

func (x *InputsForDepositTxRequest) GetRawTransactionInputs() []*RawTransactionInput

func (*InputsForDepositTxRequest) GetRefundAgentNodeAddress added in v0.1.4

func (x *InputsForDepositTxRequest) GetRefundAgentNodeAddress() *NodeAddress

func (*InputsForDepositTxRequest) GetSenderNodeAddress added in v0.1.4

func (x *InputsForDepositTxRequest) GetSenderNodeAddress() *NodeAddress

func (*InputsForDepositTxRequest) GetTakerAccountId added in v0.1.4

func (x *InputsForDepositTxRequest) GetTakerAccountId() string

func (*InputsForDepositTxRequest) GetTakerFee added in v0.1.4

func (x *InputsForDepositTxRequest) GetTakerFee() int64

func (*InputsForDepositTxRequest) GetTakerFeeTxId added in v0.1.4

func (x *InputsForDepositTxRequest) GetTakerFeeTxId() string

func (*InputsForDepositTxRequest) GetTakerMultiSigPubKey added in v0.1.4

func (x *InputsForDepositTxRequest) GetTakerMultiSigPubKey() []byte

func (*InputsForDepositTxRequest) GetTakerPaymentAccountPayload added in v0.1.4

func (x *InputsForDepositTxRequest) GetTakerPaymentAccountPayload() *PaymentAccountPayload

func (*InputsForDepositTxRequest) GetTakerPayoutAddressString added in v0.1.4

func (x *InputsForDepositTxRequest) GetTakerPayoutAddressString() string

func (*InputsForDepositTxRequest) GetTakerPubKeyRing added in v0.1.4

func (x *InputsForDepositTxRequest) GetTakerPubKeyRing() *PubKeyRing

func (*InputsForDepositTxRequest) GetTakersPayoutMethodId added in v0.1.5

func (x *InputsForDepositTxRequest) GetTakersPayoutMethodId() string

func (*InputsForDepositTxRequest) GetTradeAmount added in v0.1.4

func (x *InputsForDepositTxRequest) GetTradeAmount() int64

func (*InputsForDepositTxRequest) GetTradeId added in v0.1.4

func (x *InputsForDepositTxRequest) GetTradeId() string

func (*InputsForDepositTxRequest) GetTradePrice added in v0.1.4

func (x *InputsForDepositTxRequest) GetTradePrice() int64

func (*InputsForDepositTxRequest) GetTxFee added in v0.1.4

func (x *InputsForDepositTxRequest) GetTxFee() int64

func (*InputsForDepositTxRequest) GetUid added in v0.1.4

func (x *InputsForDepositTxRequest) GetUid() string

func (*InputsForDepositTxRequest) ProtoMessage added in v0.1.4

func (*InputsForDepositTxRequest) ProtoMessage()

func (*InputsForDepositTxRequest) ProtoReflect added in v0.1.4

func (*InputsForDepositTxRequest) Reset added in v0.1.4

func (x *InputsForDepositTxRequest) Reset()

func (*InputsForDepositTxRequest) String added in v0.1.4

func (x *InputsForDepositTxRequest) String() string

type InputsForDepositTxResponse added in v0.1.4

type InputsForDepositTxResponse struct {
	TradeId string `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	// Not used anymore from 1.7.0 but kept for backward compatibility.
	MakerPaymentAccountPayload                    *PaymentAccountPayload `` /* 143-byte string literal not displayed */
	MakerAccountId                                string                 `protobuf:"bytes,3,opt,name=maker_account_id,json=makerAccountId,proto3" json:"maker_account_id,omitempty"`
	MakerContractAsJson                           string                 `protobuf:"bytes,4,opt,name=maker_contract_as_json,json=makerContractAsJson,proto3" json:"maker_contract_as_json,omitempty"`
	MakerContractSignature                        string                 `` /* 129-byte string literal not displayed */
	MakerPayoutAddressString                      string                 `` /* 137-byte string literal not displayed */
	PreparedDepositTx                             []byte                 `protobuf:"bytes,7,opt,name=prepared_deposit_tx,json=preparedDepositTx,proto3" json:"prepared_deposit_tx,omitempty"`
	MakerInputs                                   []*RawTransactionInput `protobuf:"bytes,8,rep,name=maker_inputs,json=makerInputs,proto3" json:"maker_inputs,omitempty"`
	MakerMultiSigPubKey                           []byte                 `protobuf:"bytes,9,opt,name=maker_multi_sig_pub_key,json=makerMultiSigPubKey,proto3" json:"maker_multi_sig_pub_key,omitempty"`
	SenderNodeAddress                             *NodeAddress           `protobuf:"bytes,10,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Uid                                           string                 `protobuf:"bytes,11,opt,name=uid,proto3" json:"uid,omitempty"`
	AccountAgeWitnessSignatureOfPreparedDepositTx []byte                 `` /* 209-byte string literal not displayed */
	CurrentDate                                   int64                  `protobuf:"varint,13,opt,name=current_date,json=currentDate,proto3" json:"current_date,omitempty"`
	LockTime                                      int64                  `protobuf:"varint,14,opt,name=lock_time,json=lockTime,proto3" json:"lock_time,omitempty"`
	HashOfMakersPaymentAccountPayload             []byte                 `` /* 169-byte string literal not displayed */
	MakersPayoutMethodId                          string                 `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*InputsForDepositTxResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use InputsForDepositTxResponse.ProtoReflect.Descriptor instead.

func (*InputsForDepositTxResponse) GetAccountAgeWitnessSignatureOfPreparedDepositTx added in v0.1.4

func (x *InputsForDepositTxResponse) GetAccountAgeWitnessSignatureOfPreparedDepositTx() []byte

func (*InputsForDepositTxResponse) GetCurrentDate added in v0.1.4

func (x *InputsForDepositTxResponse) GetCurrentDate() int64

func (*InputsForDepositTxResponse) GetHashOfMakersPaymentAccountPayload added in v0.1.5

func (x *InputsForDepositTxResponse) GetHashOfMakersPaymentAccountPayload() []byte

func (*InputsForDepositTxResponse) GetLockTime added in v0.1.4

func (x *InputsForDepositTxResponse) GetLockTime() int64

func (*InputsForDepositTxResponse) GetMakerAccountId added in v0.1.4

func (x *InputsForDepositTxResponse) GetMakerAccountId() string

func (*InputsForDepositTxResponse) GetMakerContractAsJson added in v0.1.4

func (x *InputsForDepositTxResponse) GetMakerContractAsJson() string

func (*InputsForDepositTxResponse) GetMakerContractSignature added in v0.1.4

func (x *InputsForDepositTxResponse) GetMakerContractSignature() string

func (*InputsForDepositTxResponse) GetMakerInputs added in v0.1.4

func (x *InputsForDepositTxResponse) GetMakerInputs() []*RawTransactionInput

func (*InputsForDepositTxResponse) GetMakerMultiSigPubKey added in v0.1.4

func (x *InputsForDepositTxResponse) GetMakerMultiSigPubKey() []byte

func (*InputsForDepositTxResponse) GetMakerPaymentAccountPayload added in v0.1.4

func (x *InputsForDepositTxResponse) GetMakerPaymentAccountPayload() *PaymentAccountPayload

func (*InputsForDepositTxResponse) GetMakerPayoutAddressString added in v0.1.4

func (x *InputsForDepositTxResponse) GetMakerPayoutAddressString() string

func (*InputsForDepositTxResponse) GetMakersPayoutMethodId added in v0.1.5

func (x *InputsForDepositTxResponse) GetMakersPayoutMethodId() string

func (*InputsForDepositTxResponse) GetPreparedDepositTx added in v0.1.4

func (x *InputsForDepositTxResponse) GetPreparedDepositTx() []byte

func (*InputsForDepositTxResponse) GetSenderNodeAddress added in v0.1.4

func (x *InputsForDepositTxResponse) GetSenderNodeAddress() *NodeAddress

func (*InputsForDepositTxResponse) GetTradeId added in v0.1.4

func (x *InputsForDepositTxResponse) GetTradeId() string

func (*InputsForDepositTxResponse) GetUid added in v0.1.4

func (x *InputsForDepositTxResponse) GetUid() string

func (*InputsForDepositTxResponse) ProtoMessage added in v0.1.4

func (*InputsForDepositTxResponse) ProtoMessage()

func (*InputsForDepositTxResponse) ProtoReflect added in v0.1.4

func (*InputsForDepositTxResponse) Reset added in v0.1.4

func (x *InputsForDepositTxResponse) Reset()

func (*InputsForDepositTxResponse) String added in v0.1.4

func (x *InputsForDepositTxResponse) String() string

type InstantCryptoCurrencyAccountPayload added in v0.1.4

type InstantCryptoCurrencyAccountPayload struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*InstantCryptoCurrencyAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use InstantCryptoCurrencyAccountPayload.ProtoReflect.Descriptor instead.

func (*InstantCryptoCurrencyAccountPayload) GetAddress added in v0.1.4

func (*InstantCryptoCurrencyAccountPayload) ProtoMessage added in v0.1.4

func (*InstantCryptoCurrencyAccountPayload) ProtoMessage()

func (*InstantCryptoCurrencyAccountPayload) ProtoReflect added in v0.1.4

func (*InstantCryptoCurrencyAccountPayload) Reset added in v0.1.4

func (*InstantCryptoCurrencyAccountPayload) String added in v0.1.4

type InteracETransferAccountPayload added in v0.1.4

type InteracETransferAccountPayload struct {
	Email      string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	HolderName string `protobuf:"bytes,2,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	Question   string `protobuf:"bytes,3,opt,name=question,proto3" json:"question,omitempty"`
	Answer     string `protobuf:"bytes,4,opt,name=answer,proto3" json:"answer,omitempty"`
	// contains filtered or unexported fields
}

func (*InteracETransferAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use InteracETransferAccountPayload.ProtoReflect.Descriptor instead.

func (*InteracETransferAccountPayload) GetAnswer added in v0.1.4

func (x *InteracETransferAccountPayload) GetAnswer() string

func (*InteracETransferAccountPayload) GetEmail added in v0.1.4

func (x *InteracETransferAccountPayload) GetEmail() string

func (*InteracETransferAccountPayload) GetHolderName added in v0.1.4

func (x *InteracETransferAccountPayload) GetHolderName() string

func (*InteracETransferAccountPayload) GetQuestion added in v0.1.4

func (x *InteracETransferAccountPayload) GetQuestion() string

func (*InteracETransferAccountPayload) ProtoMessage added in v0.1.4

func (*InteracETransferAccountPayload) ProtoMessage()

func (*InteracETransferAccountPayload) ProtoReflect added in v0.1.4

func (*InteracETransferAccountPayload) Reset added in v0.1.4

func (x *InteracETransferAccountPayload) Reset()

func (*InteracETransferAccountPayload) String added in v0.1.4

type Issuance added in v0.1.4

type Issuance struct {
	TxId         string `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	ChainHeight  int32  `protobuf:"varint,2,opt,name=chain_height,json=chainHeight,proto3" json:"chain_height,omitempty"`
	Amount       int64  `protobuf:"varint,3,opt,name=amount,proto3" json:"amount,omitempty"`
	PubKey       string `protobuf:"bytes,4,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	IssuanceType string `protobuf:"bytes,5,opt,name=issuance_type,json=issuanceType,proto3" json:"issuance_type,omitempty"`
	// contains filtered or unexported fields
}

func (*Issuance) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Issuance.ProtoReflect.Descriptor instead.

func (*Issuance) GetAmount added in v0.1.4

func (x *Issuance) GetAmount() int64

func (*Issuance) GetChainHeight added in v0.1.4

func (x *Issuance) GetChainHeight() int32

func (*Issuance) GetIssuanceType added in v0.1.4

func (x *Issuance) GetIssuanceType() string

func (*Issuance) GetPubKey added in v0.1.4

func (x *Issuance) GetPubKey() string

func (*Issuance) GetTxId added in v0.1.4

func (x *Issuance) GetTxId() string

func (*Issuance) ProtoMessage added in v0.1.4

func (*Issuance) ProtoMessage()

func (*Issuance) ProtoReflect added in v0.1.4

func (x *Issuance) ProtoReflect() protoreflect.Message

func (*Issuance) Reset added in v0.1.4

func (x *Issuance) Reset()

func (*Issuance) String added in v0.1.4

func (x *Issuance) String() string

type JapanBankAccountPayload added in v0.1.4

type JapanBankAccountPayload struct {
	BankName          string `protobuf:"bytes,1,opt,name=bank_name,json=bankName,proto3" json:"bank_name,omitempty"`
	BankCode          string `protobuf:"bytes,2,opt,name=bank_code,json=bankCode,proto3" json:"bank_code,omitempty"`
	BankBranchName    string `protobuf:"bytes,3,opt,name=bank_branch_name,json=bankBranchName,proto3" json:"bank_branch_name,omitempty"`
	BankBranchCode    string `protobuf:"bytes,4,opt,name=bank_branch_code,json=bankBranchCode,proto3" json:"bank_branch_code,omitempty"`
	BankAccountType   string `protobuf:"bytes,5,opt,name=bank_account_type,json=bankAccountType,proto3" json:"bank_account_type,omitempty"`
	BankAccountName   string `protobuf:"bytes,6,opt,name=bank_account_name,json=bankAccountName,proto3" json:"bank_account_name,omitempty"`
	BankAccountNumber string `protobuf:"bytes,7,opt,name=bank_account_number,json=bankAccountNumber,proto3" json:"bank_account_number,omitempty"`
	// contains filtered or unexported fields
}

func (*JapanBankAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use JapanBankAccountPayload.ProtoReflect.Descriptor instead.

func (*JapanBankAccountPayload) GetBankAccountName added in v0.1.4

func (x *JapanBankAccountPayload) GetBankAccountName() string

func (*JapanBankAccountPayload) GetBankAccountNumber added in v0.1.4

func (x *JapanBankAccountPayload) GetBankAccountNumber() string

func (*JapanBankAccountPayload) GetBankAccountType added in v0.1.4

func (x *JapanBankAccountPayload) GetBankAccountType() string

func (*JapanBankAccountPayload) GetBankBranchCode added in v0.1.4

func (x *JapanBankAccountPayload) GetBankBranchCode() string

func (*JapanBankAccountPayload) GetBankBranchName added in v0.1.4

func (x *JapanBankAccountPayload) GetBankBranchName() string

func (*JapanBankAccountPayload) GetBankCode added in v0.1.4

func (x *JapanBankAccountPayload) GetBankCode() string

func (*JapanBankAccountPayload) GetBankName added in v0.1.4

func (x *JapanBankAccountPayload) GetBankName() string

func (*JapanBankAccountPayload) ProtoMessage added in v0.1.4

func (*JapanBankAccountPayload) ProtoMessage()

func (*JapanBankAccountPayload) ProtoReflect added in v0.1.4

func (x *JapanBankAccountPayload) ProtoReflect() protoreflect.Message

func (*JapanBankAccountPayload) Reset added in v0.1.4

func (x *JapanBankAccountPayload) Reset()

func (*JapanBankAccountPayload) String added in v0.1.4

func (x *JapanBankAccountPayload) String() string

type LockWalletReply added in v0.1.4

type LockWalletReply struct {
	// contains filtered or unexported fields
}

func (*LockWalletReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use LockWalletReply.ProtoReflect.Descriptor instead.

func (*LockWalletReply) ProtoMessage added in v0.1.4

func (*LockWalletReply) ProtoMessage()

func (*LockWalletReply) ProtoReflect added in v0.1.4

func (x *LockWalletReply) ProtoReflect() protoreflect.Message

func (*LockWalletReply) Reset added in v0.1.4

func (x *LockWalletReply) Reset()

func (*LockWalletReply) String added in v0.1.4

func (x *LockWalletReply) String() string

type LockWalletRequest added in v0.1.4

type LockWalletRequest struct {
	// contains filtered or unexported fields
}

func (*LockWalletRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use LockWalletRequest.ProtoReflect.Descriptor instead.

func (*LockWalletRequest) ProtoMessage added in v0.1.4

func (*LockWalletRequest) ProtoMessage()

func (*LockWalletRequest) ProtoReflect added in v0.1.4

func (x *LockWalletRequest) ProtoReflect() protoreflect.Message

func (*LockWalletRequest) Reset added in v0.1.4

func (x *LockWalletRequest) Reset()

func (*LockWalletRequest) String added in v0.1.4

func (x *LockWalletRequest) String() string

type LongValueReportingItem added in v0.1.10

type LongValueReportingItem struct {
	Value uint64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*LongValueReportingItem) Descriptor deprecated added in v0.1.10

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

Deprecated: Use LongValueReportingItem.ProtoReflect.Descriptor instead.

func (*LongValueReportingItem) GetValue added in v0.1.10

func (x *LongValueReportingItem) GetValue() uint64

func (*LongValueReportingItem) ProtoMessage added in v0.1.10

func (*LongValueReportingItem) ProtoMessage()

func (*LongValueReportingItem) ProtoReflect added in v0.1.10

func (x *LongValueReportingItem) ProtoReflect() protoreflect.Message

func (*LongValueReportingItem) Reset added in v0.1.10

func (x *LongValueReportingItem) Reset()

func (*LongValueReportingItem) String added in v0.1.10

func (x *LongValueReportingItem) String() string

type MailboxItem added in v0.1.4

type MailboxItem struct {
	ProtectedMailboxStorageEntry *ProtectedMailboxStorageEntry `` /* 149-byte string literal not displayed */
	DecryptedMessageWithPubKey   *DecryptedMessageWithPubKey   `` /* 145-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MailboxItem) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MailboxItem.ProtoReflect.Descriptor instead.

func (*MailboxItem) GetDecryptedMessageWithPubKey added in v0.1.4

func (x *MailboxItem) GetDecryptedMessageWithPubKey() *DecryptedMessageWithPubKey

func (*MailboxItem) GetProtectedMailboxStorageEntry added in v0.1.4

func (x *MailboxItem) GetProtectedMailboxStorageEntry() *ProtectedMailboxStorageEntry

func (*MailboxItem) ProtoMessage added in v0.1.4

func (*MailboxItem) ProtoMessage()

func (*MailboxItem) ProtoReflect added in v0.1.4

func (x *MailboxItem) ProtoReflect() protoreflect.Message

func (*MailboxItem) Reset added in v0.1.4

func (x *MailboxItem) Reset()

func (*MailboxItem) String added in v0.1.4

func (x *MailboxItem) String() string

type MailboxMessageList added in v0.1.4

type MailboxMessageList struct {
	MailboxItem []*MailboxItem `protobuf:"bytes,1,rep,name=mailbox_item,json=mailboxItem,proto3" json:"mailbox_item,omitempty"`
	// contains filtered or unexported fields
}

func (*MailboxMessageList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MailboxMessageList.ProtoReflect.Descriptor instead.

func (*MailboxMessageList) GetMailboxItem added in v0.1.4

func (x *MailboxMessageList) GetMailboxItem() []*MailboxItem

func (*MailboxMessageList) ProtoMessage added in v0.1.4

func (*MailboxMessageList) ProtoMessage()

func (*MailboxMessageList) ProtoReflect added in v0.1.4

func (x *MailboxMessageList) ProtoReflect() protoreflect.Message

func (*MailboxMessageList) Reset added in v0.1.4

func (x *MailboxMessageList) Reset()

func (*MailboxMessageList) String added in v0.1.4

func (x *MailboxMessageList) String() string

type MailboxStoragePayload added in v0.1.4

type MailboxStoragePayload struct {
	PrefixedSealedAndSignedMessage   *PrefixedSealedAndSignedMessage `` /* 157-byte string literal not displayed */
	SenderPubKeyForAddOperationBytes []byte                          `` /* 167-byte string literal not displayed */
	OwnerPubKeyBytes                 []byte                          `protobuf:"bytes,3,opt,name=owner_pub_key_bytes,json=ownerPubKeyBytes,proto3" json:"owner_pub_key_bytes,omitempty"`
	ExtraData                        map[string]string               `` /* 176-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MailboxStoragePayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MailboxStoragePayload.ProtoReflect.Descriptor instead.

func (*MailboxStoragePayload) GetExtraData added in v0.1.4

func (x *MailboxStoragePayload) GetExtraData() map[string]string

func (*MailboxStoragePayload) GetOwnerPubKeyBytes added in v0.1.4

func (x *MailboxStoragePayload) GetOwnerPubKeyBytes() []byte

func (*MailboxStoragePayload) GetPrefixedSealedAndSignedMessage added in v0.1.4

func (x *MailboxStoragePayload) GetPrefixedSealedAndSignedMessage() *PrefixedSealedAndSignedMessage

func (*MailboxStoragePayload) GetSenderPubKeyForAddOperationBytes added in v0.1.4

func (x *MailboxStoragePayload) GetSenderPubKeyForAddOperationBytes() []byte

func (*MailboxStoragePayload) ProtoMessage added in v0.1.4

func (*MailboxStoragePayload) ProtoMessage()

func (*MailboxStoragePayload) ProtoReflect added in v0.1.4

func (x *MailboxStoragePayload) ProtoReflect() protoreflect.Message

func (*MailboxStoragePayload) Reset added in v0.1.4

func (x *MailboxStoragePayload) Reset()

func (*MailboxStoragePayload) String added in v0.1.4

func (x *MailboxStoragePayload) String() string

type MapValue added in v0.1.4

type MapValue struct {
	SequenceNr int32 `protobuf:"varint,1,opt,name=sequence_nr,json=sequenceNr,proto3" json:"sequence_nr,omitempty"`
	TimeStamp  int64 `protobuf:"varint,2,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
	// contains filtered or unexported fields
}

func (*MapValue) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MapValue.ProtoReflect.Descriptor instead.

func (*MapValue) GetSequenceNr added in v0.1.4

func (x *MapValue) GetSequenceNr() int32

func (*MapValue) GetTimeStamp added in v0.1.4

func (x *MapValue) GetTimeStamp() int64

func (*MapValue) ProtoMessage added in v0.1.4

func (*MapValue) ProtoMessage()

func (*MapValue) ProtoReflect added in v0.1.4

func (x *MapValue) ProtoReflect() protoreflect.Message

func (*MapValue) Reset added in v0.1.4

func (x *MapValue) Reset()

func (*MapValue) String added in v0.1.4

func (x *MapValue) String() string

type MarketAlertFilter added in v0.1.4

type MarketAlertFilter struct {
	PaymentAccount *PaymentAccount `protobuf:"bytes,1,opt,name=payment_account,json=paymentAccount,proto3" json:"payment_account,omitempty"`
	TriggerValue   int32           `protobuf:"varint,2,opt,name=trigger_value,json=triggerValue,proto3" json:"trigger_value,omitempty"`
	IsBuyOffer     bool            `protobuf:"varint,3,opt,name=is_buy_offer,json=isBuyOffer,proto3" json:"is_buy_offer,omitempty"`
	AlertIds       []string        `protobuf:"bytes,4,rep,name=alert_ids,json=alertIds,proto3" json:"alert_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*MarketAlertFilter) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MarketAlertFilter.ProtoReflect.Descriptor instead.

func (*MarketAlertFilter) GetAlertIds added in v0.1.4

func (x *MarketAlertFilter) GetAlertIds() []string

func (*MarketAlertFilter) GetIsBuyOffer added in v0.1.4

func (x *MarketAlertFilter) GetIsBuyOffer() bool

func (*MarketAlertFilter) GetPaymentAccount added in v0.1.4

func (x *MarketAlertFilter) GetPaymentAccount() *PaymentAccount

func (*MarketAlertFilter) GetTriggerValue added in v0.1.4

func (x *MarketAlertFilter) GetTriggerValue() int32

func (*MarketAlertFilter) ProtoMessage added in v0.1.4

func (*MarketAlertFilter) ProtoMessage()

func (*MarketAlertFilter) ProtoReflect added in v0.1.4

func (x *MarketAlertFilter) ProtoReflect() protoreflect.Message

func (*MarketAlertFilter) Reset added in v0.1.4

func (x *MarketAlertFilter) Reset()

func (*MarketAlertFilter) String added in v0.1.4

func (x *MarketAlertFilter) String() string

type MarketPriceReply added in v0.1.4

type MarketPriceReply struct {
	Price float64 `protobuf:"fixed64,1,opt,name=price,proto3" json:"price,omitempty"` // The most recently available market price.
	// contains filtered or unexported fields
}

func (*MarketPriceReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MarketPriceReply.ProtoReflect.Descriptor instead.

func (*MarketPriceReply) GetPrice added in v0.1.4

func (x *MarketPriceReply) GetPrice() float64

func (*MarketPriceReply) ProtoMessage added in v0.1.4

func (*MarketPriceReply) ProtoMessage()

func (*MarketPriceReply) ProtoReflect added in v0.1.4

func (x *MarketPriceReply) ProtoReflect() protoreflect.Message

func (*MarketPriceReply) Reset added in v0.1.4

func (x *MarketPriceReply) Reset()

func (*MarketPriceReply) String added in v0.1.4

func (x *MarketPriceReply) String() string

type MarketPriceRequest added in v0.1.4

type MarketPriceRequest struct {
	CurrencyCode string `protobuf:"bytes,1,opt,name=currency_code,json=currencyCode,proto3" json:"currency_code,omitempty"` // The three letter currency code.
	// contains filtered or unexported fields
}

func (*MarketPriceRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MarketPriceRequest.ProtoReflect.Descriptor instead.

func (*MarketPriceRequest) GetCurrencyCode added in v0.1.4

func (x *MarketPriceRequest) GetCurrencyCode() string

func (*MarketPriceRequest) ProtoMessage added in v0.1.4

func (*MarketPriceRequest) ProtoMessage()

func (*MarketPriceRequest) ProtoReflect added in v0.1.4

func (x *MarketPriceRequest) ProtoReflect() protoreflect.Message

func (*MarketPriceRequest) Reset added in v0.1.4

func (x *MarketPriceRequest) Reset()

func (*MarketPriceRequest) String added in v0.1.4

func (x *MarketPriceRequest) String() string

type MediatedPayoutTxPublishedMessage added in v0.1.4

type MediatedPayoutTxPublishedMessage struct {
	TradeId           string       `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	PayoutTx          []byte       `protobuf:"bytes,2,opt,name=payout_tx,json=payoutTx,proto3" json:"payout_tx,omitempty"`
	SenderNodeAddress *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Uid               string       `protobuf:"bytes,4,opt,name=uid,proto3" json:"uid,omitempty"`
	// contains filtered or unexported fields
}

func (*MediatedPayoutTxPublishedMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MediatedPayoutTxPublishedMessage.ProtoReflect.Descriptor instead.

func (*MediatedPayoutTxPublishedMessage) GetPayoutTx added in v0.1.4

func (x *MediatedPayoutTxPublishedMessage) GetPayoutTx() []byte

func (*MediatedPayoutTxPublishedMessage) GetSenderNodeAddress added in v0.1.4

func (x *MediatedPayoutTxPublishedMessage) GetSenderNodeAddress() *NodeAddress

func (*MediatedPayoutTxPublishedMessage) GetTradeId added in v0.1.4

func (x *MediatedPayoutTxPublishedMessage) GetTradeId() string

func (*MediatedPayoutTxPublishedMessage) GetUid added in v0.1.4

func (*MediatedPayoutTxPublishedMessage) ProtoMessage added in v0.1.4

func (*MediatedPayoutTxPublishedMessage) ProtoMessage()

func (*MediatedPayoutTxPublishedMessage) ProtoReflect added in v0.1.4

func (*MediatedPayoutTxPublishedMessage) Reset added in v0.1.4

func (*MediatedPayoutTxPublishedMessage) String added in v0.1.4

type MediatedPayoutTxSignatureMessage added in v0.1.4

type MediatedPayoutTxSignatureMessage struct {
	Uid               string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId           string       `protobuf:"bytes,3,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	TxSignature       []byte       `protobuf:"bytes,2,opt,name=tx_signature,json=txSignature,proto3" json:"tx_signature,omitempty"`
	SenderNodeAddress *NodeAddress `protobuf:"bytes,4,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	// contains filtered or unexported fields
}

func (*MediatedPayoutTxSignatureMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MediatedPayoutTxSignatureMessage.ProtoReflect.Descriptor instead.

func (*MediatedPayoutTxSignatureMessage) GetSenderNodeAddress added in v0.1.4

func (x *MediatedPayoutTxSignatureMessage) GetSenderNodeAddress() *NodeAddress

func (*MediatedPayoutTxSignatureMessage) GetTradeId added in v0.1.4

func (x *MediatedPayoutTxSignatureMessage) GetTradeId() string

func (*MediatedPayoutTxSignatureMessage) GetTxSignature added in v0.1.4

func (x *MediatedPayoutTxSignatureMessage) GetTxSignature() []byte

func (*MediatedPayoutTxSignatureMessage) GetUid added in v0.1.4

func (*MediatedPayoutTxSignatureMessage) ProtoMessage added in v0.1.4

func (*MediatedPayoutTxSignatureMessage) ProtoMessage()

func (*MediatedPayoutTxSignatureMessage) ProtoReflect added in v0.1.4

func (*MediatedPayoutTxSignatureMessage) Reset added in v0.1.4

func (*MediatedPayoutTxSignatureMessage) String added in v0.1.4

type MediationDisputeList added in v0.1.4

type MediationDisputeList struct {
	Dispute []*Dispute `protobuf:"bytes,1,rep,name=dispute,proto3" json:"dispute,omitempty"`
	// contains filtered or unexported fields
}

func (*MediationDisputeList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MediationDisputeList.ProtoReflect.Descriptor instead.

func (*MediationDisputeList) GetDispute added in v0.1.4

func (x *MediationDisputeList) GetDispute() []*Dispute

func (*MediationDisputeList) ProtoMessage added in v0.1.4

func (*MediationDisputeList) ProtoMessage()

func (*MediationDisputeList) ProtoReflect added in v0.1.4

func (x *MediationDisputeList) ProtoReflect() protoreflect.Message

func (*MediationDisputeList) Reset added in v0.1.4

func (x *MediationDisputeList) Reset()

func (*MediationDisputeList) String added in v0.1.4

func (x *MediationDisputeList) String() string

type MediationResultState added in v0.1.4

type MediationResultState int32
const (
	MediationResultState_PB_ERROR_MEDIATION_RESULT           MediationResultState = 0
	MediationResultState_UNDEFINED_MEDIATION_RESULT          MediationResultState = 1
	MediationResultState_MEDIATION_RESULT_ACCEPTED           MediationResultState = 2
	MediationResultState_MEDIATION_RESULT_REJECTED           MediationResultState = 3
	MediationResultState_SIG_MSG_SENT                        MediationResultState = 4
	MediationResultState_SIG_MSG_ARRIVED                     MediationResultState = 5
	MediationResultState_SIG_MSG_IN_MAILBOX                  MediationResultState = 6
	MediationResultState_SIG_MSG_SEND_FAILED                 MediationResultState = 7
	MediationResultState_RECEIVED_SIG_MSG                    MediationResultState = 8
	MediationResultState_PAYOUT_TX_PUBLISHED                 MediationResultState = 9
	MediationResultState_PAYOUT_TX_PUBLISHED_MSG_SENT        MediationResultState = 10
	MediationResultState_PAYOUT_TX_PUBLISHED_MSG_ARRIVED     MediationResultState = 11
	MediationResultState_PAYOUT_TX_PUBLISHED_MSG_IN_MAILBOX  MediationResultState = 12
	MediationResultState_PAYOUT_TX_PUBLISHED_MSG_SEND_FAILED MediationResultState = 13
	MediationResultState_RECEIVED_PAYOUT_TX_PUBLISHED_MSG    MediationResultState = 14
	MediationResultState_PAYOUT_TX_SEEN_IN_NETWORK           MediationResultState = 15
)

func (MediationResultState) Descriptor added in v0.1.4

func (MediationResultState) Enum added in v0.1.4

func (MediationResultState) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use MediationResultState.Descriptor instead.

func (MediationResultState) Number added in v0.1.4

func (MediationResultState) String added in v0.1.4

func (x MediationResultState) String() string

func (MediationResultState) Type added in v0.1.4

type Mediator added in v0.1.4

type Mediator struct {
	NodeAddress           *NodeAddress      `protobuf:"bytes,1,opt,name=node_address,json=nodeAddress,proto3" json:"node_address,omitempty"`
	LanguageCodes         []string          `protobuf:"bytes,2,rep,name=language_codes,json=languageCodes,proto3" json:"language_codes,omitempty"`
	RegistrationDate      int64             `protobuf:"varint,3,opt,name=registration_date,json=registrationDate,proto3" json:"registration_date,omitempty"`
	RegistrationSignature string            `protobuf:"bytes,4,opt,name=registration_signature,json=registrationSignature,proto3" json:"registration_signature,omitempty"`
	RegistrationPubKey    []byte            `protobuf:"bytes,5,opt,name=registration_pub_key,json=registrationPubKey,proto3" json:"registration_pub_key,omitempty"`
	PubKeyRing            *PubKeyRing       `protobuf:"bytes,6,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	EmailAddress          string            `protobuf:"bytes,7,opt,name=email_address,json=emailAddress,proto3" json:"email_address,omitempty"`
	Info                  string            `protobuf:"bytes,8,opt,name=info,proto3" json:"info,omitempty"`
	ExtraData             map[string]string `` /* 176-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Mediator) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Mediator.ProtoReflect.Descriptor instead.

func (*Mediator) GetEmailAddress added in v0.1.4

func (x *Mediator) GetEmailAddress() string

func (*Mediator) GetExtraData added in v0.1.4

func (x *Mediator) GetExtraData() map[string]string

func (*Mediator) GetInfo added in v0.1.4

func (x *Mediator) GetInfo() string

func (*Mediator) GetLanguageCodes added in v0.1.4

func (x *Mediator) GetLanguageCodes() []string

func (*Mediator) GetNodeAddress added in v0.1.4

func (x *Mediator) GetNodeAddress() *NodeAddress

func (*Mediator) GetPubKeyRing added in v0.1.4

func (x *Mediator) GetPubKeyRing() *PubKeyRing

func (*Mediator) GetRegistrationDate added in v0.1.4

func (x *Mediator) GetRegistrationDate() int64

func (*Mediator) GetRegistrationPubKey added in v0.1.4

func (x *Mediator) GetRegistrationPubKey() []byte

func (*Mediator) GetRegistrationSignature added in v0.1.4

func (x *Mediator) GetRegistrationSignature() string

func (*Mediator) ProtoMessage added in v0.1.4

func (*Mediator) ProtoMessage()

func (*Mediator) ProtoReflect added in v0.1.4

func (x *Mediator) ProtoReflect() protoreflect.Message

func (*Mediator) Reset added in v0.1.4

func (x *Mediator) Reset()

func (*Mediator) String added in v0.1.4

func (x *Mediator) String() string

type MercadoPagoAccountPayload added in v0.1.14

type MercadoPagoAccountPayload struct {
	HolderName string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	HolderId   string `protobuf:"bytes,2,opt,name=holder_id,json=holderId,proto3" json:"holder_id,omitempty"`
	// contains filtered or unexported fields
}

func (*MercadoPagoAccountPayload) Descriptor deprecated added in v0.1.14

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

Deprecated: Use MercadoPagoAccountPayload.ProtoReflect.Descriptor instead.

func (*MercadoPagoAccountPayload) GetHolderId added in v0.1.14

func (x *MercadoPagoAccountPayload) GetHolderId() string

func (*MercadoPagoAccountPayload) GetHolderName added in v0.1.14

func (x *MercadoPagoAccountPayload) GetHolderName() string

func (*MercadoPagoAccountPayload) ProtoMessage added in v0.1.14

func (*MercadoPagoAccountPayload) ProtoMessage()

func (*MercadoPagoAccountPayload) ProtoReflect added in v0.1.14

func (*MercadoPagoAccountPayload) Reset added in v0.1.14

func (x *MercadoPagoAccountPayload) Reset()

func (*MercadoPagoAccountPayload) String added in v0.1.14

func (x *MercadoPagoAccountPayload) String() string

type Merit added in v0.1.4

type Merit struct {
	Issuance  *Issuance `protobuf:"bytes,1,opt,name=issuance,proto3" json:"issuance,omitempty"`
	Signature []byte    `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
	// contains filtered or unexported fields
}

func (*Merit) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Merit.ProtoReflect.Descriptor instead.

func (*Merit) GetIssuance added in v0.1.4

func (x *Merit) GetIssuance() *Issuance

func (*Merit) GetSignature added in v0.1.4

func (x *Merit) GetSignature() []byte

func (*Merit) ProtoMessage added in v0.1.4

func (*Merit) ProtoMessage()

func (*Merit) ProtoReflect added in v0.1.4

func (x *Merit) ProtoReflect() protoreflect.Message

func (*Merit) Reset added in v0.1.4

func (x *Merit) Reset()

func (*Merit) String added in v0.1.4

func (x *Merit) String() string

type MeritList added in v0.1.4

type MeritList struct {
	Merit []*Merit `protobuf:"bytes,1,rep,name=merit,proto3" json:"merit,omitempty"`
	// contains filtered or unexported fields
}

func (*MeritList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MeritList.ProtoReflect.Descriptor instead.

func (*MeritList) GetMerit added in v0.1.4

func (x *MeritList) GetMerit() []*Merit

func (*MeritList) ProtoMessage added in v0.1.4

func (*MeritList) ProtoMessage()

func (*MeritList) ProtoReflect added in v0.1.4

func (x *MeritList) ProtoReflect() protoreflect.Message

func (*MeritList) Reset added in v0.1.4

func (x *MeritList) Reset()

func (*MeritList) String added in v0.1.4

func (x *MeritList) String() string

type MockMailboxPayload added in v0.1.4

type MockMailboxPayload struct {
	Message           string       `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	SenderNodeAddress *NodeAddress `protobuf:"bytes,2,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Uid               string       `protobuf:"bytes,3,opt,name=uid,proto3" json:"uid,omitempty"`
	// contains filtered or unexported fields
}

func (*MockMailboxPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MockMailboxPayload.ProtoReflect.Descriptor instead.

func (*MockMailboxPayload) GetMessage added in v0.1.4

func (x *MockMailboxPayload) GetMessage() string

func (*MockMailboxPayload) GetSenderNodeAddress added in v0.1.4

func (x *MockMailboxPayload) GetSenderNodeAddress() *NodeAddress

func (*MockMailboxPayload) GetUid added in v0.1.4

func (x *MockMailboxPayload) GetUid() string

func (*MockMailboxPayload) ProtoMessage added in v0.1.4

func (*MockMailboxPayload) ProtoMessage()

func (*MockMailboxPayload) ProtoReflect added in v0.1.4

func (x *MockMailboxPayload) ProtoReflect() protoreflect.Message

func (*MockMailboxPayload) Reset added in v0.1.4

func (x *MockMailboxPayload) Reset()

func (*MockMailboxPayload) String added in v0.1.4

func (x *MockMailboxPayload) String() string

type MockPayload added in v0.1.4

type MockPayload struct {
	MessageVersion string `protobuf:"bytes,1,opt,name=message_version,json=messageVersion,proto3" json:"message_version,omitempty"`
	Message        string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*MockPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MockPayload.ProtoReflect.Descriptor instead.

func (*MockPayload) GetMessage added in v0.1.4

func (x *MockPayload) GetMessage() string

func (*MockPayload) GetMessageVersion added in v0.1.4

func (x *MockPayload) GetMessageVersion() string

func (*MockPayload) ProtoMessage added in v0.1.4

func (*MockPayload) ProtoMessage()

func (*MockPayload) ProtoReflect added in v0.1.4

func (x *MockPayload) ProtoReflect() protoreflect.Message

func (*MockPayload) Reset added in v0.1.4

func (x *MockPayload) Reset()

func (*MockPayload) String added in v0.1.4

func (x *MockPayload) String() string

type MoneseAccountPayload added in v0.1.6

type MoneseAccountPayload struct {
	MobileNr   string `protobuf:"bytes,1,opt,name=mobile_nr,json=mobileNr,proto3" json:"mobile_nr,omitempty"`
	HolderName string `protobuf:"bytes,2,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	// contains filtered or unexported fields
}

func (*MoneseAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use MoneseAccountPayload.ProtoReflect.Descriptor instead.

func (*MoneseAccountPayload) GetHolderName added in v0.1.6

func (x *MoneseAccountPayload) GetHolderName() string

func (*MoneseAccountPayload) GetMobileNr added in v0.1.6

func (x *MoneseAccountPayload) GetMobileNr() string

func (*MoneseAccountPayload) ProtoMessage added in v0.1.6

func (*MoneseAccountPayload) ProtoMessage()

func (*MoneseAccountPayload) ProtoReflect added in v0.1.6

func (x *MoneseAccountPayload) ProtoReflect() protoreflect.Message

func (*MoneseAccountPayload) Reset added in v0.1.6

func (x *MoneseAccountPayload) Reset()

func (*MoneseAccountPayload) String added in v0.1.6

func (x *MoneseAccountPayload) String() string

type MoneyBeamAccountPayload added in v0.1.4

type MoneyBeamAccountPayload struct {
	AccountId string `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	// contains filtered or unexported fields
}

func (*MoneyBeamAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MoneyBeamAccountPayload.ProtoReflect.Descriptor instead.

func (*MoneyBeamAccountPayload) GetAccountId added in v0.1.4

func (x *MoneyBeamAccountPayload) GetAccountId() string

func (*MoneyBeamAccountPayload) ProtoMessage added in v0.1.4

func (*MoneyBeamAccountPayload) ProtoMessage()

func (*MoneyBeamAccountPayload) ProtoReflect added in v0.1.4

func (x *MoneyBeamAccountPayload) ProtoReflect() protoreflect.Message

func (*MoneyBeamAccountPayload) Reset added in v0.1.4

func (x *MoneyBeamAccountPayload) Reset()

func (*MoneyBeamAccountPayload) String added in v0.1.4

func (x *MoneyBeamAccountPayload) String() string

type MoneyGramAccountPayload added in v0.1.4

type MoneyGramAccountPayload struct {
	HolderName  string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	CountryCode string `protobuf:"bytes,2,opt,name=country_code,json=countryCode,proto3" json:"country_code,omitempty"`
	State       string `protobuf:"bytes,3,opt,name=state,proto3" json:"state,omitempty"`
	Email       string `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*MoneyGramAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MoneyGramAccountPayload.ProtoReflect.Descriptor instead.

func (*MoneyGramAccountPayload) GetCountryCode added in v0.1.4

func (x *MoneyGramAccountPayload) GetCountryCode() string

func (*MoneyGramAccountPayload) GetEmail added in v0.1.4

func (x *MoneyGramAccountPayload) GetEmail() string

func (*MoneyGramAccountPayload) GetHolderName added in v0.1.4

func (x *MoneyGramAccountPayload) GetHolderName() string

func (*MoneyGramAccountPayload) GetState added in v0.1.4

func (x *MoneyGramAccountPayload) GetState() string

func (*MoneyGramAccountPayload) ProtoMessage added in v0.1.4

func (*MoneyGramAccountPayload) ProtoMessage()

func (*MoneyGramAccountPayload) ProtoReflect added in v0.1.4

func (x *MoneyGramAccountPayload) ProtoReflect() protoreflect.Message

func (*MoneyGramAccountPayload) Reset added in v0.1.4

func (x *MoneyGramAccountPayload) Reset()

func (*MoneyGramAccountPayload) String added in v0.1.4

func (x *MoneyGramAccountPayload) String() string

type MyBlindVoteList added in v0.1.4

type MyBlindVoteList struct {
	BlindVote []*BlindVote `protobuf:"bytes,1,rep,name=blind_vote,json=blindVote,proto3" json:"blind_vote,omitempty"`
	// contains filtered or unexported fields
}

func (*MyBlindVoteList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MyBlindVoteList.ProtoReflect.Descriptor instead.

func (*MyBlindVoteList) GetBlindVote added in v0.1.4

func (x *MyBlindVoteList) GetBlindVote() []*BlindVote

func (*MyBlindVoteList) ProtoMessage added in v0.1.4

func (*MyBlindVoteList) ProtoMessage()

func (*MyBlindVoteList) ProtoReflect added in v0.1.4

func (x *MyBlindVoteList) ProtoReflect() protoreflect.Message

func (*MyBlindVoteList) Reset added in v0.1.4

func (x *MyBlindVoteList) Reset()

func (*MyBlindVoteList) String added in v0.1.4

func (x *MyBlindVoteList) String() string

type MyProofOfBurn added in v0.1.4

type MyProofOfBurn struct {
	TxId     string `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	PreImage string `protobuf:"bytes,2,opt,name=pre_image,json=preImage,proto3" json:"pre_image,omitempty"`
	// contains filtered or unexported fields
}

func (*MyProofOfBurn) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MyProofOfBurn.ProtoReflect.Descriptor instead.

func (*MyProofOfBurn) GetPreImage added in v0.1.4

func (x *MyProofOfBurn) GetPreImage() string

func (*MyProofOfBurn) GetTxId added in v0.1.4

func (x *MyProofOfBurn) GetTxId() string

func (*MyProofOfBurn) ProtoMessage added in v0.1.4

func (*MyProofOfBurn) ProtoMessage()

func (*MyProofOfBurn) ProtoReflect added in v0.1.4

func (x *MyProofOfBurn) ProtoReflect() protoreflect.Message

func (*MyProofOfBurn) Reset added in v0.1.4

func (x *MyProofOfBurn) Reset()

func (*MyProofOfBurn) String added in v0.1.4

func (x *MyProofOfBurn) String() string

type MyProofOfBurnList added in v0.1.4

type MyProofOfBurnList struct {
	MyProofOfBurn []*MyProofOfBurn `protobuf:"bytes,1,rep,name=my_proof_of_burn,json=myProofOfBurn,proto3" json:"my_proof_of_burn,omitempty"`
	// contains filtered or unexported fields
}

func (*MyProofOfBurnList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MyProofOfBurnList.ProtoReflect.Descriptor instead.

func (*MyProofOfBurnList) GetMyProofOfBurn added in v0.1.4

func (x *MyProofOfBurnList) GetMyProofOfBurn() []*MyProofOfBurn

func (*MyProofOfBurnList) ProtoMessage added in v0.1.4

func (*MyProofOfBurnList) ProtoMessage()

func (*MyProofOfBurnList) ProtoReflect added in v0.1.4

func (x *MyProofOfBurnList) ProtoReflect() protoreflect.Message

func (*MyProofOfBurnList) Reset added in v0.1.4

func (x *MyProofOfBurnList) Reset()

func (*MyProofOfBurnList) String added in v0.1.4

func (x *MyProofOfBurnList) String() string

type MyProposalList added in v0.1.4

type MyProposalList struct {
	Proposal []*Proposal `protobuf:"bytes,1,rep,name=proposal,proto3" json:"proposal,omitempty"`
	// contains filtered or unexported fields
}

func (*MyProposalList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MyProposalList.ProtoReflect.Descriptor instead.

func (*MyProposalList) GetProposal added in v0.1.4

func (x *MyProposalList) GetProposal() []*Proposal

func (*MyProposalList) ProtoMessage added in v0.1.4

func (*MyProposalList) ProtoMessage()

func (*MyProposalList) ProtoReflect added in v0.1.4

func (x *MyProposalList) ProtoReflect() protoreflect.Message

func (*MyProposalList) Reset added in v0.1.4

func (x *MyProposalList) Reset()

func (*MyProposalList) String added in v0.1.4

func (x *MyProposalList) String() string

type MyReputation added in v0.1.4

type MyReputation struct {
	Uid  string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Salt []byte `protobuf:"bytes,2,opt,name=salt,proto3" json:"salt,omitempty"`
	// contains filtered or unexported fields
}

func (*MyReputation) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MyReputation.ProtoReflect.Descriptor instead.

func (*MyReputation) GetSalt added in v0.1.4

func (x *MyReputation) GetSalt() []byte

func (*MyReputation) GetUid added in v0.1.4

func (x *MyReputation) GetUid() string

func (*MyReputation) ProtoMessage added in v0.1.4

func (*MyReputation) ProtoMessage()

func (*MyReputation) ProtoReflect added in v0.1.4

func (x *MyReputation) ProtoReflect() protoreflect.Message

func (*MyReputation) Reset added in v0.1.4

func (x *MyReputation) Reset()

func (*MyReputation) String added in v0.1.4

func (x *MyReputation) String() string

type MyReputationList added in v0.1.4

type MyReputationList struct {
	MyReputation []*MyReputation `protobuf:"bytes,1,rep,name=my_reputation,json=myReputation,proto3" json:"my_reputation,omitempty"`
	// contains filtered or unexported fields
}

func (*MyReputationList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MyReputationList.ProtoReflect.Descriptor instead.

func (*MyReputationList) GetMyReputation added in v0.1.4

func (x *MyReputationList) GetMyReputation() []*MyReputation

func (*MyReputationList) ProtoMessage added in v0.1.4

func (*MyReputationList) ProtoMessage()

func (*MyReputationList) ProtoReflect added in v0.1.4

func (x *MyReputationList) ProtoReflect() protoreflect.Message

func (*MyReputationList) Reset added in v0.1.4

func (x *MyReputationList) Reset()

func (*MyReputationList) String added in v0.1.4

func (x *MyReputationList) String() string

type MyVote added in v0.1.4

type MyVote struct {
	Height           int32       `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	BallotList       *BallotList `protobuf:"bytes,2,opt,name=ballot_list,json=ballotList,proto3" json:"ballot_list,omitempty"`
	SecretKeyEncoded []byte      `protobuf:"bytes,3,opt,name=secret_key_encoded,json=secretKeyEncoded,proto3" json:"secret_key_encoded,omitempty"`
	BlindVote        *BlindVote  `protobuf:"bytes,4,opt,name=blind_vote,json=blindVote,proto3" json:"blind_vote,omitempty"`
	Date             int64       `protobuf:"varint,5,opt,name=date,proto3" json:"date,omitempty"`
	RevealTxId       string      `protobuf:"bytes,6,opt,name=reveal_tx_id,json=revealTxId,proto3" json:"reveal_tx_id,omitempty"`
	// contains filtered or unexported fields
}

func (*MyVote) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MyVote.ProtoReflect.Descriptor instead.

func (*MyVote) GetBallotList added in v0.1.4

func (x *MyVote) GetBallotList() *BallotList

func (*MyVote) GetBlindVote added in v0.1.4

func (x *MyVote) GetBlindVote() *BlindVote

func (*MyVote) GetDate added in v0.1.4

func (x *MyVote) GetDate() int64

func (*MyVote) GetHeight added in v0.1.4

func (x *MyVote) GetHeight() int32

func (*MyVote) GetRevealTxId added in v0.1.4

func (x *MyVote) GetRevealTxId() string

func (*MyVote) GetSecretKeyEncoded added in v0.1.4

func (x *MyVote) GetSecretKeyEncoded() []byte

func (*MyVote) ProtoMessage added in v0.1.4

func (*MyVote) ProtoMessage()

func (*MyVote) ProtoReflect added in v0.1.4

func (x *MyVote) ProtoReflect() protoreflect.Message

func (*MyVote) Reset added in v0.1.4

func (x *MyVote) Reset()

func (*MyVote) String added in v0.1.4

func (x *MyVote) String() string

type MyVoteList added in v0.1.4

type MyVoteList struct {
	MyVote []*MyVote `protobuf:"bytes,1,rep,name=my_vote,json=myVote,proto3" json:"my_vote,omitempty"`
	// contains filtered or unexported fields
}

func (*MyVoteList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use MyVoteList.ProtoReflect.Descriptor instead.

func (*MyVoteList) GetMyVote added in v0.1.4

func (x *MyVoteList) GetMyVote() []*MyVote

func (*MyVoteList) ProtoMessage added in v0.1.4

func (*MyVoteList) ProtoMessage()

func (*MyVoteList) ProtoReflect added in v0.1.4

func (x *MyVoteList) ProtoReflect() protoreflect.Message

func (*MyVoteList) Reset added in v0.1.4

func (x *MyVoteList) Reset()

func (*MyVoteList) String added in v0.1.4

func (x *MyVoteList) String() string

type NationalBankAccountPayload added in v0.1.4

type NationalBankAccountPayload struct {
	// contains filtered or unexported fields
}

func (*NationalBankAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use NationalBankAccountPayload.ProtoReflect.Descriptor instead.

func (*NationalBankAccountPayload) ProtoMessage added in v0.1.4

func (*NationalBankAccountPayload) ProtoMessage()

func (*NationalBankAccountPayload) ProtoReflect added in v0.1.4

func (*NationalBankAccountPayload) Reset added in v0.1.4

func (x *NationalBankAccountPayload) Reset()

func (*NationalBankAccountPayload) String added in v0.1.4

func (x *NationalBankAccountPayload) String() string
type NavigationPath struct {
	Path []string `protobuf:"bytes,1,rep,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}
func (*NavigationPath) Descriptor() ([]byte, []int)

Deprecated: Use NavigationPath.ProtoReflect.Descriptor instead.

func (x *NavigationPath) GetPath() []string
func (*NavigationPath) ProtoMessage()
func (x *NavigationPath) ProtoReflect() protoreflect.Message
func (x *NavigationPath) Reset()
func (x *NavigationPath) String() string

type NeftAccountPayload added in v0.1.6

type NeftAccountPayload struct {
	// contains filtered or unexported fields
}

func (*NeftAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use NeftAccountPayload.ProtoReflect.Descriptor instead.

func (*NeftAccountPayload) ProtoMessage added in v0.1.6

func (*NeftAccountPayload) ProtoMessage()

func (*NeftAccountPayload) ProtoReflect added in v0.1.6

func (x *NeftAccountPayload) ProtoReflect() protoreflect.Message

func (*NeftAccountPayload) Reset added in v0.1.6

func (x *NeftAccountPayload) Reset()

func (*NeftAccountPayload) String added in v0.1.6

func (x *NeftAccountPayload) String() string

type NequiAccountPayload added in v0.1.6

type NequiAccountPayload struct {
	MobileNr string `protobuf:"bytes,1,opt,name=mobile_nr,json=mobileNr,proto3" json:"mobile_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*NequiAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use NequiAccountPayload.ProtoReflect.Descriptor instead.

func (*NequiAccountPayload) GetMobileNr added in v0.1.6

func (x *NequiAccountPayload) GetMobileNr() string

func (*NequiAccountPayload) ProtoMessage added in v0.1.6

func (*NequiAccountPayload) ProtoMessage()

func (*NequiAccountPayload) ProtoReflect added in v0.1.6

func (x *NequiAccountPayload) ProtoReflect() protoreflect.Message

func (*NequiAccountPayload) Reset added in v0.1.6

func (x *NequiAccountPayload) Reset()

func (*NequiAccountPayload) String added in v0.1.6

func (x *NequiAccountPayload) String() string

type NetworkEnvelope added in v0.1.4

type NetworkEnvelope struct {
	MessageVersion int32 `protobuf:"varint,1,opt,name=message_version,json=messageVersion,proto3" json:"message_version,omitempty"`
	// Types that are assignable to Message:
	//
	//	*NetworkEnvelope_PreliminaryGetDataRequest
	//	*NetworkEnvelope_GetDataResponse
	//	*NetworkEnvelope_GetUpdatedDataRequest
	//	*NetworkEnvelope_GetPeersRequest
	//	*NetworkEnvelope_GetPeersResponse
	//	*NetworkEnvelope_Ping
	//	*NetworkEnvelope_Pong
	//	*NetworkEnvelope_OfferAvailabilityRequest
	//	*NetworkEnvelope_OfferAvailabilityResponse
	//	*NetworkEnvelope_RefreshOfferMessage
	//	*NetworkEnvelope_AddDataMessage
	//	*NetworkEnvelope_RemoveDataMessage
	//	*NetworkEnvelope_RemoveMailboxDataMessage
	//	*NetworkEnvelope_CloseConnectionMessage
	//	*NetworkEnvelope_PrefixedSealedAndSignedMessage
	//	*NetworkEnvelope_InputsForDepositTxRequest
	//	*NetworkEnvelope_InputsForDepositTxResponse
	//	*NetworkEnvelope_DepositTxMessage
	//	*NetworkEnvelope_CounterCurrencyTransferStartedMessage
	//	*NetworkEnvelope_PayoutTxPublishedMessage
	//	*NetworkEnvelope_OpenNewDisputeMessage
	//	*NetworkEnvelope_PeerOpenedDisputeMessage
	//	*NetworkEnvelope_ChatMessage
	//	*NetworkEnvelope_DisputeResultMessage
	//	*NetworkEnvelope_PeerPublishedDisputePayoutTxMessage
	//	*NetworkEnvelope_PrivateNotificationMessage
	//	*NetworkEnvelope_GetBlocksRequest
	//	*NetworkEnvelope_GetBlocksResponse
	//	*NetworkEnvelope_NewBlockBroadcastMessage
	//	*NetworkEnvelope_AddPersistableNetworkPayloadMessage
	//	*NetworkEnvelope_AckMessage
	//	*NetworkEnvelope_RepublishGovernanceDataRequest
	//	*NetworkEnvelope_NewDaoStateHashMessage
	//	*NetworkEnvelope_GetDaoStateHashesRequest
	//	*NetworkEnvelope_GetDaoStateHashesResponse
	//	*NetworkEnvelope_NewProposalStateHashMessage
	//	*NetworkEnvelope_GetProposalStateHashesRequest
	//	*NetworkEnvelope_GetProposalStateHashesResponse
	//	*NetworkEnvelope_NewBlindVoteStateHashMessage
	//	*NetworkEnvelope_GetBlindVoteStateHashesRequest
	//	*NetworkEnvelope_GetBlindVoteStateHashesResponse
	//	*NetworkEnvelope_BundleOfEnvelopes
	//	*NetworkEnvelope_MediatedPayoutTxSignatureMessage
	//	*NetworkEnvelope_MediatedPayoutTxPublishedMessage
	//	*NetworkEnvelope_DelayedPayoutTxSignatureRequest
	//	*NetworkEnvelope_DelayedPayoutTxSignatureResponse
	//	*NetworkEnvelope_DepositTxAndDelayedPayoutTxMessage
	//	*NetworkEnvelope_PeerPublishedDelayedPayoutTxMessage
	//	*NetworkEnvelope_RefreshTradeStateRequest
	//	*NetworkEnvelope_TraderSignedWitnessMessage
	//	*NetworkEnvelope_GetInventoryRequest
	//	*NetworkEnvelope_GetInventoryResponse
	//	*NetworkEnvelope_ShareBuyerPaymentAccountMessage
	//	*NetworkEnvelope_SellersBsqSwapRequest
	//	*NetworkEnvelope_BuyersBsqSwapRequest
	//	*NetworkEnvelope_BsqSwapTxInputsMessage
	//	*NetworkEnvelope_BsqSwapFinalizeTxRequest
	//	*NetworkEnvelope_BsqSwapFinalizedTxMessage
	//	*NetworkEnvelope_FileTransferPart
	//	*NetworkEnvelope_GetAccountingBlocksRequest
	//	*NetworkEnvelope_GetAccountingBlocksResponse
	//	*NetworkEnvelope_NewAccountingBlockBroadcastMessage
	Message isNetworkEnvelope_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*NetworkEnvelope) Descriptor deprecated added in v0.1.4

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

Deprecated: Use NetworkEnvelope.ProtoReflect.Descriptor instead.

func (*NetworkEnvelope) GetAckMessage added in v0.1.4

func (x *NetworkEnvelope) GetAckMessage() *AckMessage

func (*NetworkEnvelope) GetAddDataMessage added in v0.1.4

func (x *NetworkEnvelope) GetAddDataMessage() *AddDataMessage

func (*NetworkEnvelope) GetAddPersistableNetworkPayloadMessage added in v0.1.4

func (x *NetworkEnvelope) GetAddPersistableNetworkPayloadMessage() *AddPersistableNetworkPayloadMessage

func (*NetworkEnvelope) GetBsqSwapFinalizeTxRequest added in v0.1.6

func (x *NetworkEnvelope) GetBsqSwapFinalizeTxRequest() *BsqSwapFinalizeTxRequest

func (*NetworkEnvelope) GetBsqSwapFinalizedTxMessage added in v0.1.6

func (x *NetworkEnvelope) GetBsqSwapFinalizedTxMessage() *BsqSwapFinalizedTxMessage

func (*NetworkEnvelope) GetBsqSwapTxInputsMessage added in v0.1.6

func (x *NetworkEnvelope) GetBsqSwapTxInputsMessage() *BsqSwapTxInputsMessage

func (*NetworkEnvelope) GetBundleOfEnvelopes added in v0.1.4

func (x *NetworkEnvelope) GetBundleOfEnvelopes() *BundleOfEnvelopes

func (*NetworkEnvelope) GetBuyersBsqSwapRequest added in v0.1.6

func (x *NetworkEnvelope) GetBuyersBsqSwapRequest() *BuyersBsqSwapRequest

func (*NetworkEnvelope) GetChatMessage added in v0.1.4

func (x *NetworkEnvelope) GetChatMessage() *ChatMessage

func (*NetworkEnvelope) GetCloseConnectionMessage added in v0.1.4

func (x *NetworkEnvelope) GetCloseConnectionMessage() *CloseConnectionMessage

func (*NetworkEnvelope) GetCounterCurrencyTransferStartedMessage added in v0.1.4

func (x *NetworkEnvelope) GetCounterCurrencyTransferStartedMessage() *CounterCurrencyTransferStartedMessage

func (*NetworkEnvelope) GetDelayedPayoutTxSignatureRequest added in v0.1.4

func (x *NetworkEnvelope) GetDelayedPayoutTxSignatureRequest() *DelayedPayoutTxSignatureRequest

func (*NetworkEnvelope) GetDelayedPayoutTxSignatureResponse added in v0.1.4

func (x *NetworkEnvelope) GetDelayedPayoutTxSignatureResponse() *DelayedPayoutTxSignatureResponse

func (*NetworkEnvelope) GetDepositTxAndDelayedPayoutTxMessage added in v0.1.4

func (x *NetworkEnvelope) GetDepositTxAndDelayedPayoutTxMessage() *DepositTxAndDelayedPayoutTxMessage

func (*NetworkEnvelope) GetDepositTxMessage added in v0.1.4

func (x *NetworkEnvelope) GetDepositTxMessage() *DepositTxMessage

func (*NetworkEnvelope) GetDisputeResultMessage added in v0.1.4

func (x *NetworkEnvelope) GetDisputeResultMessage() *DisputeResultMessage

func (*NetworkEnvelope) GetFileTransferPart added in v0.1.9

func (x *NetworkEnvelope) GetFileTransferPart() *FileTransferPart

func (*NetworkEnvelope) GetGetAccountingBlocksRequest added in v0.1.10

func (x *NetworkEnvelope) GetGetAccountingBlocksRequest() *GetAccountingBlocksRequest

func (*NetworkEnvelope) GetGetAccountingBlocksResponse added in v0.1.10

func (x *NetworkEnvelope) GetGetAccountingBlocksResponse() *GetAccountingBlocksResponse

func (*NetworkEnvelope) GetGetBlindVoteStateHashesRequest added in v0.1.4

func (x *NetworkEnvelope) GetGetBlindVoteStateHashesRequest() *GetBlindVoteStateHashesRequest

func (*NetworkEnvelope) GetGetBlindVoteStateHashesResponse added in v0.1.4

func (x *NetworkEnvelope) GetGetBlindVoteStateHashesResponse() *GetBlindVoteStateHashesResponse

func (*NetworkEnvelope) GetGetBlocksRequest added in v0.1.4

func (x *NetworkEnvelope) GetGetBlocksRequest() *GetBlocksRequest

func (*NetworkEnvelope) GetGetBlocksResponse added in v0.1.4

func (x *NetworkEnvelope) GetGetBlocksResponse() *GetBlocksResponse

func (*NetworkEnvelope) GetGetDaoStateHashesRequest added in v0.1.4

func (x *NetworkEnvelope) GetGetDaoStateHashesRequest() *GetDaoStateHashesRequest

func (*NetworkEnvelope) GetGetDaoStateHashesResponse added in v0.1.4

func (x *NetworkEnvelope) GetGetDaoStateHashesResponse() *GetDaoStateHashesResponse

func (*NetworkEnvelope) GetGetDataResponse added in v0.1.4

func (x *NetworkEnvelope) GetGetDataResponse() *GetDataResponse

func (*NetworkEnvelope) GetGetInventoryRequest added in v0.1.4

func (x *NetworkEnvelope) GetGetInventoryRequest() *GetInventoryRequest

func (*NetworkEnvelope) GetGetInventoryResponse added in v0.1.4

func (x *NetworkEnvelope) GetGetInventoryResponse() *GetInventoryResponse

func (*NetworkEnvelope) GetGetPeersRequest added in v0.1.4

func (x *NetworkEnvelope) GetGetPeersRequest() *GetPeersRequest

func (*NetworkEnvelope) GetGetPeersResponse added in v0.1.4

func (x *NetworkEnvelope) GetGetPeersResponse() *GetPeersResponse

func (*NetworkEnvelope) GetGetProposalStateHashesRequest added in v0.1.4

func (x *NetworkEnvelope) GetGetProposalStateHashesRequest() *GetProposalStateHashesRequest

func (*NetworkEnvelope) GetGetProposalStateHashesResponse added in v0.1.4

func (x *NetworkEnvelope) GetGetProposalStateHashesResponse() *GetProposalStateHashesResponse

func (*NetworkEnvelope) GetGetUpdatedDataRequest added in v0.1.4

func (x *NetworkEnvelope) GetGetUpdatedDataRequest() *GetUpdatedDataRequest

func (*NetworkEnvelope) GetInputsForDepositTxRequest added in v0.1.4

func (x *NetworkEnvelope) GetInputsForDepositTxRequest() *InputsForDepositTxRequest

func (*NetworkEnvelope) GetInputsForDepositTxResponse added in v0.1.4

func (x *NetworkEnvelope) GetInputsForDepositTxResponse() *InputsForDepositTxResponse

func (*NetworkEnvelope) GetMediatedPayoutTxPublishedMessage added in v0.1.4

func (x *NetworkEnvelope) GetMediatedPayoutTxPublishedMessage() *MediatedPayoutTxPublishedMessage

func (*NetworkEnvelope) GetMediatedPayoutTxSignatureMessage added in v0.1.4

func (x *NetworkEnvelope) GetMediatedPayoutTxSignatureMessage() *MediatedPayoutTxSignatureMessage

func (*NetworkEnvelope) GetMessage added in v0.1.4

func (m *NetworkEnvelope) GetMessage() isNetworkEnvelope_Message

func (*NetworkEnvelope) GetMessageVersion added in v0.1.4

func (x *NetworkEnvelope) GetMessageVersion() int32

func (*NetworkEnvelope) GetNewAccountingBlockBroadcastMessage added in v0.1.10

func (x *NetworkEnvelope) GetNewAccountingBlockBroadcastMessage() *NewAccountingBlockBroadcastMessage

func (*NetworkEnvelope) GetNewBlindVoteStateHashMessage added in v0.1.4

func (x *NetworkEnvelope) GetNewBlindVoteStateHashMessage() *NewBlindVoteStateHashMessage

func (*NetworkEnvelope) GetNewBlockBroadcastMessage added in v0.1.4

func (x *NetworkEnvelope) GetNewBlockBroadcastMessage() *NewBlockBroadcastMessage

func (*NetworkEnvelope) GetNewDaoStateHashMessage added in v0.1.4

func (x *NetworkEnvelope) GetNewDaoStateHashMessage() *NewDaoStateHashMessage

func (*NetworkEnvelope) GetNewProposalStateHashMessage added in v0.1.4

func (x *NetworkEnvelope) GetNewProposalStateHashMessage() *NewProposalStateHashMessage

func (*NetworkEnvelope) GetOfferAvailabilityRequest added in v0.1.4

func (x *NetworkEnvelope) GetOfferAvailabilityRequest() *OfferAvailabilityRequest

func (*NetworkEnvelope) GetOfferAvailabilityResponse added in v0.1.4

func (x *NetworkEnvelope) GetOfferAvailabilityResponse() *OfferAvailabilityResponse

func (*NetworkEnvelope) GetOpenNewDisputeMessage added in v0.1.4

func (x *NetworkEnvelope) GetOpenNewDisputeMessage() *OpenNewDisputeMessage

func (*NetworkEnvelope) GetPayoutTxPublishedMessage added in v0.1.4

func (x *NetworkEnvelope) GetPayoutTxPublishedMessage() *PayoutTxPublishedMessage

func (*NetworkEnvelope) GetPeerOpenedDisputeMessage added in v0.1.4

func (x *NetworkEnvelope) GetPeerOpenedDisputeMessage() *PeerOpenedDisputeMessage

func (*NetworkEnvelope) GetPeerPublishedDelayedPayoutTxMessage added in v0.1.4

func (x *NetworkEnvelope) GetPeerPublishedDelayedPayoutTxMessage() *PeerPublishedDelayedPayoutTxMessage

func (*NetworkEnvelope) GetPeerPublishedDisputePayoutTxMessage added in v0.1.4

func (x *NetworkEnvelope) GetPeerPublishedDisputePayoutTxMessage() *PeerPublishedDisputePayoutTxMessage

func (*NetworkEnvelope) GetPing added in v0.1.4

func (x *NetworkEnvelope) GetPing() *Ping

func (*NetworkEnvelope) GetPong added in v0.1.4

func (x *NetworkEnvelope) GetPong() *Pong

func (*NetworkEnvelope) GetPrefixedSealedAndSignedMessage added in v0.1.4

func (x *NetworkEnvelope) GetPrefixedSealedAndSignedMessage() *PrefixedSealedAndSignedMessage

func (*NetworkEnvelope) GetPreliminaryGetDataRequest added in v0.1.4

func (x *NetworkEnvelope) GetPreliminaryGetDataRequest() *PreliminaryGetDataRequest

func (*NetworkEnvelope) GetPrivateNotificationMessage added in v0.1.4

func (x *NetworkEnvelope) GetPrivateNotificationMessage() *PrivateNotificationMessage

func (*NetworkEnvelope) GetRefreshOfferMessage added in v0.1.4

func (x *NetworkEnvelope) GetRefreshOfferMessage() *RefreshOfferMessage

func (*NetworkEnvelope) GetRefreshTradeStateRequest deprecated added in v0.1.4

func (x *NetworkEnvelope) GetRefreshTradeStateRequest() *RefreshTradeStateRequest

Deprecated: Marked as deprecated in pb.proto.

func (*NetworkEnvelope) GetRemoveDataMessage added in v0.1.4

func (x *NetworkEnvelope) GetRemoveDataMessage() *RemoveDataMessage

func (*NetworkEnvelope) GetRemoveMailboxDataMessage added in v0.1.4

func (x *NetworkEnvelope) GetRemoveMailboxDataMessage() *RemoveMailboxDataMessage

func (*NetworkEnvelope) GetRepublishGovernanceDataRequest added in v0.1.4

func (x *NetworkEnvelope) GetRepublishGovernanceDataRequest() *RepublishGovernanceDataRequest

func (*NetworkEnvelope) GetSellersBsqSwapRequest added in v0.1.6

func (x *NetworkEnvelope) GetSellersBsqSwapRequest() *SellersBsqSwapRequest

func (*NetworkEnvelope) GetShareBuyerPaymentAccountMessage added in v0.1.5

func (x *NetworkEnvelope) GetShareBuyerPaymentAccountMessage() *ShareBuyerPaymentAccountMessage

func (*NetworkEnvelope) GetTraderSignedWitnessMessage deprecated added in v0.1.4

func (x *NetworkEnvelope) GetTraderSignedWitnessMessage() *TraderSignedWitnessMessage

Deprecated: Marked as deprecated in pb.proto.

func (*NetworkEnvelope) ProtoMessage added in v0.1.4

func (*NetworkEnvelope) ProtoMessage()

func (*NetworkEnvelope) ProtoReflect added in v0.1.4

func (x *NetworkEnvelope) ProtoReflect() protoreflect.Message

func (*NetworkEnvelope) Reset added in v0.1.4

func (x *NetworkEnvelope) Reset()

func (*NetworkEnvelope) String added in v0.1.4

func (x *NetworkEnvelope) String() string

type NetworkEnvelope_AckMessage added in v0.1.4

type NetworkEnvelope_AckMessage struct {
	AckMessage *AckMessage `protobuf:"bytes,32,opt,name=ack_message,json=ackMessage,proto3,oneof"`
}

type NetworkEnvelope_AddDataMessage added in v0.1.4

type NetworkEnvelope_AddDataMessage struct {
	AddDataMessage *AddDataMessage `protobuf:"bytes,12,opt,name=add_data_message,json=addDataMessage,proto3,oneof"`
}

type NetworkEnvelope_AddPersistableNetworkPayloadMessage added in v0.1.4

type NetworkEnvelope_AddPersistableNetworkPayloadMessage struct {
	AddPersistableNetworkPayloadMessage *AddPersistableNetworkPayloadMessage `protobuf:"bytes,31,opt,name=add_persistable_network_payload_message,json=addPersistableNetworkPayloadMessage,proto3,oneof"`
}

type NetworkEnvelope_BsqSwapFinalizeTxRequest added in v0.1.6

type NetworkEnvelope_BsqSwapFinalizeTxRequest struct {
	BsqSwapFinalizeTxRequest *BsqSwapFinalizeTxRequest `protobuf:"bytes,58,opt,name=bsq_swap_finalize_tx_request,json=bsqSwapFinalizeTxRequest,proto3,oneof"`
}

type NetworkEnvelope_BsqSwapFinalizedTxMessage added in v0.1.6

type NetworkEnvelope_BsqSwapFinalizedTxMessage struct {
	BsqSwapFinalizedTxMessage *BsqSwapFinalizedTxMessage `protobuf:"bytes,59,opt,name=bsq_swap_finalized_tx_message,json=bsqSwapFinalizedTxMessage,proto3,oneof"`
}

type NetworkEnvelope_BsqSwapTxInputsMessage added in v0.1.6

type NetworkEnvelope_BsqSwapTxInputsMessage struct {
	BsqSwapTxInputsMessage *BsqSwapTxInputsMessage `protobuf:"bytes,57,opt,name=bsq_swap_tx_inputs_message,json=bsqSwapTxInputsMessage,proto3,oneof"`
}

type NetworkEnvelope_BundleOfEnvelopes added in v0.1.4

type NetworkEnvelope_BundleOfEnvelopes struct {
	BundleOfEnvelopes *BundleOfEnvelopes `protobuf:"bytes,43,opt,name=bundle_of_envelopes,json=bundleOfEnvelopes,proto3,oneof"`
}

type NetworkEnvelope_BuyersBsqSwapRequest added in v0.1.6

type NetworkEnvelope_BuyersBsqSwapRequest struct {
	BuyersBsqSwapRequest *BuyersBsqSwapRequest `protobuf:"bytes,56,opt,name=buyers_bsq_swap_request,json=buyersBsqSwapRequest,proto3,oneof"`
}

type NetworkEnvelope_ChatMessage added in v0.1.4

type NetworkEnvelope_ChatMessage struct {
	ChatMessage *ChatMessage `protobuf:"bytes,24,opt,name=chat_message,json=chatMessage,proto3,oneof"`
}

type NetworkEnvelope_CloseConnectionMessage added in v0.1.4

type NetworkEnvelope_CloseConnectionMessage struct {
	CloseConnectionMessage *CloseConnectionMessage `protobuf:"bytes,15,opt,name=close_connection_message,json=closeConnectionMessage,proto3,oneof"`
}

type NetworkEnvelope_CounterCurrencyTransferStartedMessage added in v0.1.4

type NetworkEnvelope_CounterCurrencyTransferStartedMessage struct {
	CounterCurrencyTransferStartedMessage *CounterCurrencyTransferStartedMessage `` /* 126-byte string literal not displayed */
}

type NetworkEnvelope_DelayedPayoutTxSignatureRequest added in v0.1.4

type NetworkEnvelope_DelayedPayoutTxSignatureRequest struct {
	DelayedPayoutTxSignatureRequest *DelayedPayoutTxSignatureRequest `protobuf:"bytes,46,opt,name=delayed_payout_tx_signature_request,json=delayedPayoutTxSignatureRequest,proto3,oneof"`
}

type NetworkEnvelope_DelayedPayoutTxSignatureResponse added in v0.1.4

type NetworkEnvelope_DelayedPayoutTxSignatureResponse struct {
	DelayedPayoutTxSignatureResponse *DelayedPayoutTxSignatureResponse `protobuf:"bytes,47,opt,name=delayed_payout_tx_signature_response,json=delayedPayoutTxSignatureResponse,proto3,oneof"`
}

type NetworkEnvelope_DepositTxAndDelayedPayoutTxMessage added in v0.1.4

type NetworkEnvelope_DepositTxAndDelayedPayoutTxMessage struct {
	DepositTxAndDelayedPayoutTxMessage *DepositTxAndDelayedPayoutTxMessage `protobuf:"bytes,48,opt,name=deposit_tx_and_delayed_payout_tx_message,json=depositTxAndDelayedPayoutTxMessage,proto3,oneof"`
}

type NetworkEnvelope_DepositTxMessage added in v0.1.4

type NetworkEnvelope_DepositTxMessage struct {
	DepositTxMessage *DepositTxMessage `protobuf:"bytes,19,opt,name=deposit_tx_message,json=depositTxMessage,proto3,oneof"`
}

type NetworkEnvelope_DisputeResultMessage added in v0.1.4

type NetworkEnvelope_DisputeResultMessage struct {
	DisputeResultMessage *DisputeResultMessage `protobuf:"bytes,25,opt,name=dispute_result_message,json=disputeResultMessage,proto3,oneof"`
}

type NetworkEnvelope_FileTransferPart added in v0.1.9

type NetworkEnvelope_FileTransferPart struct {
	FileTransferPart *FileTransferPart `protobuf:"bytes,60,opt,name=file_transfer_part,json=fileTransferPart,proto3,oneof"`
}

type NetworkEnvelope_GetAccountingBlocksRequest added in v0.1.10

type NetworkEnvelope_GetAccountingBlocksRequest struct {
	GetAccountingBlocksRequest *GetAccountingBlocksRequest `protobuf:"bytes,61,opt,name=get_accounting_blocks_request,json=getAccountingBlocksRequest,proto3,oneof"`
}

type NetworkEnvelope_GetAccountingBlocksResponse added in v0.1.10

type NetworkEnvelope_GetAccountingBlocksResponse struct {
	GetAccountingBlocksResponse *GetAccountingBlocksResponse `protobuf:"bytes,62,opt,name=get_accounting_blocks_response,json=getAccountingBlocksResponse,proto3,oneof"`
}

type NetworkEnvelope_GetBlindVoteStateHashesRequest added in v0.1.4

type NetworkEnvelope_GetBlindVoteStateHashesRequest struct {
	GetBlindVoteStateHashesRequest *GetBlindVoteStateHashesRequest `protobuf:"bytes,41,opt,name=get_blind_vote_state_hashes_request,json=getBlindVoteStateHashesRequest,proto3,oneof"`
}

type NetworkEnvelope_GetBlindVoteStateHashesResponse added in v0.1.4

type NetworkEnvelope_GetBlindVoteStateHashesResponse struct {
	GetBlindVoteStateHashesResponse *GetBlindVoteStateHashesResponse `protobuf:"bytes,42,opt,name=get_blind_vote_state_hashes_response,json=getBlindVoteStateHashesResponse,proto3,oneof"`
}

type NetworkEnvelope_GetBlocksRequest added in v0.1.4

type NetworkEnvelope_GetBlocksRequest struct {
	GetBlocksRequest *GetBlocksRequest `protobuf:"bytes,28,opt,name=get_blocks_request,json=getBlocksRequest,proto3,oneof"`
}

type NetworkEnvelope_GetBlocksResponse added in v0.1.4

type NetworkEnvelope_GetBlocksResponse struct {
	GetBlocksResponse *GetBlocksResponse `protobuf:"bytes,29,opt,name=get_blocks_response,json=getBlocksResponse,proto3,oneof"`
}

type NetworkEnvelope_GetDaoStateHashesRequest added in v0.1.4

type NetworkEnvelope_GetDaoStateHashesRequest struct {
	GetDaoStateHashesRequest *GetDaoStateHashesRequest `protobuf:"bytes,35,opt,name=get_dao_state_hashes_request,json=getDaoStateHashesRequest,proto3,oneof"`
}

type NetworkEnvelope_GetDaoStateHashesResponse added in v0.1.4

type NetworkEnvelope_GetDaoStateHashesResponse struct {
	GetDaoStateHashesResponse *GetDaoStateHashesResponse `protobuf:"bytes,36,opt,name=get_dao_state_hashes_response,json=getDaoStateHashesResponse,proto3,oneof"`
}

type NetworkEnvelope_GetDataResponse added in v0.1.4

type NetworkEnvelope_GetDataResponse struct {
	GetDataResponse *GetDataResponse `protobuf:"bytes,3,opt,name=get_data_response,json=getDataResponse,proto3,oneof"`
}

type NetworkEnvelope_GetInventoryRequest added in v0.1.4

type NetworkEnvelope_GetInventoryRequest struct {
	GetInventoryRequest *GetInventoryRequest `protobuf:"bytes,52,opt,name=get_inventory_request,json=getInventoryRequest,proto3,oneof"`
}

type NetworkEnvelope_GetInventoryResponse added in v0.1.4

type NetworkEnvelope_GetInventoryResponse struct {
	GetInventoryResponse *GetInventoryResponse `protobuf:"bytes,53,opt,name=get_inventory_response,json=getInventoryResponse,proto3,oneof"`
}

type NetworkEnvelope_GetPeersRequest added in v0.1.4

type NetworkEnvelope_GetPeersRequest struct {
	GetPeersRequest *GetPeersRequest `protobuf:"bytes,5,opt,name=get_peers_request,json=getPeersRequest,proto3,oneof"`
}

type NetworkEnvelope_GetPeersResponse added in v0.1.4

type NetworkEnvelope_GetPeersResponse struct {
	GetPeersResponse *GetPeersResponse `protobuf:"bytes,6,opt,name=get_peers_response,json=getPeersResponse,proto3,oneof"`
}

type NetworkEnvelope_GetProposalStateHashesRequest added in v0.1.4

type NetworkEnvelope_GetProposalStateHashesRequest struct {
	GetProposalStateHashesRequest *GetProposalStateHashesRequest `protobuf:"bytes,38,opt,name=get_proposal_state_hashes_request,json=getProposalStateHashesRequest,proto3,oneof"`
}

type NetworkEnvelope_GetProposalStateHashesResponse added in v0.1.4

type NetworkEnvelope_GetProposalStateHashesResponse struct {
	GetProposalStateHashesResponse *GetProposalStateHashesResponse `protobuf:"bytes,39,opt,name=get_proposal_state_hashes_response,json=getProposalStateHashesResponse,proto3,oneof"`
}

type NetworkEnvelope_GetUpdatedDataRequest added in v0.1.4

type NetworkEnvelope_GetUpdatedDataRequest struct {
	GetUpdatedDataRequest *GetUpdatedDataRequest `protobuf:"bytes,4,opt,name=get_updated_data_request,json=getUpdatedDataRequest,proto3,oneof"`
}

type NetworkEnvelope_InputsForDepositTxRequest added in v0.1.4

type NetworkEnvelope_InputsForDepositTxRequest struct {
	InputsForDepositTxRequest *InputsForDepositTxRequest `protobuf:"bytes,17,opt,name=inputs_for_deposit_tx_request,json=inputsForDepositTxRequest,proto3,oneof"`
}

type NetworkEnvelope_InputsForDepositTxResponse added in v0.1.4

type NetworkEnvelope_InputsForDepositTxResponse struct {
	InputsForDepositTxResponse *InputsForDepositTxResponse `protobuf:"bytes,18,opt,name=inputs_for_deposit_tx_response,json=inputsForDepositTxResponse,proto3,oneof"`
}

type NetworkEnvelope_MediatedPayoutTxPublishedMessage added in v0.1.4

type NetworkEnvelope_MediatedPayoutTxPublishedMessage struct {
	MediatedPayoutTxPublishedMessage *MediatedPayoutTxPublishedMessage `protobuf:"bytes,45,opt,name=mediated_payout_tx_published_message,json=mediatedPayoutTxPublishedMessage,proto3,oneof"`
}

type NetworkEnvelope_MediatedPayoutTxSignatureMessage added in v0.1.4

type NetworkEnvelope_MediatedPayoutTxSignatureMessage struct {
	MediatedPayoutTxSignatureMessage *MediatedPayoutTxSignatureMessage `protobuf:"bytes,44,opt,name=mediated_payout_tx_signature_message,json=mediatedPayoutTxSignatureMessage,proto3,oneof"`
}

type NetworkEnvelope_NewAccountingBlockBroadcastMessage added in v0.1.10

type NetworkEnvelope_NewAccountingBlockBroadcastMessage struct {
	NewAccountingBlockBroadcastMessage *NewAccountingBlockBroadcastMessage `protobuf:"bytes,63,opt,name=new_accounting_block_broadcast_message,json=newAccountingBlockBroadcastMessage,proto3,oneof"`
}

type NetworkEnvelope_NewBlindVoteStateHashMessage added in v0.1.4

type NetworkEnvelope_NewBlindVoteStateHashMessage struct {
	NewBlindVoteStateHashMessage *NewBlindVoteStateHashMessage `protobuf:"bytes,40,opt,name=new_blind_vote_state_hash_message,json=newBlindVoteStateHashMessage,proto3,oneof"`
}

type NetworkEnvelope_NewBlockBroadcastMessage added in v0.1.4

type NetworkEnvelope_NewBlockBroadcastMessage struct {
	NewBlockBroadcastMessage *NewBlockBroadcastMessage `protobuf:"bytes,30,opt,name=new_block_broadcast_message,json=newBlockBroadcastMessage,proto3,oneof"`
}

type NetworkEnvelope_NewDaoStateHashMessage added in v0.1.4

type NetworkEnvelope_NewDaoStateHashMessage struct {
	NewDaoStateHashMessage *NewDaoStateHashMessage `protobuf:"bytes,34,opt,name=new_dao_state_hash_message,json=newDaoStateHashMessage,proto3,oneof"`
}

type NetworkEnvelope_NewProposalStateHashMessage added in v0.1.4

type NetworkEnvelope_NewProposalStateHashMessage struct {
	NewProposalStateHashMessage *NewProposalStateHashMessage `protobuf:"bytes,37,opt,name=new_proposal_state_hash_message,json=newProposalStateHashMessage,proto3,oneof"`
}

type NetworkEnvelope_OfferAvailabilityRequest added in v0.1.4

type NetworkEnvelope_OfferAvailabilityRequest struct {
	OfferAvailabilityRequest *OfferAvailabilityRequest `protobuf:"bytes,9,opt,name=offer_availability_request,json=offerAvailabilityRequest,proto3,oneof"`
}

type NetworkEnvelope_OfferAvailabilityResponse added in v0.1.4

type NetworkEnvelope_OfferAvailabilityResponse struct {
	OfferAvailabilityResponse *OfferAvailabilityResponse `protobuf:"bytes,10,opt,name=offer_availability_response,json=offerAvailabilityResponse,proto3,oneof"`
}

type NetworkEnvelope_OpenNewDisputeMessage added in v0.1.4

type NetworkEnvelope_OpenNewDisputeMessage struct {
	OpenNewDisputeMessage *OpenNewDisputeMessage `protobuf:"bytes,22,opt,name=open_new_dispute_message,json=openNewDisputeMessage,proto3,oneof"`
}

type NetworkEnvelope_PayoutTxPublishedMessage added in v0.1.4

type NetworkEnvelope_PayoutTxPublishedMessage struct {
	PayoutTxPublishedMessage *PayoutTxPublishedMessage `protobuf:"bytes,21,opt,name=payout_tx_published_message,json=payoutTxPublishedMessage,proto3,oneof"`
}

type NetworkEnvelope_PeerOpenedDisputeMessage added in v0.1.4

type NetworkEnvelope_PeerOpenedDisputeMessage struct {
	PeerOpenedDisputeMessage *PeerOpenedDisputeMessage `protobuf:"bytes,23,opt,name=peer_opened_dispute_message,json=peerOpenedDisputeMessage,proto3,oneof"`
}

type NetworkEnvelope_PeerPublishedDelayedPayoutTxMessage added in v0.1.4

type NetworkEnvelope_PeerPublishedDelayedPayoutTxMessage struct {
	PeerPublishedDelayedPayoutTxMessage *PeerPublishedDelayedPayoutTxMessage `protobuf:"bytes,49,opt,name=peer_published_delayed_payout_tx_message,json=peerPublishedDelayedPayoutTxMessage,proto3,oneof"`
}

type NetworkEnvelope_PeerPublishedDisputePayoutTxMessage added in v0.1.4

type NetworkEnvelope_PeerPublishedDisputePayoutTxMessage struct {
	PeerPublishedDisputePayoutTxMessage *PeerPublishedDisputePayoutTxMessage `protobuf:"bytes,26,opt,name=peer_published_dispute_payout_tx_message,json=peerPublishedDisputePayoutTxMessage,proto3,oneof"`
}

type NetworkEnvelope_Ping added in v0.1.4

type NetworkEnvelope_Ping struct {
	Ping *Ping `protobuf:"bytes,7,opt,name=ping,proto3,oneof"`
}

type NetworkEnvelope_Pong added in v0.1.4

type NetworkEnvelope_Pong struct {
	Pong *Pong `protobuf:"bytes,8,opt,name=pong,proto3,oneof"`
}

type NetworkEnvelope_PrefixedSealedAndSignedMessage added in v0.1.4

type NetworkEnvelope_PrefixedSealedAndSignedMessage struct {
	PrefixedSealedAndSignedMessage *PrefixedSealedAndSignedMessage `protobuf:"bytes,16,opt,name=prefixed_sealed_and_signed_message,json=prefixedSealedAndSignedMessage,proto3,oneof"`
}

type NetworkEnvelope_PreliminaryGetDataRequest added in v0.1.4

type NetworkEnvelope_PreliminaryGetDataRequest struct {
	PreliminaryGetDataRequest *PreliminaryGetDataRequest `protobuf:"bytes,2,opt,name=preliminary_get_data_request,json=preliminaryGetDataRequest,proto3,oneof"`
}

type NetworkEnvelope_PrivateNotificationMessage added in v0.1.4

type NetworkEnvelope_PrivateNotificationMessage struct {
	PrivateNotificationMessage *PrivateNotificationMessage `protobuf:"bytes,27,opt,name=private_notification_message,json=privateNotificationMessage,proto3,oneof"`
}

type NetworkEnvelope_RefreshOfferMessage added in v0.1.4

type NetworkEnvelope_RefreshOfferMessage struct {
	RefreshOfferMessage *RefreshOfferMessage `protobuf:"bytes,11,opt,name=refresh_offer_message,json=refreshOfferMessage,proto3,oneof"`
}

type NetworkEnvelope_RefreshTradeStateRequest added in v0.1.4

type NetworkEnvelope_RefreshTradeStateRequest struct {
	// Deprecated: Marked as deprecated in pb.proto.
	RefreshTradeStateRequest *RefreshTradeStateRequest `protobuf:"bytes,50,opt,name=refresh_trade_state_request,json=refreshTradeStateRequest,proto3,oneof"`
}

type NetworkEnvelope_RemoveDataMessage added in v0.1.4

type NetworkEnvelope_RemoveDataMessage struct {
	RemoveDataMessage *RemoveDataMessage `protobuf:"bytes,13,opt,name=remove_data_message,json=removeDataMessage,proto3,oneof"`
}

type NetworkEnvelope_RemoveMailboxDataMessage added in v0.1.4

type NetworkEnvelope_RemoveMailboxDataMessage struct {
	RemoveMailboxDataMessage *RemoveMailboxDataMessage `protobuf:"bytes,14,opt,name=remove_mailbox_data_message,json=removeMailboxDataMessage,proto3,oneof"`
}

type NetworkEnvelope_RepublishGovernanceDataRequest added in v0.1.4

type NetworkEnvelope_RepublishGovernanceDataRequest struct {
	RepublishGovernanceDataRequest *RepublishGovernanceDataRequest `protobuf:"bytes,33,opt,name=republish_governance_data_request,json=republishGovernanceDataRequest,proto3,oneof"`
}

type NetworkEnvelope_SellersBsqSwapRequest added in v0.1.6

type NetworkEnvelope_SellersBsqSwapRequest struct {
	SellersBsqSwapRequest *SellersBsqSwapRequest `protobuf:"bytes,55,opt,name=sellers_bsq_swap_request,json=sellersBsqSwapRequest,proto3,oneof"`
}

type NetworkEnvelope_ShareBuyerPaymentAccountMessage added in v0.1.5

type NetworkEnvelope_ShareBuyerPaymentAccountMessage struct {
	ShareBuyerPaymentAccountMessage *ShareBuyerPaymentAccountMessage `protobuf:"bytes,54,opt,name=share_buyer_payment_account_message,json=shareBuyerPaymentAccountMessage,proto3,oneof"` // Added at 1.7.0
}

type NetworkEnvelope_TraderSignedWitnessMessage added in v0.1.4

type NetworkEnvelope_TraderSignedWitnessMessage struct {
	// Deprecated: Marked as deprecated in pb.proto.
	TraderSignedWitnessMessage *TraderSignedWitnessMessage `protobuf:"bytes,51,opt,name=trader_signed_witness_message,json=traderSignedWitnessMessage,proto3,oneof"`
}

type NewAccountingBlockBroadcastMessage added in v0.1.10

type NewAccountingBlockBroadcastMessage struct {
	Block     *AccountingBlock `protobuf:"bytes,1,opt,name=block,proto3" json:"block,omitempty"`
	PubKey    string           `protobuf:"bytes,2,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	Signature []byte           `protobuf:"bytes,3,opt,name=signature,proto3" json:"signature,omitempty"`
	// contains filtered or unexported fields
}

func (*NewAccountingBlockBroadcastMessage) Descriptor deprecated added in v0.1.10

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

Deprecated: Use NewAccountingBlockBroadcastMessage.ProtoReflect.Descriptor instead.

func (*NewAccountingBlockBroadcastMessage) GetBlock added in v0.1.10

func (*NewAccountingBlockBroadcastMessage) GetPubKey added in v0.1.10

func (*NewAccountingBlockBroadcastMessage) GetSignature added in v0.1.10

func (x *NewAccountingBlockBroadcastMessage) GetSignature() []byte

func (*NewAccountingBlockBroadcastMessage) ProtoMessage added in v0.1.10

func (*NewAccountingBlockBroadcastMessage) ProtoMessage()

func (*NewAccountingBlockBroadcastMessage) ProtoReflect added in v0.1.10

func (*NewAccountingBlockBroadcastMessage) Reset added in v0.1.10

func (*NewAccountingBlockBroadcastMessage) String added in v0.1.10

type NewBlindVoteStateHashMessage added in v0.1.4

type NewBlindVoteStateHashMessage struct {
	StateHash *BlindVoteStateHash `protobuf:"bytes,1,opt,name=state_hash,json=stateHash,proto3" json:"state_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*NewBlindVoteStateHashMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use NewBlindVoteStateHashMessage.ProtoReflect.Descriptor instead.

func (*NewBlindVoteStateHashMessage) GetStateHash added in v0.1.4

func (*NewBlindVoteStateHashMessage) ProtoMessage added in v0.1.4

func (*NewBlindVoteStateHashMessage) ProtoMessage()

func (*NewBlindVoteStateHashMessage) ProtoReflect added in v0.1.4

func (*NewBlindVoteStateHashMessage) Reset added in v0.1.4

func (x *NewBlindVoteStateHashMessage) Reset()

func (*NewBlindVoteStateHashMessage) String added in v0.1.4

type NewBlockBroadcastMessage added in v0.1.4

type NewBlockBroadcastMessage struct {

	// Because of the way how PB implements inheritance we need to use the super class as type.
	RawBlock *BaseBlock `protobuf:"bytes,1,opt,name=raw_block,json=rawBlock,proto3" json:"raw_block,omitempty"`
	// contains filtered or unexported fields
}

func (*NewBlockBroadcastMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use NewBlockBroadcastMessage.ProtoReflect.Descriptor instead.

func (*NewBlockBroadcastMessage) GetRawBlock added in v0.1.4

func (x *NewBlockBroadcastMessage) GetRawBlock() *BaseBlock

func (*NewBlockBroadcastMessage) ProtoMessage added in v0.1.4

func (*NewBlockBroadcastMessage) ProtoMessage()

func (*NewBlockBroadcastMessage) ProtoReflect added in v0.1.4

func (x *NewBlockBroadcastMessage) ProtoReflect() protoreflect.Message

func (*NewBlockBroadcastMessage) Reset added in v0.1.4

func (x *NewBlockBroadcastMessage) Reset()

func (*NewBlockBroadcastMessage) String added in v0.1.4

func (x *NewBlockBroadcastMessage) String() string

type NewDaoStateHashMessage added in v0.1.4

type NewDaoStateHashMessage struct {
	StateHash *DaoStateHash `protobuf:"bytes,1,opt,name=state_hash,json=stateHash,proto3" json:"state_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*NewDaoStateHashMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use NewDaoStateHashMessage.ProtoReflect.Descriptor instead.

func (*NewDaoStateHashMessage) GetStateHash added in v0.1.4

func (x *NewDaoStateHashMessage) GetStateHash() *DaoStateHash

func (*NewDaoStateHashMessage) ProtoMessage added in v0.1.4

func (*NewDaoStateHashMessage) ProtoMessage()

func (*NewDaoStateHashMessage) ProtoReflect added in v0.1.4

func (x *NewDaoStateHashMessage) ProtoReflect() protoreflect.Message

func (*NewDaoStateHashMessage) Reset added in v0.1.4

func (x *NewDaoStateHashMessage) Reset()

func (*NewDaoStateHashMessage) String added in v0.1.4

func (x *NewDaoStateHashMessage) String() string

type NewProposalStateHashMessage added in v0.1.4

type NewProposalStateHashMessage struct {
	StateHash *ProposalStateHash `protobuf:"bytes,1,opt,name=state_hash,json=stateHash,proto3" json:"state_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*NewProposalStateHashMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use NewProposalStateHashMessage.ProtoReflect.Descriptor instead.

func (*NewProposalStateHashMessage) GetStateHash added in v0.1.4

func (*NewProposalStateHashMessage) ProtoMessage added in v0.1.4

func (*NewProposalStateHashMessage) ProtoMessage()

func (*NewProposalStateHashMessage) ProtoReflect added in v0.1.4

func (*NewProposalStateHashMessage) Reset added in v0.1.4

func (x *NewProposalStateHashMessage) Reset()

func (*NewProposalStateHashMessage) String added in v0.1.4

func (x *NewProposalStateHashMessage) String() string

type NodeAddress added in v0.1.4

type NodeAddress struct {
	HostName string `protobuf:"bytes,1,opt,name=host_name,json=hostName,proto3" json:"host_name,omitempty"`
	Port     int32  `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeAddress) Descriptor deprecated added in v0.1.4

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

Deprecated: Use NodeAddress.ProtoReflect.Descriptor instead.

func (*NodeAddress) GetHostName added in v0.1.4

func (x *NodeAddress) GetHostName() string

func (*NodeAddress) GetPort added in v0.1.4

func (x *NodeAddress) GetPort() int32

func (*NodeAddress) ProtoMessage added in v0.1.4

func (*NodeAddress) ProtoMessage()

func (*NodeAddress) ProtoReflect added in v0.1.4

func (x *NodeAddress) ProtoReflect() protoreflect.Message

func (*NodeAddress) Reset added in v0.1.4

func (x *NodeAddress) Reset()

func (*NodeAddress) String added in v0.1.4

func (x *NodeAddress) String() string

type OKPayAccountPayload added in v0.1.4

type OKPayAccountPayload struct {
	AccountNr string `protobuf:"bytes,1,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	// contains filtered or unexported fields
}

Deprecated, not used.

func (*OKPayAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use OKPayAccountPayload.ProtoReflect.Descriptor instead.

func (*OKPayAccountPayload) GetAccountNr added in v0.1.4

func (x *OKPayAccountPayload) GetAccountNr() string

func (*OKPayAccountPayload) ProtoMessage added in v0.1.4

func (*OKPayAccountPayload) ProtoMessage()

func (*OKPayAccountPayload) ProtoReflect added in v0.1.4

func (x *OKPayAccountPayload) ProtoReflect() protoreflect.Message

func (*OKPayAccountPayload) Reset added in v0.1.4

func (x *OKPayAccountPayload) Reset()

func (*OKPayAccountPayload) String added in v0.1.4

func (x *OKPayAccountPayload) String() string

type Offer added in v0.1.4

type Offer struct {

	// Types that are assignable to Message:
	//
	//	*Offer_OfferPayload
	//	*Offer_BsqSwapOfferPayload
	Message isOffer_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*Offer) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Offer.ProtoReflect.Descriptor instead.

func (*Offer) GetBsqSwapOfferPayload added in v0.1.6

func (x *Offer) GetBsqSwapOfferPayload() *BsqSwapOfferPayload

func (*Offer) GetMessage added in v0.1.6

func (m *Offer) GetMessage() isOffer_Message

func (*Offer) GetOfferPayload added in v0.1.4

func (x *Offer) GetOfferPayload() *OfferPayload

func (*Offer) ProtoMessage added in v0.1.4

func (*Offer) ProtoMessage()

func (*Offer) ProtoReflect added in v0.1.4

func (x *Offer) ProtoReflect() protoreflect.Message

func (*Offer) Reset added in v0.1.4

func (x *Offer) Reset()

func (*Offer) String added in v0.1.4

func (x *Offer) String() string

type OfferAvailabilityRequest added in v0.1.4

type OfferAvailabilityRequest struct {
	OfferId                   string      `protobuf:"bytes,1,opt,name=offer_id,json=offerId,proto3" json:"offer_id,omitempty"`
	PubKeyRing                *PubKeyRing `protobuf:"bytes,2,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	TakersTradePrice          int64       `protobuf:"varint,3,opt,name=takers_trade_price,json=takersTradePrice,proto3" json:"takers_trade_price,omitempty"`
	SupportedCapabilities     []int32     `` /* 132-byte string literal not displayed */
	Uid                       string      `protobuf:"bytes,5,opt,name=uid,proto3" json:"uid,omitempty"`
	IsTakerApiUser            bool        `protobuf:"varint,6,opt,name=is_taker_api_user,json=isTakerApiUser,proto3" json:"is_taker_api_user,omitempty"`
	BurningManSelectionHeight int32       `` // Added in v 1.9.7
	/* 141-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*OfferAvailabilityRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use OfferAvailabilityRequest.ProtoReflect.Descriptor instead.

func (*OfferAvailabilityRequest) GetBurningManSelectionHeight added in v0.1.10

func (x *OfferAvailabilityRequest) GetBurningManSelectionHeight() int32

func (*OfferAvailabilityRequest) GetIsTakerApiUser added in v0.1.4

func (x *OfferAvailabilityRequest) GetIsTakerApiUser() bool

func (*OfferAvailabilityRequest) GetOfferId added in v0.1.4

func (x *OfferAvailabilityRequest) GetOfferId() string

func (*OfferAvailabilityRequest) GetPubKeyRing added in v0.1.4

func (x *OfferAvailabilityRequest) GetPubKeyRing() *PubKeyRing

func (*OfferAvailabilityRequest) GetSupportedCapabilities added in v0.1.4

func (x *OfferAvailabilityRequest) GetSupportedCapabilities() []int32

func (*OfferAvailabilityRequest) GetTakersTradePrice added in v0.1.4

func (x *OfferAvailabilityRequest) GetTakersTradePrice() int64

func (*OfferAvailabilityRequest) GetUid added in v0.1.4

func (x *OfferAvailabilityRequest) GetUid() string

func (*OfferAvailabilityRequest) ProtoMessage added in v0.1.4

func (*OfferAvailabilityRequest) ProtoMessage()

func (*OfferAvailabilityRequest) ProtoReflect added in v0.1.4

func (x *OfferAvailabilityRequest) ProtoReflect() protoreflect.Message

func (*OfferAvailabilityRequest) Reset added in v0.1.4

func (x *OfferAvailabilityRequest) Reset()

func (*OfferAvailabilityRequest) String added in v0.1.4

func (x *OfferAvailabilityRequest) String() string

type OfferAvailabilityResponse added in v0.1.4

type OfferAvailabilityResponse struct {
	OfferId               string             `protobuf:"bytes,1,opt,name=offer_id,json=offerId,proto3" json:"offer_id,omitempty"`
	AvailabilityResult    AvailabilityResult `` /* 160-byte string literal not displayed */
	SupportedCapabilities []int32            `` /* 132-byte string literal not displayed */
	Uid                   string             `protobuf:"bytes,4,opt,name=uid,proto3" json:"uid,omitempty"`
	Arbitrator            *NodeAddress       `protobuf:"bytes,5,opt,name=arbitrator,proto3" json:"arbitrator,omitempty"`
	Mediator              *NodeAddress       `protobuf:"bytes,6,opt,name=mediator,proto3" json:"mediator,omitempty"`
	RefundAgent           *NodeAddress       `protobuf:"bytes,7,opt,name=refund_agent,json=refundAgent,proto3" json:"refund_agent,omitempty"`
	// contains filtered or unexported fields
}

func (*OfferAvailabilityResponse) Descriptor deprecated added in v0.1.4

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

Deprecated: Use OfferAvailabilityResponse.ProtoReflect.Descriptor instead.

func (*OfferAvailabilityResponse) GetArbitrator added in v0.1.4

func (x *OfferAvailabilityResponse) GetArbitrator() *NodeAddress

func (*OfferAvailabilityResponse) GetAvailabilityResult added in v0.1.4

func (x *OfferAvailabilityResponse) GetAvailabilityResult() AvailabilityResult

func (*OfferAvailabilityResponse) GetMediator added in v0.1.4

func (x *OfferAvailabilityResponse) GetMediator() *NodeAddress

func (*OfferAvailabilityResponse) GetOfferId added in v0.1.4

func (x *OfferAvailabilityResponse) GetOfferId() string

func (*OfferAvailabilityResponse) GetRefundAgent added in v0.1.4

func (x *OfferAvailabilityResponse) GetRefundAgent() *NodeAddress

func (*OfferAvailabilityResponse) GetSupportedCapabilities added in v0.1.4

func (x *OfferAvailabilityResponse) GetSupportedCapabilities() []int32

func (*OfferAvailabilityResponse) GetUid added in v0.1.4

func (x *OfferAvailabilityResponse) GetUid() string

func (*OfferAvailabilityResponse) ProtoMessage added in v0.1.4

func (*OfferAvailabilityResponse) ProtoMessage()

func (*OfferAvailabilityResponse) ProtoReflect added in v0.1.4

func (*OfferAvailabilityResponse) Reset added in v0.1.4

func (x *OfferAvailabilityResponse) Reset()

func (*OfferAvailabilityResponse) String added in v0.1.4

func (x *OfferAvailabilityResponse) String() string

type OfferDirection added in v0.1.6

type OfferDirection int32
const (
	OfferDirection_OFFER_DIRECTION_ERROR OfferDirection = 0
	OfferDirection_BUY                   OfferDirection = 1
	OfferDirection_SELL                  OfferDirection = 2
)

func (OfferDirection) Descriptor added in v0.1.6

func (OfferDirection) Enum added in v0.1.6

func (x OfferDirection) Enum() *OfferDirection

func (OfferDirection) EnumDescriptor deprecated added in v0.1.6

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

Deprecated: Use OfferDirection.Descriptor instead.

func (OfferDirection) Number added in v0.1.6

func (OfferDirection) String added in v0.1.6

func (x OfferDirection) String() string

func (OfferDirection) Type added in v0.1.6

type OfferInfo added in v0.1.4

type OfferInfo struct {

	// The offer's unique identifier.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// The offer's BUY (BTC) or SELL (BTC) direction.
	Direction string `protobuf:"bytes,2,opt,name=direction,proto3" json:"direction,omitempty"`
	// For fiat offers:  the fiat price for 1 BTC to 4 decimal places, e.g., 45000 EUR is "45000.0000".
	// For altcoin offers:  the altcoin price for 1 BTC to 8 decimal places, e.g., 0.00005 BTC is "0.00005000".
	Price string `protobuf:"bytes,3,opt,name=price,proto3" json:"price,omitempty"`
	// Whether the offer price is fixed, or market price margin based.
	UseMarketBasedPrice bool `protobuf:"varint,4,opt,name=use_market_based_price,json=useMarketBasedPrice,proto3" json:"use_market_based_price,omitempty"`
	// The offer's market price margin above or below the current market BTC price, e.g., 5.00 represents 5%.
	MarketPriceMarginPct float64 `` /* 127-byte string literal not displayed */
	// The offer's BTC amount in satoshis.  Ten million satoshis is represented as 10000000.
	Amount uint64 `protobuf:"varint,6,opt,name=amount,proto3" json:"amount,omitempty"`
	// The offer's minimum BTC amount in satoshis.  One million satoshis is represented as 1000000.
	MinAmount uint64 `protobuf:"varint,7,opt,name=min_amount,json=minAmount,proto3" json:"min_amount,omitempty"`
	// The rounded volume of currency to be traded for BTC.
	// Fiat volume is rounded to whole currency units (no cents).  Altcoin volume is rounded to 2 decimal places.
	Volume string `protobuf:"bytes,8,opt,name=volume,proto3" json:"volume,omitempty"`
	// The rounded, minimum volume of currency to be traded for BTC.
	// Fiat volume is rounded to whole currency units (no cents).  Altcoin volume is rounded to 2 decimal places.
	MinVolume string `protobuf:"bytes,9,opt,name=min_volume,json=minVolume,proto3" json:"min_volume,omitempty"`
	// A long representing the BTC buyer's security deposit in satoshis.
	BuyerSecurityDeposit uint64 `protobuf:"varint,10,opt,name=buyer_security_deposit,json=buyerSecurityDeposit,proto3" json:"buyer_security_deposit,omitempty"`
	// A market price margin based offer's trigger price is the market BTC price at which the offer is automatically disabled.
	// Disabled offers are never automatically enabled, they must be manually re-enabled.
	// A zero value indicates trigger price is not set.  Trigger price does not apply to fixed price offers.
	TriggerPrice string `protobuf:"bytes,11,opt,name=trigger_price,json=triggerPrice,proto3" json:"trigger_price,omitempty"`
	// Whether the offer maker paid the trading fee in BTC or not (BSQ).
	IsCurrencyForMakerFeeBtc bool `` /* 143-byte string literal not displayed */
	// The unique identifier of the payment account used to create the offer.
	PaymentAccountId string `protobuf:"bytes,13,opt,name=payment_account_id,json=paymentAccountId,proto3" json:"payment_account_id,omitempty"`
	// The unique identifier of the payment method used to create the offer.
	PaymentMethodId string `protobuf:"bytes,14,opt,name=payment_method_id,json=paymentMethodId,proto3" json:"payment_method_id,omitempty"`
	// The short description of the payment method used to create the offer.
	PaymentMethodShortName string `` /* 132-byte string literal not displayed */
	// For fiat offers, the baseCurrencyCode is BTC, and the counter_currency_code is the fiat currency code.
	// For altcoin offers it is the opposite, the baseCurrencyCode is the altcoin code and the counter_currency_code is BTC.
	BaseCurrencyCode string `protobuf:"bytes,16,opt,name=base_currency_code,json=baseCurrencyCode,proto3" json:"base_currency_code,omitempty"`
	// For fiat offers, the base_currency_code is BTC, and the counter_currency_code is the fiat currency code.
	// For altcoin offers it is the opposite, the base_currency_code is the altcoin code and the counter_currency_code is BTC.
	CounterCurrencyCode string `protobuf:"bytes,17,opt,name=counter_currency_code,json=counterCurrencyCode,proto3" json:"counter_currency_code,omitempty"`
	// The creation date of the offer as a long: the number of milliseconds that have elapsed since January 1, 1970.
	Date uint64 `protobuf:"varint,18,opt,name=date,proto3" json:"date,omitempty"`
	// The internal state of the offer, e.g., AVAILABLE, NOT_AVAILABLE, REMOVED, etc.
	State string `protobuf:"bytes,19,opt,name=state,proto3" json:"state,omitempty"`
	// A long representing the BTC seller's security deposit in satoshis.
	SellerSecurityDeposit uint64 `` /* 128-byte string literal not displayed */
	// The bitcoin transaction id of the offer maker's fee payment.
	OfferFeePaymentTxId string `protobuf:"bytes,21,opt,name=offer_fee_payment_tx_id,json=offerFeePaymentTxId,proto3" json:"offer_fee_payment_tx_id,omitempty"`
	// The bitcoin transaction fee (amount) for the offer maker's fee payment transaction, in satoshis.
	TxFee uint64 `protobuf:"varint,22,opt,name=tx_fee,json=txFee,proto3" json:"tx_fee,omitempty"`
	// The offer maker's Bisq trade fee amount in satoshis.
	MakerFee uint64 `protobuf:"varint,23,opt,name=maker_fee,json=makerFee,proto3" json:"maker_fee,omitempty"`
	// Whether the offer is currently enabled or not.
	IsActivated bool `protobuf:"varint,24,opt,name=is_activated,json=isActivated,proto3" json:"is_activated,omitempty"`
	// Whether the offer was created by the user or not.
	IsMyOffer bool `protobuf:"varint,25,opt,name=is_my_offer,json=isMyOffer,proto3" json:"is_my_offer,omitempty"`
	// Whether the newly created offer was created by the user or not.
	IsMyPendingOffer bool `protobuf:"varint,26,opt,name=is_my_pending_offer,json=isMyPendingOffer,proto3" json:"is_my_pending_offer,omitempty"`
	// Whether the offer is a BSQ swap offer or not (v1 protocol offer).
	IsBsqSwapOffer bool `protobuf:"varint,27,opt,name=is_bsq_swap_offer,json=isBsqSwapOffer,proto3" json:"is_bsq_swap_offer,omitempty"`
	// The offer creator's Tor onion address.
	OwnerNodeAddress string `protobuf:"bytes,28,opt,name=owner_node_address,json=ownerNodeAddress,proto3" json:"owner_node_address,omitempty"`
	// The offer creator's public key ring as a string.
	PubKeyRing string `protobuf:"bytes,29,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	// The Bisq software version used to create the offer.
	VersionNr string `protobuf:"bytes,30,opt,name=version_nr,json=versionNr,proto3" json:"version_nr,omitempty"`
	// The bitcoin protocol version used to create the offer.
	ProtocolVersion int32 `protobuf:"varint,31,opt,name=protocol_version,json=protocolVersion,proto3" json:"protocol_version,omitempty"`
	// contains filtered or unexported fields
}

OfferInfo describes an offer to a client. It is derived from the heavier Offer object in the daemon, which holds too much state to be sent to clients.

func (*OfferInfo) Descriptor deprecated added in v0.1.4

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

Deprecated: Use OfferInfo.ProtoReflect.Descriptor instead.

func (*OfferInfo) GetAmount added in v0.1.4

func (x *OfferInfo) GetAmount() uint64

func (*OfferInfo) GetBaseCurrencyCode added in v0.1.4

func (x *OfferInfo) GetBaseCurrencyCode() string

func (*OfferInfo) GetBuyerSecurityDeposit added in v0.1.4

func (x *OfferInfo) GetBuyerSecurityDeposit() uint64

func (*OfferInfo) GetCounterCurrencyCode added in v0.1.4

func (x *OfferInfo) GetCounterCurrencyCode() string

func (*OfferInfo) GetDate added in v0.1.4

func (x *OfferInfo) GetDate() uint64

func (*OfferInfo) GetDirection added in v0.1.4

func (x *OfferInfo) GetDirection() string

func (*OfferInfo) GetId added in v0.1.4

func (x *OfferInfo) GetId() string

func (*OfferInfo) GetIsActivated added in v0.1.5

func (x *OfferInfo) GetIsActivated() bool

func (*OfferInfo) GetIsBsqSwapOffer added in v0.1.9

func (x *OfferInfo) GetIsBsqSwapOffer() bool

func (*OfferInfo) GetIsCurrencyForMakerFeeBtc added in v0.1.4

func (x *OfferInfo) GetIsCurrencyForMakerFeeBtc() bool

func (*OfferInfo) GetIsMyOffer added in v0.1.5

func (x *OfferInfo) GetIsMyOffer() bool

func (*OfferInfo) GetIsMyPendingOffer added in v0.1.5

func (x *OfferInfo) GetIsMyPendingOffer() bool

func (*OfferInfo) GetMakerFee added in v0.1.5

func (x *OfferInfo) GetMakerFee() uint64

func (*OfferInfo) GetMarketPriceMarginPct added in v0.1.9

func (x *OfferInfo) GetMarketPriceMarginPct() float64

func (*OfferInfo) GetMinAmount added in v0.1.4

func (x *OfferInfo) GetMinAmount() uint64

func (*OfferInfo) GetMinVolume added in v0.1.4

func (x *OfferInfo) GetMinVolume() string

func (*OfferInfo) GetOfferFeePaymentTxId added in v0.1.5

func (x *OfferInfo) GetOfferFeePaymentTxId() string

func (*OfferInfo) GetOwnerNodeAddress added in v0.1.9

func (x *OfferInfo) GetOwnerNodeAddress() string

func (*OfferInfo) GetPaymentAccountId added in v0.1.4

func (x *OfferInfo) GetPaymentAccountId() string

func (*OfferInfo) GetPaymentMethodId added in v0.1.4

func (x *OfferInfo) GetPaymentMethodId() string

func (*OfferInfo) GetPaymentMethodShortName added in v0.1.4

func (x *OfferInfo) GetPaymentMethodShortName() string

func (*OfferInfo) GetPrice added in v0.1.4

func (x *OfferInfo) GetPrice() string

func (*OfferInfo) GetProtocolVersion added in v0.1.9

func (x *OfferInfo) GetProtocolVersion() int32

func (*OfferInfo) GetPubKeyRing added in v0.1.9

func (x *OfferInfo) GetPubKeyRing() string

func (*OfferInfo) GetSellerSecurityDeposit added in v0.1.5

func (x *OfferInfo) GetSellerSecurityDeposit() uint64

func (*OfferInfo) GetState added in v0.1.4

func (x *OfferInfo) GetState() string

func (*OfferInfo) GetTriggerPrice added in v0.1.4

func (x *OfferInfo) GetTriggerPrice() string

func (*OfferInfo) GetTxFee added in v0.1.5

func (x *OfferInfo) GetTxFee() uint64

func (*OfferInfo) GetUseMarketBasedPrice added in v0.1.4

func (x *OfferInfo) GetUseMarketBasedPrice() bool

func (*OfferInfo) GetVersionNr added in v0.1.9

func (x *OfferInfo) GetVersionNr() string

func (*OfferInfo) GetVolume added in v0.1.4

func (x *OfferInfo) GetVolume() string

func (*OfferInfo) ProtoMessage added in v0.1.4

func (*OfferInfo) ProtoMessage()

func (*OfferInfo) ProtoReflect added in v0.1.4

func (x *OfferInfo) ProtoReflect() protoreflect.Message

func (*OfferInfo) Reset added in v0.1.4

func (x *OfferInfo) Reset()

func (*OfferInfo) String added in v0.1.4

func (x *OfferInfo) String() string

type OfferPayload added in v0.1.4

type OfferPayload struct {
	Id                  string         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Date                int64          `protobuf:"varint,2,opt,name=date,proto3" json:"date,omitempty"`
	OwnerNodeAddress    *NodeAddress   `protobuf:"bytes,3,opt,name=owner_node_address,json=ownerNodeAddress,proto3" json:"owner_node_address,omitempty"`
	PubKeyRing          *PubKeyRing    `protobuf:"bytes,4,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	Direction           OfferDirection `protobuf:"varint,5,opt,name=direction,proto3,enum=io.bisq.protobuffer.OfferDirection" json:"direction,omitempty"`
	Price               int64          `protobuf:"varint,6,opt,name=price,proto3" json:"price,omitempty"`
	MarketPriceMargin   float64        `protobuf:"fixed64,7,opt,name=market_price_margin,json=marketPriceMargin,proto3" json:"market_price_margin,omitempty"`
	UseMarketBasedPrice bool           `protobuf:"varint,8,opt,name=use_market_based_price,json=useMarketBasedPrice,proto3" json:"use_market_based_price,omitempty"`
	Amount              int64          `protobuf:"varint,9,opt,name=amount,proto3" json:"amount,omitempty"`
	MinAmount           int64          `protobuf:"varint,10,opt,name=min_amount,json=minAmount,proto3" json:"min_amount,omitempty"`
	BaseCurrencyCode    string         `protobuf:"bytes,11,opt,name=base_currency_code,json=baseCurrencyCode,proto3" json:"base_currency_code,omitempty"`
	CounterCurrencyCode string         `protobuf:"bytes,12,opt,name=counter_currency_code,json=counterCurrencyCode,proto3" json:"counter_currency_code,omitempty"`
	// Not used anymore but still required as old clients check for nonNull.
	//
	// Deprecated: Marked as deprecated in pb.proto.
	ArbitratorNodeAddresses []*NodeAddress `` /* 133-byte string literal not displayed */
	// Not used anymore but still required as old clients check for nonNull.
	//
	// Deprecated: Marked as deprecated in pb.proto.
	MediatorNodeAddresses      []*NodeAddress    `` /* 127-byte string literal not displayed */
	PaymentMethodId            string            `protobuf:"bytes,15,opt,name=payment_method_id,json=paymentMethodId,proto3" json:"payment_method_id,omitempty"`
	MakerPaymentAccountId      string            `` /* 129-byte string literal not displayed */
	OfferFeePaymentTxId        string            `protobuf:"bytes,17,opt,name=offer_fee_payment_tx_id,json=offerFeePaymentTxId,proto3" json:"offer_fee_payment_tx_id,omitempty"`
	CountryCode                string            `protobuf:"bytes,18,opt,name=country_code,json=countryCode,proto3" json:"country_code,omitempty"`
	AcceptedCountryCodes       []string          `protobuf:"bytes,19,rep,name=accepted_country_codes,json=acceptedCountryCodes,proto3" json:"accepted_country_codes,omitempty"`
	BankId                     string            `protobuf:"bytes,20,opt,name=bank_id,json=bankId,proto3" json:"bank_id,omitempty"`
	AcceptedBankIds            []string          `protobuf:"bytes,21,rep,name=accepted_bank_ids,json=acceptedBankIds,proto3" json:"accepted_bank_ids,omitempty"`
	VersionNr                  string            `protobuf:"bytes,22,opt,name=version_nr,json=versionNr,proto3" json:"version_nr,omitempty"`
	BlockHeightAtOfferCreation int64             `` /* 147-byte string literal not displayed */
	TxFee                      int64             `protobuf:"varint,24,opt,name=tx_fee,json=txFee,proto3" json:"tx_fee,omitempty"`
	MakerFee                   int64             `protobuf:"varint,25,opt,name=maker_fee,json=makerFee,proto3" json:"maker_fee,omitempty"`
	IsCurrencyForMakerFeeBtc   bool              `` /* 143-byte string literal not displayed */
	BuyerSecurityDeposit       int64             `protobuf:"varint,27,opt,name=buyer_security_deposit,json=buyerSecurityDeposit,proto3" json:"buyer_security_deposit,omitempty"`
	SellerSecurityDeposit      int64             `` /* 128-byte string literal not displayed */
	MaxTradeLimit              int64             `protobuf:"varint,29,opt,name=max_trade_limit,json=maxTradeLimit,proto3" json:"max_trade_limit,omitempty"`
	MaxTradePeriod             int64             `protobuf:"varint,30,opt,name=max_trade_period,json=maxTradePeriod,proto3" json:"max_trade_period,omitempty"`
	UseAutoClose               bool              `protobuf:"varint,31,opt,name=use_auto_close,json=useAutoClose,proto3" json:"use_auto_close,omitempty"`
	UseReOpenAfterAutoClose    bool              `` /* 140-byte string literal not displayed */
	LowerClosePrice            int64             `protobuf:"varint,33,opt,name=lower_close_price,json=lowerClosePrice,proto3" json:"lower_close_price,omitempty"`
	UpperClosePrice            int64             `protobuf:"varint,34,opt,name=upper_close_price,json=upperClosePrice,proto3" json:"upper_close_price,omitempty"`
	IsPrivateOffer             bool              `protobuf:"varint,35,opt,name=is_private_offer,json=isPrivateOffer,proto3" json:"is_private_offer,omitempty"`
	HashOfChallenge            string            `protobuf:"bytes,36,opt,name=hash_of_challenge,json=hashOfChallenge,proto3" json:"hash_of_challenge,omitempty"`
	ExtraData                  map[string]string `` /* 177-byte string literal not displayed */
	ProtocolVersion            int32             `protobuf:"varint,38,opt,name=protocol_version,json=protocolVersion,proto3" json:"protocol_version,omitempty"`
	// contains filtered or unexported fields
}

func (*OfferPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use OfferPayload.ProtoReflect.Descriptor instead.

func (*OfferPayload) GetAcceptedBankIds added in v0.1.4

func (x *OfferPayload) GetAcceptedBankIds() []string

func (*OfferPayload) GetAcceptedCountryCodes added in v0.1.4

func (x *OfferPayload) GetAcceptedCountryCodes() []string

func (*OfferPayload) GetAmount added in v0.1.4

func (x *OfferPayload) GetAmount() int64

func (*OfferPayload) GetArbitratorNodeAddresses deprecated added in v0.1.4

func (x *OfferPayload) GetArbitratorNodeAddresses() []*NodeAddress

Deprecated: Marked as deprecated in pb.proto.

func (*OfferPayload) GetBankId added in v0.1.4

func (x *OfferPayload) GetBankId() string

func (*OfferPayload) GetBaseCurrencyCode added in v0.1.4

func (x *OfferPayload) GetBaseCurrencyCode() string

func (*OfferPayload) GetBlockHeightAtOfferCreation added in v0.1.4

func (x *OfferPayload) GetBlockHeightAtOfferCreation() int64

func (*OfferPayload) GetBuyerSecurityDeposit added in v0.1.4

func (x *OfferPayload) GetBuyerSecurityDeposit() int64

func (*OfferPayload) GetCounterCurrencyCode added in v0.1.4

func (x *OfferPayload) GetCounterCurrencyCode() string

func (*OfferPayload) GetCountryCode added in v0.1.4

func (x *OfferPayload) GetCountryCode() string

func (*OfferPayload) GetDate added in v0.1.4

func (x *OfferPayload) GetDate() int64

func (*OfferPayload) GetDirection added in v0.1.4

func (x *OfferPayload) GetDirection() OfferDirection

func (*OfferPayload) GetExtraData added in v0.1.4

func (x *OfferPayload) GetExtraData() map[string]string

func (*OfferPayload) GetHashOfChallenge added in v0.1.4

func (x *OfferPayload) GetHashOfChallenge() string

func (*OfferPayload) GetId added in v0.1.4

func (x *OfferPayload) GetId() string

func (*OfferPayload) GetIsCurrencyForMakerFeeBtc added in v0.1.4

func (x *OfferPayload) GetIsCurrencyForMakerFeeBtc() bool

func (*OfferPayload) GetIsPrivateOffer added in v0.1.4

func (x *OfferPayload) GetIsPrivateOffer() bool

func (*OfferPayload) GetLowerClosePrice added in v0.1.4

func (x *OfferPayload) GetLowerClosePrice() int64

func (*OfferPayload) GetMakerFee added in v0.1.4

func (x *OfferPayload) GetMakerFee() int64

func (*OfferPayload) GetMakerPaymentAccountId added in v0.1.4

func (x *OfferPayload) GetMakerPaymentAccountId() string

func (*OfferPayload) GetMarketPriceMargin added in v0.1.4

func (x *OfferPayload) GetMarketPriceMargin() float64

func (*OfferPayload) GetMaxTradeLimit added in v0.1.4

func (x *OfferPayload) GetMaxTradeLimit() int64

func (*OfferPayload) GetMaxTradePeriod added in v0.1.4

func (x *OfferPayload) GetMaxTradePeriod() int64

func (*OfferPayload) GetMediatorNodeAddresses deprecated added in v0.1.4

func (x *OfferPayload) GetMediatorNodeAddresses() []*NodeAddress

Deprecated: Marked as deprecated in pb.proto.

func (*OfferPayload) GetMinAmount added in v0.1.4

func (x *OfferPayload) GetMinAmount() int64

func (*OfferPayload) GetOfferFeePaymentTxId added in v0.1.4

func (x *OfferPayload) GetOfferFeePaymentTxId() string

func (*OfferPayload) GetOwnerNodeAddress added in v0.1.4

func (x *OfferPayload) GetOwnerNodeAddress() *NodeAddress

func (*OfferPayload) GetPaymentMethodId added in v0.1.4

func (x *OfferPayload) GetPaymentMethodId() string

func (*OfferPayload) GetPrice added in v0.1.4

func (x *OfferPayload) GetPrice() int64

func (*OfferPayload) GetProtocolVersion added in v0.1.4

func (x *OfferPayload) GetProtocolVersion() int32

func (*OfferPayload) GetPubKeyRing added in v0.1.4

func (x *OfferPayload) GetPubKeyRing() *PubKeyRing

func (*OfferPayload) GetSellerSecurityDeposit added in v0.1.4

func (x *OfferPayload) GetSellerSecurityDeposit() int64

func (*OfferPayload) GetTxFee added in v0.1.4

func (x *OfferPayload) GetTxFee() int64

func (*OfferPayload) GetUpperClosePrice added in v0.1.4

func (x *OfferPayload) GetUpperClosePrice() int64

func (*OfferPayload) GetUseAutoClose added in v0.1.4

func (x *OfferPayload) GetUseAutoClose() bool

func (*OfferPayload) GetUseMarketBasedPrice added in v0.1.4

func (x *OfferPayload) GetUseMarketBasedPrice() bool

func (*OfferPayload) GetUseReOpenAfterAutoClose added in v0.1.4

func (x *OfferPayload) GetUseReOpenAfterAutoClose() bool

func (*OfferPayload) GetVersionNr added in v0.1.4

func (x *OfferPayload) GetVersionNr() string

func (*OfferPayload) ProtoMessage added in v0.1.4

func (*OfferPayload) ProtoMessage()

func (*OfferPayload) ProtoReflect added in v0.1.4

func (x *OfferPayload) ProtoReflect() protoreflect.Message

func (*OfferPayload) Reset added in v0.1.4

func (x *OfferPayload) Reset()

func (*OfferPayload) String added in v0.1.4

func (x *OfferPayload) String() string

type Offer_BsqSwapOfferPayload added in v0.1.6

type Offer_BsqSwapOfferPayload struct {
	BsqSwapOfferPayload *BsqSwapOfferPayload `protobuf:"bytes,2,opt,name=bsq_swap_offer_payload,json=bsqSwapOfferPayload,proto3,oneof"`
}

type Offer_OfferPayload added in v0.1.6

type Offer_OfferPayload struct {
	OfferPayload *OfferPayload `protobuf:"bytes,1,opt,name=offer_payload,json=offerPayload,proto3,oneof"`
}

type Offer_State added in v0.1.4

type Offer_State int32
const (
	Offer_PB_ERROR       Offer_State = 0
	Offer_UNKNOWN        Offer_State = 1
	Offer_OFFER_FEE_PAID Offer_State = 2
	Offer_AVAILABLE      Offer_State = 3
	Offer_NOT_AVAILABLE  Offer_State = 4
	Offer_REMOVED        Offer_State = 5
	Offer_MAKER_OFFLINE  Offer_State = 6
)

func (Offer_State) Descriptor added in v0.1.4

func (Offer_State) Enum added in v0.1.4

func (x Offer_State) Enum() *Offer_State

func (Offer_State) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use Offer_State.Descriptor instead.

func (Offer_State) Number added in v0.1.4

func (x Offer_State) Number() protoreflect.EnumNumber

func (Offer_State) String added in v0.1.4

func (x Offer_State) String() string

func (Offer_State) Type added in v0.1.4

type OffersClient added in v0.1.4

type OffersClient interface {
	// Get an offer's category, one of  FIAT, ALTCOIN, or BSQ_SWAP.  This information is needed before an offer
	// can be taken, and is used by a client to determine what kind of offer to take:  a v1 FIAT or ALTCOIN offer,
	// or a BSQ swap offer.  V1 and BSQ swap trades are handled differently in the API daemon.
	GetOfferCategory(ctx context.Context, in *GetOfferCategoryRequest, opts ...grpc.CallOption) (*GetOfferCategoryReply, error)
	// Get the available BSQ swap offer with offer-id.
	GetBsqSwapOffer(ctx context.Context, in *GetOfferRequest, opts ...grpc.CallOption) (*GetBsqSwapOfferReply, error)
	// Get the v1 protocol offer with an offer-id.  Your node must have a payment account with the same
	// payment method as the offer's associated payment method, e,g., ACH_TRANSFER, CASH_DEPOSIT, etc.
	GetOffer(ctx context.Context, in *GetOfferRequest, opts ...grpc.CallOption) (*GetOfferReply, error)
	// Get user's BSQ swap offer with offer-id.
	GetMyBsqSwapOffer(ctx context.Context, in *GetMyOfferRequest, opts ...grpc.CallOption) (*GetMyBsqSwapOfferReply, error)
	// Get my open v1 protocol offer with offer-id.  Deprecated since 27-Dec-2021 (v1.8.0).  Use GetOffer.
	GetMyOffer(ctx context.Context, in *GetMyOfferRequest, opts ...grpc.CallOption) (*GetMyOfferReply, error)
	// Get all available BSQ swap offers with a BUY (BTC) or SELL (BTC) direction.
	GetBsqSwapOffers(ctx context.Context, in *GetBsqSwapOffersRequest, opts ...grpc.CallOption) (*GetBsqSwapOffersReply, error)
	// Get all available v1 protocol offers with a BUY (BTC) or SELL (BTC) direction.  The returned offers
	// are restricted to those associated with payment methods matching the payment methods you have set up
	// on your node, e,g., NATIONAL_BANK, US_POSTAL_MONEY_ORDER, etc.
	GetOffers(ctx context.Context, in *GetOffersRequest, opts ...grpc.CallOption) (*GetOffersReply, error)
	// Get all user's BSQ swap offers with a BUY (BTC) or SELL (BTC) direction.
	GetMyBsqSwapOffers(ctx context.Context, in *GetBsqSwapOffersRequest, opts ...grpc.CallOption) (*GetMyBsqSwapOffersReply, error)
	// Get all user's open v1 protocol offers with a BUY (BTC) or SELL (BTC) direction.
	GetMyOffers(ctx context.Context, in *GetMyOffersRequest, opts ...grpc.CallOption) (*GetMyOffersReply, error)
	// Create a BSQ swap offer.
	CreateBsqSwapOffer(ctx context.Context, in *CreateBsqSwapOfferRequest, opts ...grpc.CallOption) (*CreateBsqSwapOfferReply, error)
	// Create a v1 protocol offer.
	CreateOffer(ctx context.Context, in *CreateOfferRequest, opts ...grpc.CallOption) (*CreateOfferReply, error)
	// Edit an open offer.
	EditOffer(ctx context.Context, in *EditOfferRequest, opts ...grpc.CallOption) (*EditOfferReply, error)
	// Cancel an open offer;  remove it from the offer book.
	CancelOffer(ctx context.Context, in *CancelOfferRequest, opts ...grpc.CallOption) (*CancelOfferReply, error)
}

OffersClient is the client API for Offers service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewOffersClient added in v0.1.4

func NewOffersClient(cc grpc.ClientConnInterface) OffersClient

type OffersServer added in v0.1.4

type OffersServer interface {
	// Get an offer's category, one of  FIAT, ALTCOIN, or BSQ_SWAP.  This information is needed before an offer
	// can be taken, and is used by a client to determine what kind of offer to take:  a v1 FIAT or ALTCOIN offer,
	// or a BSQ swap offer.  V1 and BSQ swap trades are handled differently in the API daemon.
	GetOfferCategory(context.Context, *GetOfferCategoryRequest) (*GetOfferCategoryReply, error)
	// Get the available BSQ swap offer with offer-id.
	GetBsqSwapOffer(context.Context, *GetOfferRequest) (*GetBsqSwapOfferReply, error)
	// Get the v1 protocol offer with an offer-id.  Your node must have a payment account with the same
	// payment method as the offer's associated payment method, e,g., ACH_TRANSFER, CASH_DEPOSIT, etc.
	GetOffer(context.Context, *GetOfferRequest) (*GetOfferReply, error)
	// Get user's BSQ swap offer with offer-id.
	GetMyBsqSwapOffer(context.Context, *GetMyOfferRequest) (*GetMyBsqSwapOfferReply, error)
	// Get my open v1 protocol offer with offer-id.  Deprecated since 27-Dec-2021 (v1.8.0).  Use GetOffer.
	GetMyOffer(context.Context, *GetMyOfferRequest) (*GetMyOfferReply, error)
	// Get all available BSQ swap offers with a BUY (BTC) or SELL (BTC) direction.
	GetBsqSwapOffers(context.Context, *GetBsqSwapOffersRequest) (*GetBsqSwapOffersReply, error)
	// Get all available v1 protocol offers with a BUY (BTC) or SELL (BTC) direction.  The returned offers
	// are restricted to those associated with payment methods matching the payment methods you have set up
	// on your node, e,g., NATIONAL_BANK, US_POSTAL_MONEY_ORDER, etc.
	GetOffers(context.Context, *GetOffersRequest) (*GetOffersReply, error)
	// Get all user's BSQ swap offers with a BUY (BTC) or SELL (BTC) direction.
	GetMyBsqSwapOffers(context.Context, *GetBsqSwapOffersRequest) (*GetMyBsqSwapOffersReply, error)
	// Get all user's open v1 protocol offers with a BUY (BTC) or SELL (BTC) direction.
	GetMyOffers(context.Context, *GetMyOffersRequest) (*GetMyOffersReply, error)
	// Create a BSQ swap offer.
	CreateBsqSwapOffer(context.Context, *CreateBsqSwapOfferRequest) (*CreateBsqSwapOfferReply, error)
	// Create a v1 protocol offer.
	CreateOffer(context.Context, *CreateOfferRequest) (*CreateOfferReply, error)
	// Edit an open offer.
	EditOffer(context.Context, *EditOfferRequest) (*EditOfferReply, error)
	// Cancel an open offer;  remove it from the offer book.
	CancelOffer(context.Context, *CancelOfferRequest) (*CancelOfferReply, error)
	// contains filtered or unexported methods
}

OffersServer is the server API for Offers service. All implementations must embed UnimplementedOffersServer for forward compatibility

type OpenNewDisputeMessage added in v0.1.4

type OpenNewDisputeMessage struct {
	Dispute           *Dispute     `protobuf:"bytes,1,opt,name=dispute,proto3" json:"dispute,omitempty"`
	SenderNodeAddress *NodeAddress `protobuf:"bytes,2,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Uid               string       `protobuf:"bytes,3,opt,name=uid,proto3" json:"uid,omitempty"`
	Type              SupportType  `protobuf:"varint,4,opt,name=type,proto3,enum=io.bisq.protobuffer.SupportType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenNewDisputeMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use OpenNewDisputeMessage.ProtoReflect.Descriptor instead.

func (*OpenNewDisputeMessage) GetDispute added in v0.1.4

func (x *OpenNewDisputeMessage) GetDispute() *Dispute

func (*OpenNewDisputeMessage) GetSenderNodeAddress added in v0.1.4

func (x *OpenNewDisputeMessage) GetSenderNodeAddress() *NodeAddress

func (*OpenNewDisputeMessage) GetType added in v0.1.4

func (x *OpenNewDisputeMessage) GetType() SupportType

func (*OpenNewDisputeMessage) GetUid added in v0.1.4

func (x *OpenNewDisputeMessage) GetUid() string

func (*OpenNewDisputeMessage) ProtoMessage added in v0.1.4

func (*OpenNewDisputeMessage) ProtoMessage()

func (*OpenNewDisputeMessage) ProtoReflect added in v0.1.4

func (x *OpenNewDisputeMessage) ProtoReflect() protoreflect.Message

func (*OpenNewDisputeMessage) Reset added in v0.1.4

func (x *OpenNewDisputeMessage) Reset()

func (*OpenNewDisputeMessage) String added in v0.1.4

func (x *OpenNewDisputeMessage) String() string

type OpenOffer added in v0.1.4

type OpenOffer struct {
	Offer                  *Offer          `protobuf:"bytes,1,opt,name=offer,proto3" json:"offer,omitempty"`
	State                  OpenOffer_State `protobuf:"varint,2,opt,name=state,proto3,enum=io.bisq.protobuffer.OpenOffer_State" json:"state,omitempty"`
	ArbitratorNodeAddress  *NodeAddress    `` /* 126-byte string literal not displayed */
	MediatorNodeAddress    *NodeAddress    `protobuf:"bytes,4,opt,name=mediator_node_address,json=mediatorNodeAddress,proto3" json:"mediator_node_address,omitempty"`
	RefundAgentNodeAddress *NodeAddress    `` /* 131-byte string literal not displayed */
	TriggerPrice           int64           `protobuf:"varint,6,opt,name=trigger_price,json=triggerPrice,proto3" json:"trigger_price,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenOffer) Descriptor deprecated added in v0.1.4

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

Deprecated: Use OpenOffer.ProtoReflect.Descriptor instead.

func (*OpenOffer) GetArbitratorNodeAddress added in v0.1.4

func (x *OpenOffer) GetArbitratorNodeAddress() *NodeAddress

func (*OpenOffer) GetMediatorNodeAddress added in v0.1.4

func (x *OpenOffer) GetMediatorNodeAddress() *NodeAddress

func (*OpenOffer) GetOffer added in v0.1.4

func (x *OpenOffer) GetOffer() *Offer

func (*OpenOffer) GetRefundAgentNodeAddress added in v0.1.4

func (x *OpenOffer) GetRefundAgentNodeAddress() *NodeAddress

func (*OpenOffer) GetState added in v0.1.4

func (x *OpenOffer) GetState() OpenOffer_State

func (*OpenOffer) GetTriggerPrice added in v0.1.4

func (x *OpenOffer) GetTriggerPrice() int64

func (*OpenOffer) ProtoMessage added in v0.1.4

func (*OpenOffer) ProtoMessage()

func (*OpenOffer) ProtoReflect added in v0.1.4

func (x *OpenOffer) ProtoReflect() protoreflect.Message

func (*OpenOffer) Reset added in v0.1.4

func (x *OpenOffer) Reset()

func (*OpenOffer) String added in v0.1.4

func (x *OpenOffer) String() string

type OpenOffer_State added in v0.1.4

type OpenOffer_State int32
const (
	OpenOffer_PB_ERROR    OpenOffer_State = 0
	OpenOffer_AVAILABLE   OpenOffer_State = 1
	OpenOffer_RESERVED    OpenOffer_State = 2
	OpenOffer_CLOSED      OpenOffer_State = 3
	OpenOffer_CANCELED    OpenOffer_State = 4
	OpenOffer_DEACTIVATED OpenOffer_State = 5
)

func (OpenOffer_State) Descriptor added in v0.1.4

func (OpenOffer_State) Enum added in v0.1.4

func (x OpenOffer_State) Enum() *OpenOffer_State

func (OpenOffer_State) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use OpenOffer_State.Descriptor instead.

func (OpenOffer_State) Number added in v0.1.4

func (OpenOffer_State) String added in v0.1.4

func (x OpenOffer_State) String() string

func (OpenOffer_State) Type added in v0.1.4

type ParamChange added in v0.1.4

type ParamChange struct {
	ParamName        string `protobuf:"bytes,1,opt,name=param_name,json=paramName,proto3" json:"param_name,omitempty"`
	ParamValue       string `protobuf:"bytes,2,opt,name=param_value,json=paramValue,proto3" json:"param_value,omitempty"`
	ActivationHeight int32  `protobuf:"varint,3,opt,name=activation_height,json=activationHeight,proto3" json:"activation_height,omitempty"`
	// contains filtered or unexported fields
}

func (*ParamChange) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ParamChange.ProtoReflect.Descriptor instead.

func (*ParamChange) GetActivationHeight added in v0.1.4

func (x *ParamChange) GetActivationHeight() int32

func (*ParamChange) GetParamName added in v0.1.4

func (x *ParamChange) GetParamName() string

func (*ParamChange) GetParamValue added in v0.1.4

func (x *ParamChange) GetParamValue() string

func (*ParamChange) ProtoMessage added in v0.1.4

func (*ParamChange) ProtoMessage()

func (*ParamChange) ProtoReflect added in v0.1.4

func (x *ParamChange) ProtoReflect() protoreflect.Message

func (*ParamChange) Reset added in v0.1.4

func (x *ParamChange) Reset()

func (*ParamChange) String added in v0.1.4

func (x *ParamChange) String() string

type PasswordCredential

type PasswordCredential string

PasswordCredential for Bisq API authentication: Must match "apiPassword=..." in "bisq.properties"

func (PasswordCredential) GetRequestMetadata

func (c PasswordCredential) GetRequestMetadata(ctx context.Context, uri ...string) (map[string]string, error)

GetRequestMetadata for API password authentication

func (PasswordCredential) RequireTransportSecurity

func (c PasswordCredential) RequireTransportSecurity() bool

RequireTransportSecurity signals that insecure (local) connections are fine

type PaxumAccountPayload added in v0.1.5

type PaxumAccountPayload struct {
	Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*PaxumAccountPayload) Descriptor deprecated added in v0.1.5

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

Deprecated: Use PaxumAccountPayload.ProtoReflect.Descriptor instead.

func (*PaxumAccountPayload) GetEmail added in v0.1.5

func (x *PaxumAccountPayload) GetEmail() string

func (*PaxumAccountPayload) ProtoMessage added in v0.1.5

func (*PaxumAccountPayload) ProtoMessage()

func (*PaxumAccountPayload) ProtoReflect added in v0.1.5

func (x *PaxumAccountPayload) ProtoReflect() protoreflect.Message

func (*PaxumAccountPayload) Reset added in v0.1.5

func (x *PaxumAccountPayload) Reset()

func (*PaxumAccountPayload) String added in v0.1.5

func (x *PaxumAccountPayload) String() string

type PaymentAccount added in v0.1.4

type PaymentAccount struct {
	Id                    string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CreationDate          int64                  `protobuf:"varint,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
	PaymentMethod         *PaymentMethod         `protobuf:"bytes,3,opt,name=payment_method,json=paymentMethod,proto3" json:"payment_method,omitempty"`
	AccountName           string                 `protobuf:"bytes,4,opt,name=account_name,json=accountName,proto3" json:"account_name,omitempty"`
	TradeCurrencies       []*TradeCurrency       `protobuf:"bytes,5,rep,name=trade_currencies,json=tradeCurrencies,proto3" json:"trade_currencies,omitempty"`
	SelectedTradeCurrency *TradeCurrency         `` /* 126-byte string literal not displayed */
	PaymentAccountPayload *PaymentAccountPayload `` /* 126-byte string literal not displayed */
	ExtraData             map[string]string      `` /* 176-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*PaymentAccount) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PaymentAccount.ProtoReflect.Descriptor instead.

func (*PaymentAccount) GetAccountName added in v0.1.4

func (x *PaymentAccount) GetAccountName() string

func (*PaymentAccount) GetCreationDate added in v0.1.4

func (x *PaymentAccount) GetCreationDate() int64

func (*PaymentAccount) GetExtraData added in v0.1.10

func (x *PaymentAccount) GetExtraData() map[string]string

func (*PaymentAccount) GetId added in v0.1.4

func (x *PaymentAccount) GetId() string

func (*PaymentAccount) GetPaymentAccountPayload added in v0.1.4

func (x *PaymentAccount) GetPaymentAccountPayload() *PaymentAccountPayload

func (*PaymentAccount) GetPaymentMethod added in v0.1.4

func (x *PaymentAccount) GetPaymentMethod() *PaymentMethod

func (*PaymentAccount) GetSelectedTradeCurrency added in v0.1.4

func (x *PaymentAccount) GetSelectedTradeCurrency() *TradeCurrency

func (*PaymentAccount) GetTradeCurrencies added in v0.1.4

func (x *PaymentAccount) GetTradeCurrencies() []*TradeCurrency

func (*PaymentAccount) ProtoMessage added in v0.1.4

func (*PaymentAccount) ProtoMessage()

func (*PaymentAccount) ProtoReflect added in v0.1.4

func (x *PaymentAccount) ProtoReflect() protoreflect.Message

func (*PaymentAccount) Reset added in v0.1.4

func (x *PaymentAccount) Reset()

func (*PaymentAccount) String added in v0.1.4

func (x *PaymentAccount) String() string

type PaymentAccountFilter added in v0.1.4

type PaymentAccountFilter struct {
	PaymentMethodId string `protobuf:"bytes,1,opt,name=payment_method_id,json=paymentMethodId,proto3" json:"payment_method_id,omitempty"`
	GetMethodName   string `protobuf:"bytes,2,opt,name=get_method_name,json=getMethodName,proto3" json:"get_method_name,omitempty"`
	Value           string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*PaymentAccountFilter) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PaymentAccountFilter.ProtoReflect.Descriptor instead.

func (*PaymentAccountFilter) GetGetMethodName added in v0.1.4

func (x *PaymentAccountFilter) GetGetMethodName() string

func (*PaymentAccountFilter) GetPaymentMethodId added in v0.1.4

func (x *PaymentAccountFilter) GetPaymentMethodId() string

func (*PaymentAccountFilter) GetValue added in v0.1.4

func (x *PaymentAccountFilter) GetValue() string

func (*PaymentAccountFilter) ProtoMessage added in v0.1.4

func (*PaymentAccountFilter) ProtoMessage()

func (*PaymentAccountFilter) ProtoReflect added in v0.1.4

func (x *PaymentAccountFilter) ProtoReflect() protoreflect.Message

func (*PaymentAccountFilter) Reset added in v0.1.4

func (x *PaymentAccountFilter) Reset()

func (*PaymentAccountFilter) String added in v0.1.4

func (x *PaymentAccountFilter) String() string

type PaymentAccountList added in v0.1.4

type PaymentAccountList struct {
	PaymentAccount []*PaymentAccount `protobuf:"bytes,1,rep,name=payment_account,json=paymentAccount,proto3" json:"payment_account,omitempty"`
	// contains filtered or unexported fields
}

func (*PaymentAccountList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PaymentAccountList.ProtoReflect.Descriptor instead.

func (*PaymentAccountList) GetPaymentAccount added in v0.1.4

func (x *PaymentAccountList) GetPaymentAccount() []*PaymentAccount

func (*PaymentAccountList) ProtoMessage added in v0.1.4

func (*PaymentAccountList) ProtoMessage()

func (*PaymentAccountList) ProtoReflect added in v0.1.4

func (x *PaymentAccountList) ProtoReflect() protoreflect.Message

func (*PaymentAccountList) Reset added in v0.1.4

func (x *PaymentAccountList) Reset()

func (*PaymentAccountList) String added in v0.1.4

func (x *PaymentAccountList) String() string

type PaymentAccountPayload added in v0.1.4

type PaymentAccountPayload struct {
	Id              string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	PaymentMethodId string `protobuf:"bytes,2,opt,name=payment_method_id,json=paymentMethodId,proto3" json:"payment_method_id,omitempty"`
	// Not used anymore but we need to keep it in PB for backward compatibility.
	//
	// Deprecated: Marked as deprecated in pb.proto.
	MaxTradePeriod int64 `protobuf:"varint,3,opt,name=max_trade_period,json=maxTradePeriod,proto3" json:"max_trade_period,omitempty"`
	// Types that are assignable to Message:
	//
	//	*PaymentAccountPayload_AliPayAccountPayload
	//	*PaymentAccountPayload_ChaseQuickPayAccountPayload
	//	*PaymentAccountPayload_ClearXchangeAccountPayload
	//	*PaymentAccountPayload_CountryBasedPaymentAccountPayload
	//	*PaymentAccountPayload_CryptoCurrencyAccountPayload
	//	*PaymentAccountPayload_FasterPaymentsAccountPayload
	//	*PaymentAccountPayload_InteracETransferAccountPayload
	//	*PaymentAccountPayload_OKPayAccountPayload
	//	*PaymentAccountPayload_PerfectMoneyAccountPayload
	//	*PaymentAccountPayload_SwishAccountPayload
	//	*PaymentAccountPayload_USPostalMoneyOrderAccountPayload
	//	*PaymentAccountPayload_UpholdAccountPayload
	//	*PaymentAccountPayload_CashAppAccountPayload
	//	*PaymentAccountPayload_MoneyBeamAccountPayload
	//	*PaymentAccountPayload_VenmoAccountPayload
	//	*PaymentAccountPayload_PopmoneyAccountPayload
	//	*PaymentAccountPayload_RevolutAccountPayload
	//	*PaymentAccountPayload_WeChatPayAccountPayload
	//	*PaymentAccountPayload_MoneyGramAccountPayload
	//	*PaymentAccountPayload_HalCashAccountPayload
	//	*PaymentAccountPayload_PromptPayAccountPayload
	//	*PaymentAccountPayload_AdvancedCashAccountPayload
	//	*PaymentAccountPayload_InstantCryptoCurrencyAccountPayload
	//	*PaymentAccountPayload_JapanBankAccountPayload
	//	*PaymentAccountPayload_TransferwiseAccountPayload
	//	*PaymentAccountPayload_AustraliaPayidPayload
	//	*PaymentAccountPayload_AmazonGiftCardAccountPayload
	//	*PaymentAccountPayload_CashByMailAccountPayload
	//	*PaymentAccountPayload_CapitualAccountPayload
	//	*PaymentAccountPayload_PayseraAccountPayload
	//	*PaymentAccountPayload_PaxumAccountPayload
	//	*PaymentAccountPayload_SwiftAccountPayload
	//	*PaymentAccountPayload_CelPayAccountPayload
	//	*PaymentAccountPayload_MoneseAccountPayload
	//	*PaymentAccountPayload_VerseAccountPayload
	//	*PaymentAccountPayload_BsqSwapAccountPayload
	Message             isPaymentAccountPayload_Message `protobuf_oneof:"message"`
	ExcludeFromJsonData map[string]string               `` /* 211-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*PaymentAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PaymentAccountPayload.ProtoReflect.Descriptor instead.

func (*PaymentAccountPayload) GetAdvancedCashAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetAdvancedCashAccountPayload() *AdvancedCashAccountPayload

func (*PaymentAccountPayload) GetAliPayAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetAliPayAccountPayload() *AliPayAccountPayload

func (*PaymentAccountPayload) GetAmazonGiftCardAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetAmazonGiftCardAccountPayload() *AmazonGiftCardAccountPayload

func (*PaymentAccountPayload) GetAustraliaPayidPayload added in v0.1.4

func (x *PaymentAccountPayload) GetAustraliaPayidPayload() *AustraliaPayidPayload

func (*PaymentAccountPayload) GetBsqSwapAccountPayload added in v0.1.6

func (x *PaymentAccountPayload) GetBsqSwapAccountPayload() *BsqSwapAccountPayload

func (*PaymentAccountPayload) GetCapitualAccountPayload added in v0.1.5

func (x *PaymentAccountPayload) GetCapitualAccountPayload() *CapitualAccountPayload

func (*PaymentAccountPayload) GetCashAppAccountPayload deprecated added in v0.1.4

func (x *PaymentAccountPayload) GetCashAppAccountPayload() *CashAppAccountPayload

Deprecated: Marked as deprecated in pb.proto.

func (*PaymentAccountPayload) GetCashByMailAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetCashByMailAccountPayload() *CashByMailAccountPayload

func (*PaymentAccountPayload) GetCelPayAccountPayload added in v0.1.6

func (x *PaymentAccountPayload) GetCelPayAccountPayload() *CelPayAccountPayload

func (*PaymentAccountPayload) GetChaseQuickPayAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetChaseQuickPayAccountPayload() *ChaseQuickPayAccountPayload

func (*PaymentAccountPayload) GetClearXchangeAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetClearXchangeAccountPayload() *ClearXchangeAccountPayload

func (*PaymentAccountPayload) GetCountryBasedPaymentAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetCountryBasedPaymentAccountPayload() *CountryBasedPaymentAccountPayload

func (*PaymentAccountPayload) GetCryptoCurrencyAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetCryptoCurrencyAccountPayload() *CryptoCurrencyAccountPayload

func (*PaymentAccountPayload) GetExcludeFromJsonData added in v0.1.4

func (x *PaymentAccountPayload) GetExcludeFromJsonData() map[string]string

func (*PaymentAccountPayload) GetFasterPaymentsAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetFasterPaymentsAccountPayload() *FasterPaymentsAccountPayload

func (*PaymentAccountPayload) GetHalCashAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetHalCashAccountPayload() *HalCashAccountPayload

func (*PaymentAccountPayload) GetId added in v0.1.4

func (x *PaymentAccountPayload) GetId() string

func (*PaymentAccountPayload) GetInstantCryptoCurrencyAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetInstantCryptoCurrencyAccountPayload() *InstantCryptoCurrencyAccountPayload

func (*PaymentAccountPayload) GetInteracETransferAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetInteracETransferAccountPayload() *InteracETransferAccountPayload

func (*PaymentAccountPayload) GetJapanBankAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetJapanBankAccountPayload() *JapanBankAccountPayload

func (*PaymentAccountPayload) GetMaxTradePeriod deprecated added in v0.1.4

func (x *PaymentAccountPayload) GetMaxTradePeriod() int64

Deprecated: Marked as deprecated in pb.proto.

func (*PaymentAccountPayload) GetMessage added in v0.1.4

func (m *PaymentAccountPayload) GetMessage() isPaymentAccountPayload_Message

func (*PaymentAccountPayload) GetMoneseAccountPayload added in v0.1.6

func (x *PaymentAccountPayload) GetMoneseAccountPayload() *MoneseAccountPayload

func (*PaymentAccountPayload) GetMoneyBeamAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetMoneyBeamAccountPayload() *MoneyBeamAccountPayload

func (*PaymentAccountPayload) GetMoneyGramAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetMoneyGramAccountPayload() *MoneyGramAccountPayload

func (*PaymentAccountPayload) GetOKPayAccountPayload deprecated added in v0.1.4

func (x *PaymentAccountPayload) GetOKPayAccountPayload() *OKPayAccountPayload

Deprecated: Marked as deprecated in pb.proto.

func (*PaymentAccountPayload) GetPaxumAccountPayload added in v0.1.5

func (x *PaymentAccountPayload) GetPaxumAccountPayload() *PaxumAccountPayload

func (*PaymentAccountPayload) GetPaymentMethodId added in v0.1.4

func (x *PaymentAccountPayload) GetPaymentMethodId() string

func (*PaymentAccountPayload) GetPayseraAccountPayload added in v0.1.5

func (x *PaymentAccountPayload) GetPayseraAccountPayload() *PayseraAccountPayload

func (*PaymentAccountPayload) GetPerfectMoneyAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetPerfectMoneyAccountPayload() *PerfectMoneyAccountPayload

func (*PaymentAccountPayload) GetPopmoneyAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetPopmoneyAccountPayload() *PopmoneyAccountPayload

func (*PaymentAccountPayload) GetPromptPayAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetPromptPayAccountPayload() *PromptPayAccountPayload

func (*PaymentAccountPayload) GetRevolutAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetRevolutAccountPayload() *RevolutAccountPayload

func (*PaymentAccountPayload) GetSwiftAccountPayload added in v0.1.6

func (x *PaymentAccountPayload) GetSwiftAccountPayload() *SwiftAccountPayload

func (*PaymentAccountPayload) GetSwishAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetSwishAccountPayload() *SwishAccountPayload

func (*PaymentAccountPayload) GetTransferwiseAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetTransferwiseAccountPayload() *TransferwiseAccountPayload

func (*PaymentAccountPayload) GetUSPostalMoneyOrderAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetUSPostalMoneyOrderAccountPayload() *USPostalMoneyOrderAccountPayload

func (*PaymentAccountPayload) GetUpholdAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetUpholdAccountPayload() *UpholdAccountPayload

func (*PaymentAccountPayload) GetVenmoAccountPayload deprecated added in v0.1.4

func (x *PaymentAccountPayload) GetVenmoAccountPayload() *VenmoAccountPayload

Deprecated: Marked as deprecated in pb.proto.

func (*PaymentAccountPayload) GetVerseAccountPayload added in v0.1.6

func (x *PaymentAccountPayload) GetVerseAccountPayload() *VerseAccountPayload

func (*PaymentAccountPayload) GetWeChatPayAccountPayload added in v0.1.4

func (x *PaymentAccountPayload) GetWeChatPayAccountPayload() *WeChatPayAccountPayload

func (*PaymentAccountPayload) ProtoMessage added in v0.1.4

func (*PaymentAccountPayload) ProtoMessage()

func (*PaymentAccountPayload) ProtoReflect added in v0.1.4

func (x *PaymentAccountPayload) ProtoReflect() protoreflect.Message

func (*PaymentAccountPayload) Reset added in v0.1.4

func (x *PaymentAccountPayload) Reset()

func (*PaymentAccountPayload) String added in v0.1.4

func (x *PaymentAccountPayload) String() string

type PaymentAccountPayloadInfo added in v0.1.5

type PaymentAccountPayloadInfo struct {
	Id              string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`                                                    // The unique identifier of the payment account.
	PaymentMethodId string `protobuf:"bytes,2,opt,name=payment_method_id,json=paymentMethodId,proto3" json:"payment_method_id,omitempty"` // The unique identifier of the payment method.
	Address         string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`                                          // The optional altcoin wallet address associated with the (altcoin) payment account.
	PaymentDetails  string `protobuf:"bytes,4,opt,name=payment_details,json=paymentDetails,proto3" json:"payment_details,omitempty"`      // The optional payment details, if available.
	// contains filtered or unexported fields
}

func (*PaymentAccountPayloadInfo) Descriptor deprecated added in v0.1.5

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

Deprecated: Use PaymentAccountPayloadInfo.ProtoReflect.Descriptor instead.

func (*PaymentAccountPayloadInfo) GetAddress added in v0.1.5

func (x *PaymentAccountPayloadInfo) GetAddress() string

func (*PaymentAccountPayloadInfo) GetId added in v0.1.5

func (x *PaymentAccountPayloadInfo) GetId() string

func (*PaymentAccountPayloadInfo) GetPaymentDetails added in v0.1.9

func (x *PaymentAccountPayloadInfo) GetPaymentDetails() string

func (*PaymentAccountPayloadInfo) GetPaymentMethodId added in v0.1.5

func (x *PaymentAccountPayloadInfo) GetPaymentMethodId() string

func (*PaymentAccountPayloadInfo) ProtoMessage added in v0.1.5

func (*PaymentAccountPayloadInfo) ProtoMessage()

func (*PaymentAccountPayloadInfo) ProtoReflect added in v0.1.5

func (*PaymentAccountPayloadInfo) Reset added in v0.1.5

func (x *PaymentAccountPayloadInfo) Reset()

func (*PaymentAccountPayloadInfo) String added in v0.1.5

func (x *PaymentAccountPayloadInfo) String() string

type PaymentAccountPayload_AdvancedCashAccountPayload added in v0.1.4

type PaymentAccountPayload_AdvancedCashAccountPayload struct {
	AdvancedCashAccountPayload *AdvancedCashAccountPayload `protobuf:"bytes,26,opt,name=advanced_cash_account_payload,json=advancedCashAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_AliPayAccountPayload added in v0.1.4

type PaymentAccountPayload_AliPayAccountPayload struct {
	AliPayAccountPayload *AliPayAccountPayload `protobuf:"bytes,4,opt,name=ali_pay_account_payload,json=aliPayAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_AmazonGiftCardAccountPayload added in v0.1.4

type PaymentAccountPayload_AmazonGiftCardAccountPayload struct {
	AmazonGiftCardAccountPayload *AmazonGiftCardAccountPayload `protobuf:"bytes,31,opt,name=amazon_gift_card_account_payload,json=amazonGiftCardAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_AustraliaPayidPayload added in v0.1.4

type PaymentAccountPayload_AustraliaPayidPayload struct {
	AustraliaPayidPayload *AustraliaPayidPayload `protobuf:"bytes,30,opt,name=australia_payid_payload,json=australiaPayidPayload,proto3,oneof"`
}

type PaymentAccountPayload_BsqSwapAccountPayload added in v0.1.6

type PaymentAccountPayload_BsqSwapAccountPayload struct {
	BsqSwapAccountPayload *BsqSwapAccountPayload `protobuf:"bytes,40,opt,name=bsq_swap_account_payload,json=bsqSwapAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_CapitualAccountPayload added in v0.1.5

type PaymentAccountPayload_CapitualAccountPayload struct {
	CapitualAccountPayload *CapitualAccountPayload `protobuf:"bytes,33,opt,name=capitual_account_payload,json=capitualAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_CashAppAccountPayload added in v0.1.4

type PaymentAccountPayload_CashAppAccountPayload struct {
	// Deprecated: Marked as deprecated in pb.proto.
	CashAppAccountPayload *CashAppAccountPayload `protobuf:"bytes,17,opt,name=cash_app_account_payload,json=cashAppAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_CashByMailAccountPayload added in v0.1.4

type PaymentAccountPayload_CashByMailAccountPayload struct {
	CashByMailAccountPayload *CashByMailAccountPayload `protobuf:"bytes,32,opt,name=cash_by_mail_account_payload,json=cashByMailAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_CelPayAccountPayload added in v0.1.6

type PaymentAccountPayload_CelPayAccountPayload struct {
	CelPayAccountPayload *CelPayAccountPayload `protobuf:"bytes,37,opt,name=cel_pay_account_payload,json=celPayAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_ChaseQuickPayAccountPayload added in v0.1.4

type PaymentAccountPayload_ChaseQuickPayAccountPayload struct {
	ChaseQuickPayAccountPayload *ChaseQuickPayAccountPayload `protobuf:"bytes,5,opt,name=chase_quick_pay_account_payload,json=chaseQuickPayAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_ClearXchangeAccountPayload added in v0.1.4

type PaymentAccountPayload_ClearXchangeAccountPayload struct {
	ClearXchangeAccountPayload *ClearXchangeAccountPayload `protobuf:"bytes,6,opt,name=clear_xchange_account_payload,json=clearXchangeAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_CountryBasedPaymentAccountPayload added in v0.1.4

type PaymentAccountPayload_CountryBasedPaymentAccountPayload struct {
	CountryBasedPaymentAccountPayload *CountryBasedPaymentAccountPayload `protobuf:"bytes,7,opt,name=country_based_payment_account_payload,json=countryBasedPaymentAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_CryptoCurrencyAccountPayload added in v0.1.4

type PaymentAccountPayload_CryptoCurrencyAccountPayload struct {
	CryptoCurrencyAccountPayload *CryptoCurrencyAccountPayload `protobuf:"bytes,8,opt,name=crypto_currency_account_payload,json=cryptoCurrencyAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_FasterPaymentsAccountPayload added in v0.1.4

type PaymentAccountPayload_FasterPaymentsAccountPayload struct {
	FasterPaymentsAccountPayload *FasterPaymentsAccountPayload `protobuf:"bytes,9,opt,name=faster_payments_account_payload,json=fasterPaymentsAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_HalCashAccountPayload added in v0.1.4

type PaymentAccountPayload_HalCashAccountPayload struct {
	HalCashAccountPayload *HalCashAccountPayload `protobuf:"bytes,24,opt,name=hal_cash_account_payload,json=halCashAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_InstantCryptoCurrencyAccountPayload added in v0.1.4

type PaymentAccountPayload_InstantCryptoCurrencyAccountPayload struct {
	InstantCryptoCurrencyAccountPayload *InstantCryptoCurrencyAccountPayload `protobuf:"bytes,27,opt,name=instant_crypto_currency_account_payload,json=instantCryptoCurrencyAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_InteracETransferAccountPayload added in v0.1.4

type PaymentAccountPayload_InteracETransferAccountPayload struct {
	InteracETransferAccountPayload *InteracETransferAccountPayload `protobuf:"bytes,10,opt,name=interac_e_transfer_account_payload,json=interacETransferAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_JapanBankAccountPayload added in v0.1.4

type PaymentAccountPayload_JapanBankAccountPayload struct {
	JapanBankAccountPayload *JapanBankAccountPayload `protobuf:"bytes,28,opt,name=japan_bank_account_payload,json=japanBankAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_MoneseAccountPayload added in v0.1.6

type PaymentAccountPayload_MoneseAccountPayload struct {
	MoneseAccountPayload *MoneseAccountPayload `protobuf:"bytes,38,opt,name=monese_account_payload,json=moneseAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_MoneyBeamAccountPayload added in v0.1.4

type PaymentAccountPayload_MoneyBeamAccountPayload struct {
	MoneyBeamAccountPayload *MoneyBeamAccountPayload `protobuf:"bytes,18,opt,name=money_beam_account_payload,json=moneyBeamAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_MoneyGramAccountPayload added in v0.1.4

type PaymentAccountPayload_MoneyGramAccountPayload struct {
	MoneyGramAccountPayload *MoneyGramAccountPayload `protobuf:"bytes,23,opt,name=money_gram_account_payload,json=moneyGramAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_OKPayAccountPayload added in v0.1.4

type PaymentAccountPayload_OKPayAccountPayload struct {
	// Deprecated: Marked as deprecated in pb.proto.
	OKPayAccountPayload *OKPayAccountPayload `protobuf:"bytes,11,opt,name=o_k_pay_account_payload,json=oKPayAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_PaxumAccountPayload added in v0.1.5

type PaymentAccountPayload_PaxumAccountPayload struct {
	PaxumAccountPayload *PaxumAccountPayload `protobuf:"bytes,35,opt,name=Paxum_account_payload,json=PaxumAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_PayseraAccountPayload added in v0.1.5

type PaymentAccountPayload_PayseraAccountPayload struct {
	PayseraAccountPayload *PayseraAccountPayload `protobuf:"bytes,34,opt,name=Paysera_account_payload,json=PayseraAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_PerfectMoneyAccountPayload added in v0.1.4

type PaymentAccountPayload_PerfectMoneyAccountPayload struct {
	PerfectMoneyAccountPayload *PerfectMoneyAccountPayload `protobuf:"bytes,12,opt,name=perfect_money_account_payload,json=perfectMoneyAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_PopmoneyAccountPayload added in v0.1.4

type PaymentAccountPayload_PopmoneyAccountPayload struct {
	PopmoneyAccountPayload *PopmoneyAccountPayload `protobuf:"bytes,20,opt,name=popmoney_account_payload,json=popmoneyAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_PromptPayAccountPayload added in v0.1.4

type PaymentAccountPayload_PromptPayAccountPayload struct {
	PromptPayAccountPayload *PromptPayAccountPayload `protobuf:"bytes,25,opt,name=prompt_pay_account_payload,json=promptPayAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_RevolutAccountPayload added in v0.1.4

type PaymentAccountPayload_RevolutAccountPayload struct {
	RevolutAccountPayload *RevolutAccountPayload `protobuf:"bytes,21,opt,name=revolut_account_payload,json=revolutAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_SwiftAccountPayload added in v0.1.6

type PaymentAccountPayload_SwiftAccountPayload struct {
	SwiftAccountPayload *SwiftAccountPayload `protobuf:"bytes,36,opt,name=swift_account_payload,json=swiftAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_SwishAccountPayload added in v0.1.4

type PaymentAccountPayload_SwishAccountPayload struct {
	SwishAccountPayload *SwishAccountPayload `protobuf:"bytes,13,opt,name=swish_account_payload,json=swishAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_TransferwiseAccountPayload added in v0.1.4

type PaymentAccountPayload_TransferwiseAccountPayload struct {
	TransferwiseAccountPayload *TransferwiseAccountPayload `protobuf:"bytes,29,opt,name=Transferwise_account_payload,json=TransferwiseAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_USPostalMoneyOrderAccountPayload added in v0.1.4

type PaymentAccountPayload_USPostalMoneyOrderAccountPayload struct {
	USPostalMoneyOrderAccountPayload *USPostalMoneyOrderAccountPayload `protobuf:"bytes,14,opt,name=u_s_postal_money_order_account_payload,json=uSPostalMoneyOrderAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_UpholdAccountPayload added in v0.1.4

type PaymentAccountPayload_UpholdAccountPayload struct {
	UpholdAccountPayload *UpholdAccountPayload `protobuf:"bytes,16,opt,name=uphold_account_payload,json=upholdAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_VenmoAccountPayload added in v0.1.4

type PaymentAccountPayload_VenmoAccountPayload struct {
	// Deprecated: Marked as deprecated in pb.proto.
	VenmoAccountPayload *VenmoAccountPayload `protobuf:"bytes,19,opt,name=venmo_account_payload,json=venmoAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_VerseAccountPayload added in v0.1.6

type PaymentAccountPayload_VerseAccountPayload struct {
	VerseAccountPayload *VerseAccountPayload `protobuf:"bytes,39,opt,name=verse_account_payload,json=verseAccountPayload,proto3,oneof"`
}

type PaymentAccountPayload_WeChatPayAccountPayload added in v0.1.4

type PaymentAccountPayload_WeChatPayAccountPayload struct {
	WeChatPayAccountPayload *WeChatPayAccountPayload `protobuf:"bytes,22,opt,name=we_chat_pay_account_payload,json=weChatPayAccountPayload,proto3,oneof"`
}

type PaymentAccountsClient added in v0.1.4

type PaymentAccountsClient interface {
	// Create a fiat payment account, providing details in a json form generated by rpc method GetPaymentAccountForm.
	CreatePaymentAccount(ctx context.Context, in *CreatePaymentAccountRequest, opts ...grpc.CallOption) (*CreatePaymentAccountReply, error)
	// Get list of all saved fiat payment accounts.
	GetPaymentAccounts(ctx context.Context, in *GetPaymentAccountsRequest, opts ...grpc.CallOption) (*GetPaymentAccountsReply, error)
	// Get list of all supported Bisq payment methods.
	GetPaymentMethods(ctx context.Context, in *GetPaymentMethodsRequest, opts ...grpc.CallOption) (*GetPaymentMethodsReply, error)
	// Get a json template file for a supported Bisq payment method.  Fill in the form and call rpc method CreatePaymentAccount.
	GetPaymentAccountForm(ctx context.Context, in *GetPaymentAccountFormRequest, opts ...grpc.CallOption) (*GetPaymentAccountFormReply, error)
	// Create a crypto currency (altcoin) payment account.
	CreateCryptoCurrencyPaymentAccount(ctx context.Context, in *CreateCryptoCurrencyPaymentAccountRequest, opts ...grpc.CallOption) (*CreateCryptoCurrencyPaymentAccountReply, error)
	// Get list of all supported Bisq crypto currency (altcoin) payment methods.
	GetCryptoCurrencyPaymentMethods(ctx context.Context, in *GetCryptoCurrencyPaymentMethodsRequest, opts ...grpc.CallOption) (*GetCryptoCurrencyPaymentMethodsReply, error)
}

PaymentAccountsClient is the client API for PaymentAccounts service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewPaymentAccountsClient added in v0.1.4

func NewPaymentAccountsClient(cc grpc.ClientConnInterface) PaymentAccountsClient

type PaymentAccountsServer added in v0.1.4

type PaymentAccountsServer interface {
	// Create a fiat payment account, providing details in a json form generated by rpc method GetPaymentAccountForm.
	CreatePaymentAccount(context.Context, *CreatePaymentAccountRequest) (*CreatePaymentAccountReply, error)
	// Get list of all saved fiat payment accounts.
	GetPaymentAccounts(context.Context, *GetPaymentAccountsRequest) (*GetPaymentAccountsReply, error)
	// Get list of all supported Bisq payment methods.
	GetPaymentMethods(context.Context, *GetPaymentMethodsRequest) (*GetPaymentMethodsReply, error)
	// Get a json template file for a supported Bisq payment method.  Fill in the form and call rpc method CreatePaymentAccount.
	GetPaymentAccountForm(context.Context, *GetPaymentAccountFormRequest) (*GetPaymentAccountFormReply, error)
	// Create a crypto currency (altcoin) payment account.
	CreateCryptoCurrencyPaymentAccount(context.Context, *CreateCryptoCurrencyPaymentAccountRequest) (*CreateCryptoCurrencyPaymentAccountReply, error)
	// Get list of all supported Bisq crypto currency (altcoin) payment methods.
	GetCryptoCurrencyPaymentMethods(context.Context, *GetCryptoCurrencyPaymentMethodsRequest) (*GetCryptoCurrencyPaymentMethodsReply, error)
	// contains filtered or unexported methods
}

PaymentAccountsServer is the server API for PaymentAccounts service. All implementations must embed UnimplementedPaymentAccountsServer for forward compatibility

type PaymentMethod added in v0.1.4

type PaymentMethod struct {
	Id             string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	MaxTradePeriod int64  `protobuf:"varint,2,opt,name=max_trade_period,json=maxTradePeriod,proto3" json:"max_trade_period,omitempty"`
	MaxTradeLimit  int64  `protobuf:"varint,3,opt,name=max_trade_limit,json=maxTradeLimit,proto3" json:"max_trade_limit,omitempty"`
	// contains filtered or unexported fields
}

func (*PaymentMethod) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PaymentMethod.ProtoReflect.Descriptor instead.

func (*PaymentMethod) GetId added in v0.1.4

func (x *PaymentMethod) GetId() string

func (*PaymentMethod) GetMaxTradeLimit added in v0.1.4

func (x *PaymentMethod) GetMaxTradeLimit() int64

func (*PaymentMethod) GetMaxTradePeriod added in v0.1.4

func (x *PaymentMethod) GetMaxTradePeriod() int64

func (*PaymentMethod) ProtoMessage added in v0.1.4

func (*PaymentMethod) ProtoMessage()

func (*PaymentMethod) ProtoReflect added in v0.1.4

func (x *PaymentMethod) ProtoReflect() protoreflect.Message

func (*PaymentMethod) Reset added in v0.1.4

func (x *PaymentMethod) Reset()

func (*PaymentMethod) String added in v0.1.4

func (x *PaymentMethod) String() string

type PayoutTxPublishedMessage added in v0.1.4

type PayoutTxPublishedMessage struct {
	TradeId           string         `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	PayoutTx          []byte         `protobuf:"bytes,2,opt,name=payout_tx,json=payoutTx,proto3" json:"payout_tx,omitempty"`
	SenderNodeAddress *NodeAddress   `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Uid               string         `protobuf:"bytes,4,opt,name=uid,proto3" json:"uid,omitempty"`
	SignedWitness     *SignedWitness `protobuf:"bytes,5,opt,name=signed_witness,json=signedWitness,proto3" json:"signed_witness,omitempty"` // Added in v1.4.0
	// contains filtered or unexported fields
}

func (*PayoutTxPublishedMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PayoutTxPublishedMessage.ProtoReflect.Descriptor instead.

func (*PayoutTxPublishedMessage) GetPayoutTx added in v0.1.4

func (x *PayoutTxPublishedMessage) GetPayoutTx() []byte

func (*PayoutTxPublishedMessage) GetSenderNodeAddress added in v0.1.4

func (x *PayoutTxPublishedMessage) GetSenderNodeAddress() *NodeAddress

func (*PayoutTxPublishedMessage) GetSignedWitness added in v0.1.4

func (x *PayoutTxPublishedMessage) GetSignedWitness() *SignedWitness

func (*PayoutTxPublishedMessage) GetTradeId added in v0.1.4

func (x *PayoutTxPublishedMessage) GetTradeId() string

func (*PayoutTxPublishedMessage) GetUid added in v0.1.4

func (x *PayoutTxPublishedMessage) GetUid() string

func (*PayoutTxPublishedMessage) ProtoMessage added in v0.1.4

func (*PayoutTxPublishedMessage) ProtoMessage()

func (*PayoutTxPublishedMessage) ProtoReflect added in v0.1.4

func (x *PayoutTxPublishedMessage) ProtoReflect() protoreflect.Message

func (*PayoutTxPublishedMessage) Reset added in v0.1.4

func (x *PayoutTxPublishedMessage) Reset()

func (*PayoutTxPublishedMessage) String added in v0.1.4

func (x *PayoutTxPublishedMessage) String() string

type PayseraAccountPayload added in v0.1.5

type PayseraAccountPayload struct {
	Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*PayseraAccountPayload) Descriptor deprecated added in v0.1.5

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

Deprecated: Use PayseraAccountPayload.ProtoReflect.Descriptor instead.

func (*PayseraAccountPayload) GetEmail added in v0.1.5

func (x *PayseraAccountPayload) GetEmail() string

func (*PayseraAccountPayload) ProtoMessage added in v0.1.5

func (*PayseraAccountPayload) ProtoMessage()

func (*PayseraAccountPayload) ProtoReflect added in v0.1.5

func (x *PayseraAccountPayload) ProtoReflect() protoreflect.Message

func (*PayseraAccountPayload) Reset added in v0.1.5

func (x *PayseraAccountPayload) Reset()

func (*PayseraAccountPayload) String added in v0.1.5

func (x *PayseraAccountPayload) String() string

type PaytmAccountPayload added in v0.1.6

type PaytmAccountPayload struct {
	EmailOrMobileNr string `protobuf:"bytes,1,opt,name=email_or_mobile_nr,json=emailOrMobileNr,proto3" json:"email_or_mobile_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*PaytmAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use PaytmAccountPayload.ProtoReflect.Descriptor instead.

func (*PaytmAccountPayload) GetEmailOrMobileNr added in v0.1.6

func (x *PaytmAccountPayload) GetEmailOrMobileNr() string

func (*PaytmAccountPayload) ProtoMessage added in v0.1.6

func (*PaytmAccountPayload) ProtoMessage()

func (*PaytmAccountPayload) ProtoReflect added in v0.1.6

func (x *PaytmAccountPayload) ProtoReflect() protoreflect.Message

func (*PaytmAccountPayload) Reset added in v0.1.6

func (x *PaytmAccountPayload) Reset()

func (*PaytmAccountPayload) String added in v0.1.6

func (x *PaytmAccountPayload) String() string

type Peer added in v0.1.4

type Peer struct {
	NodeAddress           *NodeAddress `protobuf:"bytes,1,opt,name=node_address,json=nodeAddress,proto3" json:"node_address,omitempty"`
	Date                  int64        `protobuf:"varint,2,opt,name=date,proto3" json:"date,omitempty"`
	SupportedCapabilities []int32      `` /* 132-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Peer) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Peer.ProtoReflect.Descriptor instead.

func (*Peer) GetDate added in v0.1.4

func (x *Peer) GetDate() int64

func (*Peer) GetNodeAddress added in v0.1.4

func (x *Peer) GetNodeAddress() *NodeAddress

func (*Peer) GetSupportedCapabilities added in v0.1.4

func (x *Peer) GetSupportedCapabilities() []int32

func (*Peer) ProtoMessage added in v0.1.4

func (*Peer) ProtoMessage()

func (*Peer) ProtoReflect added in v0.1.4

func (x *Peer) ProtoReflect() protoreflect.Message

func (*Peer) Reset added in v0.1.4

func (x *Peer) Reset()

func (*Peer) String added in v0.1.4

func (x *Peer) String() string

type PeerList added in v0.1.4

type PeerList struct {
	Peer []*Peer `protobuf:"bytes,1,rep,name=peer,proto3" json:"peer,omitempty"`
	// contains filtered or unexported fields
}

func (*PeerList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PeerList.ProtoReflect.Descriptor instead.

func (*PeerList) GetPeer added in v0.1.4

func (x *PeerList) GetPeer() []*Peer

func (*PeerList) ProtoMessage added in v0.1.4

func (*PeerList) ProtoMessage()

func (*PeerList) ProtoReflect added in v0.1.4

func (x *PeerList) ProtoReflect() protoreflect.Message

func (*PeerList) Reset added in v0.1.4

func (x *PeerList) Reset()

func (*PeerList) String added in v0.1.4

func (x *PeerList) String() string

type PeerOpenedDisputeMessage added in v0.1.4

type PeerOpenedDisputeMessage struct {
	Dispute           *Dispute     `protobuf:"bytes,1,opt,name=dispute,proto3" json:"dispute,omitempty"`
	SenderNodeAddress *NodeAddress `protobuf:"bytes,2,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Uid               string       `protobuf:"bytes,3,opt,name=uid,proto3" json:"uid,omitempty"`
	Type              SupportType  `protobuf:"varint,4,opt,name=type,proto3,enum=io.bisq.protobuffer.SupportType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*PeerOpenedDisputeMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PeerOpenedDisputeMessage.ProtoReflect.Descriptor instead.

func (*PeerOpenedDisputeMessage) GetDispute added in v0.1.4

func (x *PeerOpenedDisputeMessage) GetDispute() *Dispute

func (*PeerOpenedDisputeMessage) GetSenderNodeAddress added in v0.1.4

func (x *PeerOpenedDisputeMessage) GetSenderNodeAddress() *NodeAddress

func (*PeerOpenedDisputeMessage) GetType added in v0.1.4

func (*PeerOpenedDisputeMessage) GetUid added in v0.1.4

func (x *PeerOpenedDisputeMessage) GetUid() string

func (*PeerOpenedDisputeMessage) ProtoMessage added in v0.1.4

func (*PeerOpenedDisputeMessage) ProtoMessage()

func (*PeerOpenedDisputeMessage) ProtoReflect added in v0.1.4

func (x *PeerOpenedDisputeMessage) ProtoReflect() protoreflect.Message

func (*PeerOpenedDisputeMessage) Reset added in v0.1.4

func (x *PeerOpenedDisputeMessage) Reset()

func (*PeerOpenedDisputeMessage) String added in v0.1.4

func (x *PeerOpenedDisputeMessage) String() string

type PeerPublishedDelayedPayoutTxMessage added in v0.1.4

type PeerPublishedDelayedPayoutTxMessage struct {
	Uid               string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId           string       `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	// contains filtered or unexported fields
}

func (*PeerPublishedDelayedPayoutTxMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PeerPublishedDelayedPayoutTxMessage.ProtoReflect.Descriptor instead.

func (*PeerPublishedDelayedPayoutTxMessage) GetSenderNodeAddress added in v0.1.4

func (x *PeerPublishedDelayedPayoutTxMessage) GetSenderNodeAddress() *NodeAddress

func (*PeerPublishedDelayedPayoutTxMessage) GetTradeId added in v0.1.4

func (*PeerPublishedDelayedPayoutTxMessage) GetUid added in v0.1.4

func (*PeerPublishedDelayedPayoutTxMessage) ProtoMessage added in v0.1.4

func (*PeerPublishedDelayedPayoutTxMessage) ProtoMessage()

func (*PeerPublishedDelayedPayoutTxMessage) ProtoReflect added in v0.1.4

func (*PeerPublishedDelayedPayoutTxMessage) Reset added in v0.1.4

func (*PeerPublishedDelayedPayoutTxMessage) String added in v0.1.4

type PeerPublishedDisputePayoutTxMessage added in v0.1.4

type PeerPublishedDisputePayoutTxMessage struct {
	Uid               string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Transaction       []byte       `protobuf:"bytes,2,opt,name=transaction,proto3" json:"transaction,omitempty"`
	TradeId           string       `protobuf:"bytes,3,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress *NodeAddress `protobuf:"bytes,4,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	Type              SupportType  `protobuf:"varint,5,opt,name=type,proto3,enum=io.bisq.protobuffer.SupportType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*PeerPublishedDisputePayoutTxMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PeerPublishedDisputePayoutTxMessage.ProtoReflect.Descriptor instead.

func (*PeerPublishedDisputePayoutTxMessage) GetSenderNodeAddress added in v0.1.4

func (x *PeerPublishedDisputePayoutTxMessage) GetSenderNodeAddress() *NodeAddress

func (*PeerPublishedDisputePayoutTxMessage) GetTradeId added in v0.1.4

func (*PeerPublishedDisputePayoutTxMessage) GetTransaction added in v0.1.4

func (x *PeerPublishedDisputePayoutTxMessage) GetTransaction() []byte

func (*PeerPublishedDisputePayoutTxMessage) GetType added in v0.1.4

func (*PeerPublishedDisputePayoutTxMessage) GetUid added in v0.1.4

func (*PeerPublishedDisputePayoutTxMessage) ProtoMessage added in v0.1.4

func (*PeerPublishedDisputePayoutTxMessage) ProtoMessage()

func (*PeerPublishedDisputePayoutTxMessage) ProtoReflect added in v0.1.4

func (*PeerPublishedDisputePayoutTxMessage) Reset added in v0.1.4

func (*PeerPublishedDisputePayoutTxMessage) String added in v0.1.4

type PerfectMoneyAccountPayload added in v0.1.4

type PerfectMoneyAccountPayload struct {
	AccountNr string `protobuf:"bytes,1,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*PerfectMoneyAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PerfectMoneyAccountPayload.ProtoReflect.Descriptor instead.

func (*PerfectMoneyAccountPayload) GetAccountNr added in v0.1.4

func (x *PerfectMoneyAccountPayload) GetAccountNr() string

func (*PerfectMoneyAccountPayload) ProtoMessage added in v0.1.4

func (*PerfectMoneyAccountPayload) ProtoMessage()

func (*PerfectMoneyAccountPayload) ProtoReflect added in v0.1.4

func (*PerfectMoneyAccountPayload) Reset added in v0.1.4

func (x *PerfectMoneyAccountPayload) Reset()

func (*PerfectMoneyAccountPayload) String added in v0.1.4

func (x *PerfectMoneyAccountPayload) String() string

type PersistableEnvelope added in v0.1.4

type PersistableEnvelope struct {

	// Types that are assignable to Message:
	//
	//	*PersistableEnvelope_SequenceNumberMap
	//	*PersistableEnvelope_PersistedEntryMap
	//	*PersistableEnvelope_PeerList
	//	*PersistableEnvelope_AddressEntryList
	//	*PersistableEnvelope_NavigationPath
	//	*PersistableEnvelope_TradableList
	//	*PersistableEnvelope_ArbitrationDisputeList
	//	*PersistableEnvelope_PreferencesPayload
	//	*PersistableEnvelope_UserPayload
	//	*PersistableEnvelope_PaymentAccountList
	//	*PersistableEnvelope_AccountAgeWitnessStore
	//	*PersistableEnvelope_TradeStatistics2Store
	//	*PersistableEnvelope_ProposalStore
	//	*PersistableEnvelope_TempProposalStore
	//	*PersistableEnvelope_BlindVoteStore
	//	*PersistableEnvelope_MyProposalList
	//	*PersistableEnvelope_BallotList
	//	*PersistableEnvelope_MyVoteList
	//	*PersistableEnvelope_MyBlindVoteList
	//	*PersistableEnvelope_DaoStateStore
	//	*PersistableEnvelope_MyReputationList
	//	*PersistableEnvelope_MyProofOfBurnList
	//	*PersistableEnvelope_UnconfirmedBsqChangeOutputList
	//	*PersistableEnvelope_SignedWitnessStore
	//	*PersistableEnvelope_MediationDisputeList
	//	*PersistableEnvelope_RefundDisputeList
	//	*PersistableEnvelope_TradeStatistics3Store
	//	*PersistableEnvelope_MailboxMessageList
	//	*PersistableEnvelope_IgnoredMailboxMap
	//	*PersistableEnvelope_RemovedPayloadsMap
	//	*PersistableEnvelope_BsqBlockStore
	//	*PersistableEnvelope_BurningManAccountingStore
	Message isPersistableEnvelope_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*PersistableEnvelope) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PersistableEnvelope.ProtoReflect.Descriptor instead.

func (*PersistableEnvelope) GetAccountAgeWitnessStore added in v0.1.4

func (x *PersistableEnvelope) GetAccountAgeWitnessStore() *AccountAgeWitnessStore

func (*PersistableEnvelope) GetAddressEntryList added in v0.1.4

func (x *PersistableEnvelope) GetAddressEntryList() *AddressEntryList

func (*PersistableEnvelope) GetArbitrationDisputeList added in v0.1.4

func (x *PersistableEnvelope) GetArbitrationDisputeList() *ArbitrationDisputeList

func (*PersistableEnvelope) GetBallotList added in v0.1.4

func (x *PersistableEnvelope) GetBallotList() *BallotList

func (*PersistableEnvelope) GetBlindVoteStore added in v0.1.4

func (x *PersistableEnvelope) GetBlindVoteStore() *BlindVoteStore

func (*PersistableEnvelope) GetBsqBlockStore added in v0.1.6

func (x *PersistableEnvelope) GetBsqBlockStore() *BsqBlockStore

func (*PersistableEnvelope) GetBurningManAccountingStore added in v0.1.10

func (x *PersistableEnvelope) GetBurningManAccountingStore() *BurningManAccountingStore

func (*PersistableEnvelope) GetDaoStateStore added in v0.1.4

func (x *PersistableEnvelope) GetDaoStateStore() *DaoStateStore

func (*PersistableEnvelope) GetIgnoredMailboxMap added in v0.1.4

func (x *PersistableEnvelope) GetIgnoredMailboxMap() *IgnoredMailboxMap

func (*PersistableEnvelope) GetMailboxMessageList added in v0.1.4

func (x *PersistableEnvelope) GetMailboxMessageList() *MailboxMessageList

func (*PersistableEnvelope) GetMediationDisputeList added in v0.1.4

func (x *PersistableEnvelope) GetMediationDisputeList() *MediationDisputeList

func (*PersistableEnvelope) GetMessage added in v0.1.4

func (m *PersistableEnvelope) GetMessage() isPersistableEnvelope_Message

func (*PersistableEnvelope) GetMyBlindVoteList added in v0.1.4

func (x *PersistableEnvelope) GetMyBlindVoteList() *MyBlindVoteList

func (*PersistableEnvelope) GetMyProofOfBurnList added in v0.1.4

func (x *PersistableEnvelope) GetMyProofOfBurnList() *MyProofOfBurnList

func (*PersistableEnvelope) GetMyProposalList added in v0.1.4

func (x *PersistableEnvelope) GetMyProposalList() *MyProposalList

func (*PersistableEnvelope) GetMyReputationList added in v0.1.4

func (x *PersistableEnvelope) GetMyReputationList() *MyReputationList

func (*PersistableEnvelope) GetMyVoteList added in v0.1.4

func (x *PersistableEnvelope) GetMyVoteList() *MyVoteList

func (*PersistableEnvelope) GetNavigationPath added in v0.1.4

func (x *PersistableEnvelope) GetNavigationPath() *NavigationPath

func (*PersistableEnvelope) GetPaymentAccountList added in v0.1.4

func (x *PersistableEnvelope) GetPaymentAccountList() *PaymentAccountList

func (*PersistableEnvelope) GetPeerList added in v0.1.4

func (x *PersistableEnvelope) GetPeerList() *PeerList

func (*PersistableEnvelope) GetPersistedEntryMap deprecated added in v0.1.4

func (x *PersistableEnvelope) GetPersistedEntryMap() *PersistedEntryMap

Deprecated: Marked as deprecated in pb.proto.

func (*PersistableEnvelope) GetPreferencesPayload added in v0.1.4

func (x *PersistableEnvelope) GetPreferencesPayload() *PreferencesPayload

func (*PersistableEnvelope) GetProposalStore added in v0.1.4

func (x *PersistableEnvelope) GetProposalStore() *ProposalStore

func (*PersistableEnvelope) GetRefundDisputeList added in v0.1.4

func (x *PersistableEnvelope) GetRefundDisputeList() *RefundDisputeList

func (*PersistableEnvelope) GetRemovedPayloadsMap added in v0.1.4

func (x *PersistableEnvelope) GetRemovedPayloadsMap() *RemovedPayloadsMap

func (*PersistableEnvelope) GetSequenceNumberMap added in v0.1.4

func (x *PersistableEnvelope) GetSequenceNumberMap() *SequenceNumberMap

func (*PersistableEnvelope) GetSignedWitnessStore added in v0.1.4

func (x *PersistableEnvelope) GetSignedWitnessStore() *SignedWitnessStore

func (*PersistableEnvelope) GetTempProposalStore added in v0.1.4

func (x *PersistableEnvelope) GetTempProposalStore() *TempProposalStore

func (*PersistableEnvelope) GetTradableList added in v0.1.4

func (x *PersistableEnvelope) GetTradableList() *TradableList

func (*PersistableEnvelope) GetTradeStatistics2Store deprecated added in v0.1.4

func (x *PersistableEnvelope) GetTradeStatistics2Store() *TradeStatistics2Store

Deprecated: Marked as deprecated in pb.proto.

func (*PersistableEnvelope) GetTradeStatistics3Store added in v0.1.4

func (x *PersistableEnvelope) GetTradeStatistics3Store() *TradeStatistics3Store

func (*PersistableEnvelope) GetUnconfirmedBsqChangeOutputList added in v0.1.4

func (x *PersistableEnvelope) GetUnconfirmedBsqChangeOutputList() *UnconfirmedBsqChangeOutputList

func (*PersistableEnvelope) GetUserPayload added in v0.1.4

func (x *PersistableEnvelope) GetUserPayload() *UserPayload

func (*PersistableEnvelope) ProtoMessage added in v0.1.4

func (*PersistableEnvelope) ProtoMessage()

func (*PersistableEnvelope) ProtoReflect added in v0.1.4

func (x *PersistableEnvelope) ProtoReflect() protoreflect.Message

func (*PersistableEnvelope) Reset added in v0.1.4

func (x *PersistableEnvelope) Reset()

func (*PersistableEnvelope) String added in v0.1.4

func (x *PersistableEnvelope) String() string

type PersistableEnvelope_AccountAgeWitnessStore added in v0.1.4

type PersistableEnvelope_AccountAgeWitnessStore struct {
	AccountAgeWitnessStore *AccountAgeWitnessStore `protobuf:"bytes,13,opt,name=account_age_witness_store,json=accountAgeWitnessStore,proto3,oneof"`
}

type PersistableEnvelope_AddressEntryList added in v0.1.4

type PersistableEnvelope_AddressEntryList struct {
	AddressEntryList *AddressEntryList `protobuf:"bytes,4,opt,name=address_entry_list,json=addressEntryList,proto3,oneof"`
}

type PersistableEnvelope_ArbitrationDisputeList added in v0.1.4

type PersistableEnvelope_ArbitrationDisputeList struct {
	ArbitrationDisputeList *ArbitrationDisputeList `protobuf:"bytes,8,opt,name=arbitration_dispute_list,json=arbitrationDisputeList,proto3,oneof"`
}

type PersistableEnvelope_BallotList added in v0.1.4

type PersistableEnvelope_BallotList struct {
	BallotList *BallotList `protobuf:"bytes,20,opt,name=ballot_list,json=ballotList,proto3,oneof"`
}

type PersistableEnvelope_BlindVoteStore added in v0.1.4

type PersistableEnvelope_BlindVoteStore struct {
	BlindVoteStore *BlindVoteStore `protobuf:"bytes,18,opt,name=blind_vote_store,json=blindVoteStore,proto3,oneof"`
}

type PersistableEnvelope_BsqBlockStore added in v0.1.6

type PersistableEnvelope_BsqBlockStore struct {
	BsqBlockStore *BsqBlockStore `protobuf:"bytes,35,opt,name=bsq_block_store,json=bsqBlockStore,proto3,oneof"`
}

type PersistableEnvelope_BurningManAccountingStore added in v0.1.10

type PersistableEnvelope_BurningManAccountingStore struct {
	BurningManAccountingStore *BurningManAccountingStore `protobuf:"bytes,36,opt,name=burning_man_accounting_store,json=burningManAccountingStore,proto3,oneof"`
}

type PersistableEnvelope_DaoStateStore added in v0.1.4

type PersistableEnvelope_DaoStateStore struct {
	DaoStateStore *DaoStateStore `protobuf:"bytes,24,opt,name=dao_state_store,json=daoStateStore,proto3,oneof"`
}

type PersistableEnvelope_IgnoredMailboxMap added in v0.1.4

type PersistableEnvelope_IgnoredMailboxMap struct {
	IgnoredMailboxMap *IgnoredMailboxMap `protobuf:"bytes,33,opt,name=ignored_mailbox_map,json=ignoredMailboxMap,proto3,oneof"`
}

type PersistableEnvelope_MailboxMessageList added in v0.1.4

type PersistableEnvelope_MailboxMessageList struct {
	MailboxMessageList *MailboxMessageList `protobuf:"bytes,32,opt,name=mailbox_message_list,json=mailboxMessageList,proto3,oneof"`
}

type PersistableEnvelope_MediationDisputeList added in v0.1.4

type PersistableEnvelope_MediationDisputeList struct {
	MediationDisputeList *MediationDisputeList `protobuf:"bytes,29,opt,name=mediation_dispute_list,json=mediationDisputeList,proto3,oneof"`
}

type PersistableEnvelope_MyBlindVoteList added in v0.1.4

type PersistableEnvelope_MyBlindVoteList struct {
	MyBlindVoteList *MyBlindVoteList `protobuf:"bytes,22,opt,name=my_blind_vote_list,json=myBlindVoteList,proto3,oneof"`
}

type PersistableEnvelope_MyProofOfBurnList added in v0.1.4

type PersistableEnvelope_MyProofOfBurnList struct {
	MyProofOfBurnList *MyProofOfBurnList `protobuf:"bytes,26,opt,name=my_proof_of_burn_list,json=myProofOfBurnList,proto3,oneof"`
}

type PersistableEnvelope_MyProposalList added in v0.1.4

type PersistableEnvelope_MyProposalList struct {
	MyProposalList *MyProposalList `protobuf:"bytes,19,opt,name=my_proposal_list,json=myProposalList,proto3,oneof"`
}

type PersistableEnvelope_MyReputationList added in v0.1.4

type PersistableEnvelope_MyReputationList struct {
	MyReputationList *MyReputationList `protobuf:"bytes,25,opt,name=my_reputation_list,json=myReputationList,proto3,oneof"`
}

type PersistableEnvelope_MyVoteList added in v0.1.4

type PersistableEnvelope_MyVoteList struct {
	MyVoteList *MyVoteList `protobuf:"bytes,21,opt,name=my_vote_list,json=myVoteList,proto3,oneof"`
}

type PersistableEnvelope_NavigationPath added in v0.1.4

type PersistableEnvelope_NavigationPath struct {
	NavigationPath *NavigationPath `protobuf:"bytes,5,opt,name=navigation_path,json=navigationPath,proto3,oneof"`
}

type PersistableEnvelope_PaymentAccountList added in v0.1.4

type PersistableEnvelope_PaymentAccountList struct {
	PaymentAccountList *PaymentAccountList `protobuf:"bytes,11,opt,name=payment_account_list,json=paymentAccountList,proto3,oneof"`
}

type PersistableEnvelope_PeerList added in v0.1.4

type PersistableEnvelope_PeerList struct {
	PeerList *PeerList `protobuf:"bytes,3,opt,name=peer_list,json=peerList,proto3,oneof"`
}

type PersistableEnvelope_PersistedEntryMap added in v0.1.4

type PersistableEnvelope_PersistedEntryMap struct {
	// Deprecated: Marked as deprecated in pb.proto.
	PersistedEntryMap *PersistedEntryMap `protobuf:"bytes,2,opt,name=persisted_entry_map,json=persistedEntryMap,proto3,oneof"`
}

type PersistableEnvelope_PreferencesPayload added in v0.1.4

type PersistableEnvelope_PreferencesPayload struct {
	PreferencesPayload *PreferencesPayload `protobuf:"bytes,9,opt,name=preferences_payload,json=preferencesPayload,proto3,oneof"`
}

type PersistableEnvelope_ProposalStore added in v0.1.4

type PersistableEnvelope_ProposalStore struct {
	ProposalStore *ProposalStore `protobuf:"bytes,16,opt,name=proposal_store,json=proposalStore,proto3,oneof"`
}

type PersistableEnvelope_RefundDisputeList added in v0.1.4

type PersistableEnvelope_RefundDisputeList struct {
	RefundDisputeList *RefundDisputeList `protobuf:"bytes,30,opt,name=refund_dispute_list,json=refundDisputeList,proto3,oneof"`
}

type PersistableEnvelope_RemovedPayloadsMap added in v0.1.4

type PersistableEnvelope_RemovedPayloadsMap struct {
	RemovedPayloadsMap *RemovedPayloadsMap `protobuf:"bytes,34,opt,name=removed_payloads_map,json=removedPayloadsMap,proto3,oneof"`
}

type PersistableEnvelope_SequenceNumberMap added in v0.1.4

type PersistableEnvelope_SequenceNumberMap struct {
	SequenceNumberMap *SequenceNumberMap `protobuf:"bytes,1,opt,name=sequence_number_map,json=sequenceNumberMap,proto3,oneof"`
}

type PersistableEnvelope_SignedWitnessStore added in v0.1.4

type PersistableEnvelope_SignedWitnessStore struct {
	SignedWitnessStore *SignedWitnessStore `protobuf:"bytes,28,opt,name=signed_witness_store,json=signedWitnessStore,proto3,oneof"`
}

type PersistableEnvelope_TempProposalStore added in v0.1.4

type PersistableEnvelope_TempProposalStore struct {
	TempProposalStore *TempProposalStore `protobuf:"bytes,17,opt,name=temp_proposal_store,json=tempProposalStore,proto3,oneof"`
}

type PersistableEnvelope_TradableList added in v0.1.4

type PersistableEnvelope_TradableList struct {
	TradableList *TradableList `protobuf:"bytes,6,opt,name=tradable_list,json=tradableList,proto3,oneof"`
}

type PersistableEnvelope_TradeStatistics2Store added in v0.1.4

type PersistableEnvelope_TradeStatistics2Store struct {
	// Deprecated: Marked as deprecated in pb.proto.
	TradeStatistics2Store *TradeStatistics2Store `protobuf:"bytes,14,opt,name=trade_statistics2_store,json=tradeStatistics2Store,proto3,oneof"`
}

type PersistableEnvelope_TradeStatistics3Store added in v0.1.4

type PersistableEnvelope_TradeStatistics3Store struct {
	TradeStatistics3Store *TradeStatistics3Store `protobuf:"bytes,31,opt,name=trade_statistics3_store,json=tradeStatistics3Store,proto3,oneof"`
}

type PersistableEnvelope_UnconfirmedBsqChangeOutputList added in v0.1.4

type PersistableEnvelope_UnconfirmedBsqChangeOutputList struct {
	UnconfirmedBsqChangeOutputList *UnconfirmedBsqChangeOutputList `protobuf:"bytes,27,opt,name=unconfirmed_bsq_change_output_list,json=unconfirmedBsqChangeOutputList,proto3,oneof"`
}

type PersistableEnvelope_UserPayload added in v0.1.4

type PersistableEnvelope_UserPayload struct {
	UserPayload *UserPayload `protobuf:"bytes,10,opt,name=user_payload,json=userPayload,proto3,oneof"`
}

type PersistableNetworkPayload added in v0.1.4

type PersistableNetworkPayload struct {

	// Types that are assignable to Message:
	//
	//	*PersistableNetworkPayload_AccountAgeWitness
	//	*PersistableNetworkPayload_TradeStatistics2
	//	*PersistableNetworkPayload_ProposalPayload
	//	*PersistableNetworkPayload_BlindVotePayload
	//	*PersistableNetworkPayload_SignedWitness
	//	*PersistableNetworkPayload_TradeStatistics3
	Message isPersistableNetworkPayload_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*PersistableNetworkPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PersistableNetworkPayload.ProtoReflect.Descriptor instead.

func (*PersistableNetworkPayload) GetAccountAgeWitness added in v0.1.4

func (x *PersistableNetworkPayload) GetAccountAgeWitness() *AccountAgeWitness

func (*PersistableNetworkPayload) GetBlindVotePayload added in v0.1.4

func (x *PersistableNetworkPayload) GetBlindVotePayload() *BlindVotePayload

func (*PersistableNetworkPayload) GetMessage added in v0.1.4

func (m *PersistableNetworkPayload) GetMessage() isPersistableNetworkPayload_Message

func (*PersistableNetworkPayload) GetProposalPayload added in v0.1.4

func (x *PersistableNetworkPayload) GetProposalPayload() *ProposalPayload

func (*PersistableNetworkPayload) GetSignedWitness added in v0.1.4

func (x *PersistableNetworkPayload) GetSignedWitness() *SignedWitness

func (*PersistableNetworkPayload) GetTradeStatistics2 deprecated added in v0.1.4

func (x *PersistableNetworkPayload) GetTradeStatistics2() *TradeStatistics2

Deprecated: Marked as deprecated in pb.proto.

func (*PersistableNetworkPayload) GetTradeStatistics3 added in v0.1.4

func (x *PersistableNetworkPayload) GetTradeStatistics3() *TradeStatistics3

func (*PersistableNetworkPayload) ProtoMessage added in v0.1.4

func (*PersistableNetworkPayload) ProtoMessage()

func (*PersistableNetworkPayload) ProtoReflect added in v0.1.4

func (*PersistableNetworkPayload) Reset added in v0.1.4

func (x *PersistableNetworkPayload) Reset()

func (*PersistableNetworkPayload) String added in v0.1.4

func (x *PersistableNetworkPayload) String() string

type PersistableNetworkPayload_AccountAgeWitness added in v0.1.4

type PersistableNetworkPayload_AccountAgeWitness struct {
	AccountAgeWitness *AccountAgeWitness `protobuf:"bytes,1,opt,name=account_age_witness,json=accountAgeWitness,proto3,oneof"`
}

type PersistableNetworkPayload_BlindVotePayload added in v0.1.4

type PersistableNetworkPayload_BlindVotePayload struct {
	BlindVotePayload *BlindVotePayload `protobuf:"bytes,4,opt,name=blind_vote_payload,json=blindVotePayload,proto3,oneof"`
}

type PersistableNetworkPayload_ProposalPayload added in v0.1.4

type PersistableNetworkPayload_ProposalPayload struct {
	ProposalPayload *ProposalPayload `protobuf:"bytes,3,opt,name=proposal_payload,json=proposalPayload,proto3,oneof"`
}

type PersistableNetworkPayload_SignedWitness added in v0.1.4

type PersistableNetworkPayload_SignedWitness struct {
	SignedWitness *SignedWitness `protobuf:"bytes,5,opt,name=signed_witness,json=signedWitness,proto3,oneof"`
}

type PersistableNetworkPayload_TradeStatistics2 added in v0.1.4

type PersistableNetworkPayload_TradeStatistics2 struct {
	// Deprecated: Marked as deprecated in pb.proto.
	TradeStatistics2 *TradeStatistics2 `protobuf:"bytes,2,opt,name=trade_statistics2,json=tradeStatistics2,proto3,oneof"`
}

type PersistableNetworkPayload_TradeStatistics3 added in v0.1.4

type PersistableNetworkPayload_TradeStatistics3 struct {
	TradeStatistics3 *TradeStatistics3 `protobuf:"bytes,6,opt,name=trade_statistics3,json=tradeStatistics3,proto3,oneof"`
}

type PersistedEntryMap added in v0.1.4

type PersistedEntryMap struct {
	PersistedEntryMap map[string]*ProtectedStorageEntry `` /* 202-byte string literal not displayed */
	// contains filtered or unexported fields
}

Deprecated. Not used anymore.

func (*PersistedEntryMap) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PersistedEntryMap.ProtoReflect.Descriptor instead.

func (*PersistedEntryMap) GetPersistedEntryMap added in v0.1.4

func (x *PersistedEntryMap) GetPersistedEntryMap() map[string]*ProtectedStorageEntry

func (*PersistedEntryMap) ProtoMessage added in v0.1.4

func (*PersistedEntryMap) ProtoMessage()

func (*PersistedEntryMap) ProtoReflect added in v0.1.4

func (x *PersistedEntryMap) ProtoReflect() protoreflect.Message

func (*PersistedEntryMap) Reset added in v0.1.4

func (x *PersistedEntryMap) Reset()

func (*PersistedEntryMap) String added in v0.1.4

func (x *PersistedEntryMap) String() string

type Ping added in v0.1.4

type Ping struct {
	Nonce             int32 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	LastRoundTripTime int32 `protobuf:"varint,2,opt,name=last_round_trip_time,json=lastRoundTripTime,proto3" json:"last_round_trip_time,omitempty"`
	// contains filtered or unexported fields
}

func (*Ping) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Ping.ProtoReflect.Descriptor instead.

func (*Ping) GetLastRoundTripTime added in v0.1.4

func (x *Ping) GetLastRoundTripTime() int32

func (*Ping) GetNonce added in v0.1.4

func (x *Ping) GetNonce() int32

func (*Ping) ProtoMessage added in v0.1.4

func (*Ping) ProtoMessage()

func (*Ping) ProtoReflect added in v0.1.4

func (x *Ping) ProtoReflect() protoreflect.Message

func (*Ping) Reset added in v0.1.4

func (x *Ping) Reset()

func (*Ping) String added in v0.1.4

func (x *Ping) String() string

type PixAccountPayload added in v0.1.6

type PixAccountPayload struct {
	PixKey string `protobuf:"bytes,1,opt,name=pix_key,json=pixKey,proto3" json:"pix_key,omitempty"`
	// contains filtered or unexported fields
}

func (*PixAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use PixAccountPayload.ProtoReflect.Descriptor instead.

func (*PixAccountPayload) GetPixKey added in v0.1.6

func (x *PixAccountPayload) GetPixKey() string

func (*PixAccountPayload) ProtoMessage added in v0.1.6

func (*PixAccountPayload) ProtoMessage()

func (*PixAccountPayload) ProtoReflect added in v0.1.6

func (x *PixAccountPayload) ProtoReflect() protoreflect.Message

func (*PixAccountPayload) Reset added in v0.1.6

func (x *PixAccountPayload) Reset()

func (*PixAccountPayload) String added in v0.1.6

func (x *PixAccountPayload) String() string

type Pong added in v0.1.4

type Pong struct {
	RequestNonce int32 `protobuf:"varint,1,opt,name=request_nonce,json=requestNonce,proto3" json:"request_nonce,omitempty"`
	// contains filtered or unexported fields
}

func (*Pong) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Pong.ProtoReflect.Descriptor instead.

func (*Pong) GetRequestNonce added in v0.1.4

func (x *Pong) GetRequestNonce() int32

func (*Pong) ProtoMessage added in v0.1.4

func (*Pong) ProtoMessage()

func (*Pong) ProtoReflect added in v0.1.4

func (x *Pong) ProtoReflect() protoreflect.Message

func (*Pong) Reset added in v0.1.4

func (x *Pong) Reset()

func (*Pong) String added in v0.1.4

func (x *Pong) String() string

type PopmoneyAccountPayload added in v0.1.4

type PopmoneyAccountPayload struct {
	AccountId  string `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	HolderName string `protobuf:"bytes,2,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	// contains filtered or unexported fields
}

func (*PopmoneyAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PopmoneyAccountPayload.ProtoReflect.Descriptor instead.

func (*PopmoneyAccountPayload) GetAccountId added in v0.1.4

func (x *PopmoneyAccountPayload) GetAccountId() string

func (*PopmoneyAccountPayload) GetHolderName added in v0.1.4

func (x *PopmoneyAccountPayload) GetHolderName() string

func (*PopmoneyAccountPayload) ProtoMessage added in v0.1.4

func (*PopmoneyAccountPayload) ProtoMessage()

func (*PopmoneyAccountPayload) ProtoReflect added in v0.1.4

func (x *PopmoneyAccountPayload) ProtoReflect() protoreflect.Message

func (*PopmoneyAccountPayload) Reset added in v0.1.4

func (x *PopmoneyAccountPayload) Reset()

func (*PopmoneyAccountPayload) String added in v0.1.4

func (x *PopmoneyAccountPayload) String() string

type PreferencesPayload added in v0.1.4

type PreferencesPayload struct {
	UserLanguage                     string              `protobuf:"bytes,1,opt,name=user_language,json=userLanguage,proto3" json:"user_language,omitempty"`
	UserCountry                      *Country            `protobuf:"bytes,2,opt,name=user_country,json=userCountry,proto3" json:"user_country,omitempty"`
	FiatCurrencies                   []*TradeCurrency    `protobuf:"bytes,3,rep,name=fiat_currencies,json=fiatCurrencies,proto3" json:"fiat_currencies,omitempty"`
	CryptoCurrencies                 []*TradeCurrency    `protobuf:"bytes,4,rep,name=crypto_currencies,json=cryptoCurrencies,proto3" json:"crypto_currencies,omitempty"`
	BlockChainExplorerMainNet        *BlockChainExplorer `` /* 142-byte string literal not displayed */
	BlockChainExplorerTestNet        *BlockChainExplorer `` /* 142-byte string literal not displayed */
	BsqBlockChainExplorer            *BlockChainExplorer `` /* 128-byte string literal not displayed */
	BackupDirectory                  string              `protobuf:"bytes,8,opt,name=backup_directory,json=backupDirectory,proto3" json:"backup_directory,omitempty"`
	AutoSelectArbitrators            bool                `` /* 127-byte string literal not displayed */
	DontShowAgainMap                 map[string]bool     `` /* 203-byte string literal not displayed */
	TacAccepted                      bool                `protobuf:"varint,11,opt,name=tac_accepted,json=tacAccepted,proto3" json:"tac_accepted,omitempty"`
	UseTorForBitcoinJ                bool                `protobuf:"varint,12,opt,name=use_tor_for_bitcoin_j,json=useTorForBitcoinJ,proto3" json:"use_tor_for_bitcoin_j,omitempty"`
	ShowOwnOffersInOfferBook         bool                `` /* 143-byte string literal not displayed */
	PreferredTradeCurrency           *TradeCurrency      `` /* 130-byte string literal not displayed */
	WithdrawalTxFeeInVbytes          int64               `` /* 138-byte string literal not displayed */
	UseCustomWithdrawalTxFee         bool                `` /* 141-byte string literal not displayed */
	MaxPriceDistanceInPercent        float64             `` /* 145-byte string literal not displayed */
	OfferBookChartScreenCurrencyCode string              `` /* 166-byte string literal not displayed */
	TradeChartsScreenCurrencyCode    string              `` /* 155-byte string literal not displayed */
	BuyScreenCurrencyCode            string              `` /* 129-byte string literal not displayed */
	SellScreenCurrencyCode           string              `` /* 132-byte string literal not displayed */
	TradeStatisticsTickUnitIndex     int32               `` /* 153-byte string literal not displayed */
	Resync_SpvRequested              bool                `protobuf:"varint,23,opt,name=resync_Spv_requested,json=resyncSpvRequested,proto3" json:"resync_Spv_requested,omitempty"`
	SortMarketCurrenciesNumerically  bool                `` /* 160-byte string literal not displayed */
	UsePercentageBasedPrice          bool                `` /* 136-byte string literal not displayed */
	PeerTagMap                       map[string]string   `` /* 182-byte string literal not displayed */
	BitcoinNodes                     string              `protobuf:"bytes,27,opt,name=bitcoin_nodes,json=bitcoinNodes,proto3" json:"bitcoin_nodes,omitempty"`
	IgnoreTradersList                []string            `protobuf:"bytes,28,rep,name=ignore_traders_list,json=ignoreTradersList,proto3" json:"ignore_traders_list,omitempty"`
	DirectoryChooserPath             string              `protobuf:"bytes,29,opt,name=directory_chooser_path,json=directoryChooserPath,proto3" json:"directory_chooser_path,omitempty"`
	// Superseded by buyerSecurityDepositAsPercent.
	//
	// Deprecated: Marked as deprecated in pb.proto.
	BuyerSecurityDepositAsLong             int64                  `` /* 147-byte string literal not displayed */
	UseAnimations                          bool                   `protobuf:"varint,31,opt,name=use_animations,json=useAnimations,proto3" json:"use_animations,omitempty"`
	SelectedPaymentAccountForCreateOffer   *PaymentAccount        `` /* 174-byte string literal not displayed */
	PayFeeIn_Btc                           bool                   `protobuf:"varint,33,opt,name=pay_fee_in_Btc,json=payFeeInBtc,proto3" json:"pay_fee_in_Btc,omitempty"`
	BridgeAddresses                        []string               `protobuf:"bytes,34,rep,name=bridge_addresses,json=bridgeAddresses,proto3" json:"bridge_addresses,omitempty"`
	BridgeOptionOrdinal                    int32                  `protobuf:"varint,35,opt,name=bridge_option_ordinal,json=bridgeOptionOrdinal,proto3" json:"bridge_option_ordinal,omitempty"`
	TorTransportOrdinal                    int32                  `protobuf:"varint,36,opt,name=tor_transport_ordinal,json=torTransportOrdinal,proto3" json:"tor_transport_ordinal,omitempty"`
	CustomBridges                          string                 `protobuf:"bytes,37,opt,name=custom_bridges,json=customBridges,proto3" json:"custom_bridges,omitempty"`
	BitcoinNodesOptionOrdinal              int32                  `` /* 142-byte string literal not displayed */
	ReferralId                             string                 `protobuf:"bytes,39,opt,name=referral_id,json=referralId,proto3" json:"referral_id,omitempty"`
	PhoneKeyAndToken                       string                 `protobuf:"bytes,40,opt,name=phone_key_and_token,json=phoneKeyAndToken,proto3" json:"phone_key_and_token,omitempty"`
	UseSoundForMobileNotifications         bool                   `` /* 159-byte string literal not displayed */
	UseTradeNotifications                  bool                   `` /* 128-byte string literal not displayed */
	UseMarketNotifications                 bool                   `` /* 131-byte string literal not displayed */
	UsePriceNotifications                  bool                   `` /* 128-byte string literal not displayed */
	UseStandbyMode                         bool                   `protobuf:"varint,45,opt,name=use_standby_mode,json=useStandbyMode,proto3" json:"use_standby_mode,omitempty"`
	IsDaoFullNode                          bool                   `protobuf:"varint,46,opt,name=is_dao_full_node,json=isDaoFullNode,proto3" json:"is_dao_full_node,omitempty"`
	RpcUser                                string                 `protobuf:"bytes,47,opt,name=rpc_user,json=rpcUser,proto3" json:"rpc_user,omitempty"`
	RpcPw                                  string                 `protobuf:"bytes,48,opt,name=rpc_pw,json=rpcPw,proto3" json:"rpc_pw,omitempty"`
	TakeOfferSelectedPaymentAccountId      string                 `` /* 169-byte string literal not displayed */
	BuyerSecurityDepositAsPercent          float64                `` /* 157-byte string literal not displayed */
	IgnoreDustThreshold                    int32                  `protobuf:"varint,51,opt,name=ignore_dust_threshold,json=ignoreDustThreshold,proto3" json:"ignore_dust_threshold,omitempty"`
	BuyerSecurityDepositAsPercentForCrypto float64                `` /* 188-byte string literal not displayed */
	BlockNotifyPort                        int32                  `protobuf:"varint,53,opt,name=block_notify_port,json=blockNotifyPort,proto3" json:"block_notify_port,omitempty"`
	CssTheme                               int32                  `protobuf:"varint,54,opt,name=css_theme,json=cssTheme,proto3" json:"css_theme,omitempty"`
	TacAcceptedV120                        bool                   `protobuf:"varint,55,opt,name=tac_accepted_v120,json=tacAcceptedV120,proto3" json:"tac_accepted_v120,omitempty"`
	AutoConfirmSettings                    []*AutoConfirmSettings `protobuf:"bytes,56,rep,name=auto_confirm_settings,json=autoConfirmSettings,proto3" json:"auto_confirm_settings,omitempty"`
	BsqAverageTrimThreshold                float64                `` /* 137-byte string literal not displayed */
	HideNonAccountPaymentMethods           bool                   `` /* 153-byte string literal not displayed */
	ShowOffersMatchingMyAccounts           bool                   `` /* 153-byte string literal not displayed */
	DenyApiTaker                           bool                   `protobuf:"varint,60,opt,name=deny_api_taker,json=denyApiTaker,proto3" json:"deny_api_taker,omitempty"`
	NotifyOnPreRelease                     bool                   `protobuf:"varint,61,opt,name=notify_on_pre_release,json=notifyOnPreRelease,proto3" json:"notify_on_pre_release,omitempty"`
	UseFullModeDaoMonitor                  bool                   `` /* 132-byte string literal not displayed */
	ClearDataAfterDays                     int32                  `protobuf:"varint,63,opt,name=clear_data_after_days,json=clearDataAfterDays,proto3" json:"clear_data_after_days,omitempty"`
	BuyScreenCryptoCurrencyCode            string                 `` /* 149-byte string literal not displayed */
	SellScreenCryptoCurrencyCode           string                 `` /* 152-byte string literal not displayed */
	UseBitcoinUrisInQrCodes                bool                   `` /* 140-byte string literal not displayed */
	UserDefinedTradeLimit                  int64                  `` /* 130-byte string literal not displayed */
	UserHasRaisedTradeLimit                bool                   `` /* 138-byte string literal not displayed */
	ProcessBurningManAccountingData        bool                   `` /* 162-byte string literal not displayed */
	IsFullBMAccountingNode                 bool                   `` /* 137-byte string literal not displayed */
	UseBisqWalletFunding                   bool                   `` /* 127-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*PreferencesPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PreferencesPayload.ProtoReflect.Descriptor instead.

func (*PreferencesPayload) GetAutoConfirmSettings added in v0.1.4

func (x *PreferencesPayload) GetAutoConfirmSettings() []*AutoConfirmSettings

func (*PreferencesPayload) GetAutoSelectArbitrators added in v0.1.4

func (x *PreferencesPayload) GetAutoSelectArbitrators() bool

func (*PreferencesPayload) GetBackupDirectory added in v0.1.4

func (x *PreferencesPayload) GetBackupDirectory() string

func (*PreferencesPayload) GetBitcoinNodes added in v0.1.4

func (x *PreferencesPayload) GetBitcoinNodes() string

func (*PreferencesPayload) GetBitcoinNodesOptionOrdinal added in v0.1.4

func (x *PreferencesPayload) GetBitcoinNodesOptionOrdinal() int32

func (*PreferencesPayload) GetBlockChainExplorerMainNet added in v0.1.4

func (x *PreferencesPayload) GetBlockChainExplorerMainNet() *BlockChainExplorer

func (*PreferencesPayload) GetBlockChainExplorerTestNet added in v0.1.4

func (x *PreferencesPayload) GetBlockChainExplorerTestNet() *BlockChainExplorer

func (*PreferencesPayload) GetBlockNotifyPort added in v0.1.4

func (x *PreferencesPayload) GetBlockNotifyPort() int32

func (*PreferencesPayload) GetBridgeAddresses added in v0.1.4

func (x *PreferencesPayload) GetBridgeAddresses() []string

func (*PreferencesPayload) GetBridgeOptionOrdinal added in v0.1.4

func (x *PreferencesPayload) GetBridgeOptionOrdinal() int32

func (*PreferencesPayload) GetBsqAverageTrimThreshold added in v0.1.4

func (x *PreferencesPayload) GetBsqAverageTrimThreshold() float64

func (*PreferencesPayload) GetBsqBlockChainExplorer added in v0.1.4

func (x *PreferencesPayload) GetBsqBlockChainExplorer() *BlockChainExplorer

func (*PreferencesPayload) GetBuyScreenCryptoCurrencyCode added in v0.1.9

func (x *PreferencesPayload) GetBuyScreenCryptoCurrencyCode() string

func (*PreferencesPayload) GetBuyScreenCurrencyCode added in v0.1.4

func (x *PreferencesPayload) GetBuyScreenCurrencyCode() string

func (*PreferencesPayload) GetBuyerSecurityDepositAsLong deprecated added in v0.1.4

func (x *PreferencesPayload) GetBuyerSecurityDepositAsLong() int64

Deprecated: Marked as deprecated in pb.proto.

func (*PreferencesPayload) GetBuyerSecurityDepositAsPercent added in v0.1.4

func (x *PreferencesPayload) GetBuyerSecurityDepositAsPercent() float64

func (*PreferencesPayload) GetBuyerSecurityDepositAsPercentForCrypto added in v0.1.4

func (x *PreferencesPayload) GetBuyerSecurityDepositAsPercentForCrypto() float64

func (*PreferencesPayload) GetClearDataAfterDays added in v0.1.9

func (x *PreferencesPayload) GetClearDataAfterDays() int32

func (*PreferencesPayload) GetCryptoCurrencies added in v0.1.4

func (x *PreferencesPayload) GetCryptoCurrencies() []*TradeCurrency

func (*PreferencesPayload) GetCssTheme added in v0.1.4

func (x *PreferencesPayload) GetCssTheme() int32

func (*PreferencesPayload) GetCustomBridges added in v0.1.4

func (x *PreferencesPayload) GetCustomBridges() string

func (*PreferencesPayload) GetDenyApiTaker added in v0.1.4

func (x *PreferencesPayload) GetDenyApiTaker() bool

func (*PreferencesPayload) GetDirectoryChooserPath added in v0.1.4

func (x *PreferencesPayload) GetDirectoryChooserPath() string

func (*PreferencesPayload) GetDontShowAgainMap added in v0.1.4

func (x *PreferencesPayload) GetDontShowAgainMap() map[string]bool

func (*PreferencesPayload) GetFiatCurrencies added in v0.1.4

func (x *PreferencesPayload) GetFiatCurrencies() []*TradeCurrency

func (*PreferencesPayload) GetHideNonAccountPaymentMethods added in v0.1.4

func (x *PreferencesPayload) GetHideNonAccountPaymentMethods() bool

func (*PreferencesPayload) GetIgnoreDustThreshold added in v0.1.4

func (x *PreferencesPayload) GetIgnoreDustThreshold() int32

func (*PreferencesPayload) GetIgnoreTradersList added in v0.1.4

func (x *PreferencesPayload) GetIgnoreTradersList() []string

func (*PreferencesPayload) GetIsDaoFullNode added in v0.1.4

func (x *PreferencesPayload) GetIsDaoFullNode() bool

func (*PreferencesPayload) GetIsFullBMAccountingNode added in v0.1.10

func (x *PreferencesPayload) GetIsFullBMAccountingNode() bool

func (*PreferencesPayload) GetMaxPriceDistanceInPercent added in v0.1.4

func (x *PreferencesPayload) GetMaxPriceDistanceInPercent() float64

func (*PreferencesPayload) GetNotifyOnPreRelease added in v0.1.4

func (x *PreferencesPayload) GetNotifyOnPreRelease() bool

func (*PreferencesPayload) GetOfferBookChartScreenCurrencyCode added in v0.1.4

func (x *PreferencesPayload) GetOfferBookChartScreenCurrencyCode() string

func (*PreferencesPayload) GetPayFeeIn_Btc added in v0.1.4

func (x *PreferencesPayload) GetPayFeeIn_Btc() bool

func (*PreferencesPayload) GetPeerTagMap added in v0.1.4

func (x *PreferencesPayload) GetPeerTagMap() map[string]string

func (*PreferencesPayload) GetPhoneKeyAndToken added in v0.1.4

func (x *PreferencesPayload) GetPhoneKeyAndToken() string

func (*PreferencesPayload) GetPreferredTradeCurrency added in v0.1.4

func (x *PreferencesPayload) GetPreferredTradeCurrency() *TradeCurrency

func (*PreferencesPayload) GetProcessBurningManAccountingData added in v0.1.10

func (x *PreferencesPayload) GetProcessBurningManAccountingData() bool

func (*PreferencesPayload) GetReferralId added in v0.1.4

func (x *PreferencesPayload) GetReferralId() string

func (*PreferencesPayload) GetResync_SpvRequested added in v0.1.4

func (x *PreferencesPayload) GetResync_SpvRequested() bool

func (*PreferencesPayload) GetRpcPw added in v0.1.4

func (x *PreferencesPayload) GetRpcPw() string

func (*PreferencesPayload) GetRpcUser added in v0.1.4

func (x *PreferencesPayload) GetRpcUser() string

func (*PreferencesPayload) GetSelectedPaymentAccountForCreateOffer added in v0.1.4

func (x *PreferencesPayload) GetSelectedPaymentAccountForCreateOffer() *PaymentAccount

func (*PreferencesPayload) GetSellScreenCryptoCurrencyCode added in v0.1.9

func (x *PreferencesPayload) GetSellScreenCryptoCurrencyCode() string

func (*PreferencesPayload) GetSellScreenCurrencyCode added in v0.1.4

func (x *PreferencesPayload) GetSellScreenCurrencyCode() string

func (*PreferencesPayload) GetShowOffersMatchingMyAccounts added in v0.1.4

func (x *PreferencesPayload) GetShowOffersMatchingMyAccounts() bool

func (*PreferencesPayload) GetShowOwnOffersInOfferBook added in v0.1.4

func (x *PreferencesPayload) GetShowOwnOffersInOfferBook() bool

func (*PreferencesPayload) GetSortMarketCurrenciesNumerically added in v0.1.4

func (x *PreferencesPayload) GetSortMarketCurrenciesNumerically() bool

func (*PreferencesPayload) GetTacAccepted added in v0.1.4

func (x *PreferencesPayload) GetTacAccepted() bool

func (*PreferencesPayload) GetTacAcceptedV120 added in v0.1.4

func (x *PreferencesPayload) GetTacAcceptedV120() bool

func (*PreferencesPayload) GetTakeOfferSelectedPaymentAccountId added in v0.1.4

func (x *PreferencesPayload) GetTakeOfferSelectedPaymentAccountId() string

func (*PreferencesPayload) GetTorTransportOrdinal added in v0.1.4

func (x *PreferencesPayload) GetTorTransportOrdinal() int32

func (*PreferencesPayload) GetTradeChartsScreenCurrencyCode added in v0.1.4

func (x *PreferencesPayload) GetTradeChartsScreenCurrencyCode() string

func (*PreferencesPayload) GetTradeStatisticsTickUnitIndex added in v0.1.4

func (x *PreferencesPayload) GetTradeStatisticsTickUnitIndex() int32

func (*PreferencesPayload) GetUseAnimations added in v0.1.4

func (x *PreferencesPayload) GetUseAnimations() bool

func (*PreferencesPayload) GetUseBisqWalletFunding added in v0.1.14

func (x *PreferencesPayload) GetUseBisqWalletFunding() bool

func (*PreferencesPayload) GetUseBitcoinUrisInQrCodes added in v0.1.10

func (x *PreferencesPayload) GetUseBitcoinUrisInQrCodes() bool

func (*PreferencesPayload) GetUseCustomWithdrawalTxFee added in v0.1.4

func (x *PreferencesPayload) GetUseCustomWithdrawalTxFee() bool

func (*PreferencesPayload) GetUseFullModeDaoMonitor added in v0.1.6

func (x *PreferencesPayload) GetUseFullModeDaoMonitor() bool

func (*PreferencesPayload) GetUseMarketNotifications added in v0.1.4

func (x *PreferencesPayload) GetUseMarketNotifications() bool

func (*PreferencesPayload) GetUsePercentageBasedPrice added in v0.1.4

func (x *PreferencesPayload) GetUsePercentageBasedPrice() bool

func (*PreferencesPayload) GetUsePriceNotifications added in v0.1.4

func (x *PreferencesPayload) GetUsePriceNotifications() bool

func (*PreferencesPayload) GetUseSoundForMobileNotifications added in v0.1.4

func (x *PreferencesPayload) GetUseSoundForMobileNotifications() bool

func (*PreferencesPayload) GetUseStandbyMode added in v0.1.4

func (x *PreferencesPayload) GetUseStandbyMode() bool

func (*PreferencesPayload) GetUseTorForBitcoinJ added in v0.1.4

func (x *PreferencesPayload) GetUseTorForBitcoinJ() bool

func (*PreferencesPayload) GetUseTradeNotifications added in v0.1.4

func (x *PreferencesPayload) GetUseTradeNotifications() bool

func (*PreferencesPayload) GetUserCountry added in v0.1.4

func (x *PreferencesPayload) GetUserCountry() *Country

func (*PreferencesPayload) GetUserDefinedTradeLimit added in v0.1.10

func (x *PreferencesPayload) GetUserDefinedTradeLimit() int64

func (*PreferencesPayload) GetUserHasRaisedTradeLimit added in v0.1.10

func (x *PreferencesPayload) GetUserHasRaisedTradeLimit() bool

func (*PreferencesPayload) GetUserLanguage added in v0.1.4

func (x *PreferencesPayload) GetUserLanguage() string

func (*PreferencesPayload) GetWithdrawalTxFeeInVbytes added in v0.1.4

func (x *PreferencesPayload) GetWithdrawalTxFeeInVbytes() int64

func (*PreferencesPayload) ProtoMessage added in v0.1.4

func (*PreferencesPayload) ProtoMessage()

func (*PreferencesPayload) ProtoReflect added in v0.1.4

func (x *PreferencesPayload) ProtoReflect() protoreflect.Message

func (*PreferencesPayload) Reset added in v0.1.4

func (x *PreferencesPayload) Reset()

func (*PreferencesPayload) String added in v0.1.4

func (x *PreferencesPayload) String() string

type PrefixedSealedAndSignedMessage added in v0.1.4

type PrefixedSealedAndSignedMessage struct {
	NodeAddress       *NodeAddress     `protobuf:"bytes,1,opt,name=node_address,json=nodeAddress,proto3" json:"node_address,omitempty"`
	SealedAndSigned   *SealedAndSigned `protobuf:"bytes,2,opt,name=sealed_and_signed,json=sealedAndSigned,proto3" json:"sealed_and_signed,omitempty"`
	AddressPrefixHash []byte           `protobuf:"bytes,3,opt,name=address_prefix_hash,json=addressPrefixHash,proto3" json:"address_prefix_hash,omitempty"`
	Uid               string           `protobuf:"bytes,4,opt,name=uid,proto3" json:"uid,omitempty"`
	// contains filtered or unexported fields
}

func (*PrefixedSealedAndSignedMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PrefixedSealedAndSignedMessage.ProtoReflect.Descriptor instead.

func (*PrefixedSealedAndSignedMessage) GetAddressPrefixHash added in v0.1.4

func (x *PrefixedSealedAndSignedMessage) GetAddressPrefixHash() []byte

func (*PrefixedSealedAndSignedMessage) GetNodeAddress added in v0.1.4

func (x *PrefixedSealedAndSignedMessage) GetNodeAddress() *NodeAddress

func (*PrefixedSealedAndSignedMessage) GetSealedAndSigned added in v0.1.4

func (x *PrefixedSealedAndSignedMessage) GetSealedAndSigned() *SealedAndSigned

func (*PrefixedSealedAndSignedMessage) GetUid added in v0.1.4

func (*PrefixedSealedAndSignedMessage) ProtoMessage added in v0.1.4

func (*PrefixedSealedAndSignedMessage) ProtoMessage()

func (*PrefixedSealedAndSignedMessage) ProtoReflect added in v0.1.4

func (*PrefixedSealedAndSignedMessage) Reset added in v0.1.4

func (x *PrefixedSealedAndSignedMessage) Reset()

func (*PrefixedSealedAndSignedMessage) String added in v0.1.4

type PreliminaryGetDataRequest added in v0.1.4

type PreliminaryGetDataRequest struct {
	Nonce                 int32    `protobuf:"varint,21,opt,name=nonce,proto3" json:"nonce,omitempty"` // This was set to 21 instead of 1 in some old commit so we cannot change it.
	ExcludedKeys          [][]byte `protobuf:"bytes,2,rep,name=excluded_keys,json=excludedKeys,proto3" json:"excluded_keys,omitempty"`
	SupportedCapabilities []int32  `` /* 132-byte string literal not displayed */
	Version               string   `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*PreliminaryGetDataRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PreliminaryGetDataRequest.ProtoReflect.Descriptor instead.

func (*PreliminaryGetDataRequest) GetExcludedKeys added in v0.1.4

func (x *PreliminaryGetDataRequest) GetExcludedKeys() [][]byte

func (*PreliminaryGetDataRequest) GetNonce added in v0.1.4

func (x *PreliminaryGetDataRequest) GetNonce() int32

func (*PreliminaryGetDataRequest) GetSupportedCapabilities added in v0.1.4

func (x *PreliminaryGetDataRequest) GetSupportedCapabilities() []int32

func (*PreliminaryGetDataRequest) GetVersion added in v0.1.4

func (x *PreliminaryGetDataRequest) GetVersion() string

func (*PreliminaryGetDataRequest) ProtoMessage added in v0.1.4

func (*PreliminaryGetDataRequest) ProtoMessage()

func (*PreliminaryGetDataRequest) ProtoReflect added in v0.1.4

func (*PreliminaryGetDataRequest) Reset added in v0.1.4

func (x *PreliminaryGetDataRequest) Reset()

func (*PreliminaryGetDataRequest) String added in v0.1.4

func (x *PreliminaryGetDataRequest) String() string

type PriceAlertFilter added in v0.1.4

type PriceAlertFilter struct {
	CurrencyCode string `protobuf:"bytes,1,opt,name=currencyCode,proto3" json:"currencyCode,omitempty"`
	High         int64  `protobuf:"varint,2,opt,name=high,proto3" json:"high,omitempty"`
	Low          int64  `protobuf:"varint,3,opt,name=low,proto3" json:"low,omitempty"`
	// contains filtered or unexported fields
}

func (*PriceAlertFilter) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PriceAlertFilter.ProtoReflect.Descriptor instead.

func (*PriceAlertFilter) GetCurrencyCode added in v0.1.4

func (x *PriceAlertFilter) GetCurrencyCode() string

func (*PriceAlertFilter) GetHigh added in v0.1.4

func (x *PriceAlertFilter) GetHigh() int64

func (*PriceAlertFilter) GetLow added in v0.1.4

func (x *PriceAlertFilter) GetLow() int64

func (*PriceAlertFilter) ProtoMessage added in v0.1.4

func (*PriceAlertFilter) ProtoMessage()

func (*PriceAlertFilter) ProtoReflect added in v0.1.4

func (x *PriceAlertFilter) ProtoReflect() protoreflect.Message

func (*PriceAlertFilter) Reset added in v0.1.4

func (x *PriceAlertFilter) Reset()

func (*PriceAlertFilter) String added in v0.1.4

func (x *PriceAlertFilter) String() string

type PriceClient added in v0.1.4

type PriceClient interface {
	// Get the current market price for a crypto currency.
	GetMarketPrice(ctx context.Context, in *MarketPriceRequest, opts ...grpc.CallOption) (*MarketPriceReply, error)
	// Get the volume weighted average trade price for BSQ, calculated over N days.
	// The response contains the average BSQ trade price in USD to 4 decimal places, and in BTC to 8 decimal places.
	GetAverageBsqTradePrice(ctx context.Context, in *GetAverageBsqTradePriceRequest, opts ...grpc.CallOption) (*GetAverageBsqTradePriceReply, error)
}

PriceClient is the client API for Price service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewPriceClient added in v0.1.4

func NewPriceClient(cc grpc.ClientConnInterface) PriceClient

type PriceServer added in v0.1.4

type PriceServer interface {
	// Get the current market price for a crypto currency.
	GetMarketPrice(context.Context, *MarketPriceRequest) (*MarketPriceReply, error)
	// Get the volume weighted average trade price for BSQ, calculated over N days.
	// The response contains the average BSQ trade price in USD to 4 decimal places, and in BTC to 8 decimal places.
	GetAverageBsqTradePrice(context.Context, *GetAverageBsqTradePriceRequest) (*GetAverageBsqTradePriceReply, error)
	// contains filtered or unexported methods
}

PriceServer is the server API for Price service. All implementations must embed UnimplementedPriceServer for forward compatibility

type PrivateNotificationMessage added in v0.1.4

type PrivateNotificationMessage struct {
	Uid                        string                      `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	SenderNodeAddress          *NodeAddress                `protobuf:"bytes,2,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	PrivateNotificationPayload *PrivateNotificationPayload `` /* 141-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*PrivateNotificationMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PrivateNotificationMessage.ProtoReflect.Descriptor instead.

func (*PrivateNotificationMessage) GetPrivateNotificationPayload added in v0.1.4

func (x *PrivateNotificationMessage) GetPrivateNotificationPayload() *PrivateNotificationPayload

func (*PrivateNotificationMessage) GetSenderNodeAddress added in v0.1.4

func (x *PrivateNotificationMessage) GetSenderNodeAddress() *NodeAddress

func (*PrivateNotificationMessage) GetUid added in v0.1.4

func (x *PrivateNotificationMessage) GetUid() string

func (*PrivateNotificationMessage) ProtoMessage added in v0.1.4

func (*PrivateNotificationMessage) ProtoMessage()

func (*PrivateNotificationMessage) ProtoReflect added in v0.1.4

func (*PrivateNotificationMessage) Reset added in v0.1.4

func (x *PrivateNotificationMessage) Reset()

func (*PrivateNotificationMessage) String added in v0.1.4

func (x *PrivateNotificationMessage) String() string

type PrivateNotificationPayload added in v0.1.4

type PrivateNotificationPayload struct {
	Message           string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	SignatureAsBase64 string `protobuf:"bytes,2,opt,name=signature_as_base64,json=signatureAsBase64,proto3" json:"signature_as_base64,omitempty"`
	SigPublicKeyBytes []byte `protobuf:"bytes,3,opt,name=sig_public_key_bytes,json=sigPublicKeyBytes,proto3" json:"sig_public_key_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*PrivateNotificationPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PrivateNotificationPayload.ProtoReflect.Descriptor instead.

func (*PrivateNotificationPayload) GetMessage added in v0.1.4

func (x *PrivateNotificationPayload) GetMessage() string

func (*PrivateNotificationPayload) GetSigPublicKeyBytes added in v0.1.4

func (x *PrivateNotificationPayload) GetSigPublicKeyBytes() []byte

func (*PrivateNotificationPayload) GetSignatureAsBase64 added in v0.1.4

func (x *PrivateNotificationPayload) GetSignatureAsBase64() string

func (*PrivateNotificationPayload) ProtoMessage added in v0.1.4

func (*PrivateNotificationPayload) ProtoMessage()

func (*PrivateNotificationPayload) ProtoReflect added in v0.1.4

func (*PrivateNotificationPayload) Reset added in v0.1.4

func (x *PrivateNotificationPayload) Reset()

func (*PrivateNotificationPayload) String added in v0.1.4

func (x *PrivateNotificationPayload) String() string

type ProcessModel added in v0.1.4

type ProcessModel struct {
	TradingPeer                     *TradingPeer           `protobuf:"bytes,1,opt,name=trading_peer,json=tradingPeer,proto3" json:"trading_peer,omitempty"`
	OfferId                         string                 `protobuf:"bytes,2,opt,name=offer_id,json=offerId,proto3" json:"offer_id,omitempty"`
	AccountId                       string                 `protobuf:"bytes,3,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	PubKeyRing                      *PubKeyRing            `protobuf:"bytes,4,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	TakeOfferFeeTxId                string                 `protobuf:"bytes,5,opt,name=take_offer_fee_tx_id,json=takeOfferFeeTxId,proto3" json:"take_offer_fee_tx_id,omitempty"`
	PayoutTxSignature               []byte                 `protobuf:"bytes,6,opt,name=payout_tx_signature,json=payoutTxSignature,proto3" json:"payout_tx_signature,omitempty"`
	PreparedDepositTx               []byte                 `protobuf:"bytes,9,opt,name=prepared_deposit_tx,json=preparedDepositTx,proto3" json:"prepared_deposit_tx,omitempty"`
	RawTransactionInputs            []*RawTransactionInput `protobuf:"bytes,10,rep,name=raw_transaction_inputs,json=rawTransactionInputs,proto3" json:"raw_transaction_inputs,omitempty"`
	ChangeOutputValue               int64                  `protobuf:"varint,11,opt,name=change_output_value,json=changeOutputValue,proto3" json:"change_output_value,omitempty"`
	ChangeOutputAddress             string                 `protobuf:"bytes,12,opt,name=change_output_address,json=changeOutputAddress,proto3" json:"change_output_address,omitempty"`
	UseSavingsWallet                bool                   `protobuf:"varint,13,opt,name=use_savings_wallet,json=useSavingsWallet,proto3" json:"use_savings_wallet,omitempty"`
	FundsNeededForTradeAsLong       int64                  `` /* 146-byte string literal not displayed */
	MyMultiSigPubKey                []byte                 `protobuf:"bytes,15,opt,name=my_multi_sig_pub_key,json=myMultiSigPubKey,proto3" json:"my_multi_sig_pub_key,omitempty"`
	TempTradingPeerNodeAddress      *NodeAddress           `` /* 146-byte string literal not displayed */
	PaymentStartedMessageState      string                 `` /* 144-byte string literal not displayed */
	MediatedPayoutTxSignature       []byte                 `` /* 141-byte string literal not displayed */
	BuyerPayoutAmountFromMediation  int64                  `` /* 159-byte string literal not displayed */
	SellerPayoutAmountFromMediation int64                  `` /* 162-byte string literal not displayed */
	PaymentAccount                  *PaymentAccount        `protobuf:"bytes,21,opt,name=payment_account,json=paymentAccount,proto3" json:"payment_account,omitempty"`
	BurningManSelectionHeight       int32                  `` // Added in v 1.9.7
	/* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ProcessModel) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ProcessModel.ProtoReflect.Descriptor instead.

func (*ProcessModel) GetAccountId added in v0.1.4

func (x *ProcessModel) GetAccountId() string

func (*ProcessModel) GetBurningManSelectionHeight added in v0.1.10

func (x *ProcessModel) GetBurningManSelectionHeight() int32

func (*ProcessModel) GetBuyerPayoutAmountFromMediation added in v0.1.4

func (x *ProcessModel) GetBuyerPayoutAmountFromMediation() int64

func (*ProcessModel) GetChangeOutputAddress added in v0.1.4

func (x *ProcessModel) GetChangeOutputAddress() string

func (*ProcessModel) GetChangeOutputValue added in v0.1.4

func (x *ProcessModel) GetChangeOutputValue() int64

func (*ProcessModel) GetFundsNeededForTradeAsLong added in v0.1.4

func (x *ProcessModel) GetFundsNeededForTradeAsLong() int64

func (*ProcessModel) GetMediatedPayoutTxSignature added in v0.1.4

func (x *ProcessModel) GetMediatedPayoutTxSignature() []byte

func (*ProcessModel) GetMyMultiSigPubKey added in v0.1.4

func (x *ProcessModel) GetMyMultiSigPubKey() []byte

func (*ProcessModel) GetOfferId added in v0.1.4

func (x *ProcessModel) GetOfferId() string

func (*ProcessModel) GetPaymentAccount added in v0.1.10

func (x *ProcessModel) GetPaymentAccount() *PaymentAccount

func (*ProcessModel) GetPaymentStartedMessageState added in v0.1.4

func (x *ProcessModel) GetPaymentStartedMessageState() string

func (*ProcessModel) GetPayoutTxSignature added in v0.1.4

func (x *ProcessModel) GetPayoutTxSignature() []byte

func (*ProcessModel) GetPreparedDepositTx added in v0.1.4

func (x *ProcessModel) GetPreparedDepositTx() []byte

func (*ProcessModel) GetPubKeyRing added in v0.1.4

func (x *ProcessModel) GetPubKeyRing() *PubKeyRing

func (*ProcessModel) GetRawTransactionInputs added in v0.1.4

func (x *ProcessModel) GetRawTransactionInputs() []*RawTransactionInput

func (*ProcessModel) GetSellerPayoutAmountFromMediation added in v0.1.4

func (x *ProcessModel) GetSellerPayoutAmountFromMediation() int64

func (*ProcessModel) GetTakeOfferFeeTxId added in v0.1.4

func (x *ProcessModel) GetTakeOfferFeeTxId() string

func (*ProcessModel) GetTempTradingPeerNodeAddress added in v0.1.4

func (x *ProcessModel) GetTempTradingPeerNodeAddress() *NodeAddress

func (*ProcessModel) GetTradingPeer added in v0.1.4

func (x *ProcessModel) GetTradingPeer() *TradingPeer

func (*ProcessModel) GetUseSavingsWallet added in v0.1.4

func (x *ProcessModel) GetUseSavingsWallet() bool

func (*ProcessModel) ProtoMessage added in v0.1.4

func (*ProcessModel) ProtoMessage()

func (*ProcessModel) ProtoReflect added in v0.1.4

func (x *ProcessModel) ProtoReflect() protoreflect.Message

func (*ProcessModel) Reset added in v0.1.4

func (x *ProcessModel) Reset()

func (*ProcessModel) String added in v0.1.4

func (x *ProcessModel) String() string

type PromptPayAccountPayload added in v0.1.4

type PromptPayAccountPayload struct {
	PromptPayId string `protobuf:"bytes,1,opt,name=prompt_pay_id,json=promptPayId,proto3" json:"prompt_pay_id,omitempty"`
	// contains filtered or unexported fields
}

func (*PromptPayAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PromptPayAccountPayload.ProtoReflect.Descriptor instead.

func (*PromptPayAccountPayload) GetPromptPayId added in v0.1.4

func (x *PromptPayAccountPayload) GetPromptPayId() string

func (*PromptPayAccountPayload) ProtoMessage added in v0.1.4

func (*PromptPayAccountPayload) ProtoMessage()

func (*PromptPayAccountPayload) ProtoReflect added in v0.1.4

func (x *PromptPayAccountPayload) ProtoReflect() protoreflect.Message

func (*PromptPayAccountPayload) Reset added in v0.1.4

func (x *PromptPayAccountPayload) Reset()

func (*PromptPayAccountPayload) String added in v0.1.4

func (x *PromptPayAccountPayload) String() string

type ProofOfWork added in v0.1.6

type ProofOfWork struct {
	Payload    []byte  `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
	Counter    int64   `protobuf:"varint,2,opt,name=counter,proto3" json:"counter,omitempty"`
	Challenge  []byte  `protobuf:"bytes,3,opt,name=challenge,proto3" json:"challenge,omitempty"`
	Difficulty float64 `protobuf:"fixed64,4,opt,name=difficulty,proto3" json:"difficulty,omitempty"`
	Duration   int64   `protobuf:"varint,5,opt,name=duration,proto3" json:"duration,omitempty"`
	Solution   []byte  `protobuf:"bytes,6,opt,name=solution,proto3" json:"solution,omitempty"`
	Version    int32   `protobuf:"varint,7,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*ProofOfWork) Descriptor deprecated added in v0.1.6

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

Deprecated: Use ProofOfWork.ProtoReflect.Descriptor instead.

func (*ProofOfWork) GetChallenge added in v0.1.6

func (x *ProofOfWork) GetChallenge() []byte

func (*ProofOfWork) GetCounter added in v0.1.6

func (x *ProofOfWork) GetCounter() int64

func (*ProofOfWork) GetDifficulty added in v0.1.6

func (x *ProofOfWork) GetDifficulty() float64

func (*ProofOfWork) GetDuration added in v0.1.6

func (x *ProofOfWork) GetDuration() int64

func (*ProofOfWork) GetPayload added in v0.1.6

func (x *ProofOfWork) GetPayload() []byte

func (*ProofOfWork) GetSolution added in v0.1.6

func (x *ProofOfWork) GetSolution() []byte

func (*ProofOfWork) GetVersion added in v0.1.6

func (x *ProofOfWork) GetVersion() int32

func (*ProofOfWork) ProtoMessage added in v0.1.6

func (*ProofOfWork) ProtoMessage()

func (*ProofOfWork) ProtoReflect added in v0.1.6

func (x *ProofOfWork) ProtoReflect() protoreflect.Message

func (*ProofOfWork) Reset added in v0.1.6

func (x *ProofOfWork) Reset()

func (*ProofOfWork) String added in v0.1.6

func (x *ProofOfWork) String() string

type Proposal added in v0.1.4

type Proposal struct {
	Name         string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Link         string `protobuf:"bytes,2,opt,name=link,proto3" json:"link,omitempty"`
	Version      uint32 `protobuf:"varint,3,opt,name=version,proto3" json:"version,omitempty"`
	CreationDate int64  `protobuf:"varint,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
	TxId         string `protobuf:"bytes,5,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	// Types that are assignable to Message:
	//
	//	*Proposal_CompensationProposal
	//	*Proposal_ReimbursementProposal
	//	*Proposal_ChangeParamProposal
	//	*Proposal_RoleProposal
	//	*Proposal_ConfiscateBondProposal
	//	*Proposal_GenericProposal
	//	*Proposal_RemoveAssetProposal
	Message isProposal_Message `protobuf_oneof:"message"`
	// We leave some index space here in case we add more subclasses.
	ExtraData map[string]string `` /* 177-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Proposal) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Proposal.ProtoReflect.Descriptor instead.

func (*Proposal) GetChangeParamProposal added in v0.1.4

func (x *Proposal) GetChangeParamProposal() *ChangeParamProposal

func (*Proposal) GetCompensationProposal added in v0.1.4

func (x *Proposal) GetCompensationProposal() *CompensationProposal

func (*Proposal) GetConfiscateBondProposal added in v0.1.4

func (x *Proposal) GetConfiscateBondProposal() *ConfiscateBondProposal

func (*Proposal) GetCreationDate added in v0.1.4

func (x *Proposal) GetCreationDate() int64

func (*Proposal) GetExtraData added in v0.1.4

func (x *Proposal) GetExtraData() map[string]string

func (*Proposal) GetGenericProposal added in v0.1.4

func (x *Proposal) GetGenericProposal() *GenericProposal
func (x *Proposal) GetLink() string

func (*Proposal) GetMessage added in v0.1.4

func (m *Proposal) GetMessage() isProposal_Message

func (*Proposal) GetName added in v0.1.4

func (x *Proposal) GetName() string

func (*Proposal) GetReimbursementProposal added in v0.1.4

func (x *Proposal) GetReimbursementProposal() *ReimbursementProposal

func (*Proposal) GetRemoveAssetProposal added in v0.1.4

func (x *Proposal) GetRemoveAssetProposal() *RemoveAssetProposal

func (*Proposal) GetRoleProposal added in v0.1.4

func (x *Proposal) GetRoleProposal() *RoleProposal

func (*Proposal) GetTxId added in v0.1.4

func (x *Proposal) GetTxId() string

func (*Proposal) GetVersion added in v0.1.4

func (x *Proposal) GetVersion() uint32

func (*Proposal) ProtoMessage added in v0.1.4

func (*Proposal) ProtoMessage()

func (*Proposal) ProtoReflect added in v0.1.4

func (x *Proposal) ProtoReflect() protoreflect.Message

func (*Proposal) Reset added in v0.1.4

func (x *Proposal) Reset()

func (*Proposal) String added in v0.1.4

func (x *Proposal) String() string

type ProposalPayload added in v0.1.4

type ProposalPayload struct {
	Proposal *Proposal `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	Hash     []byte    `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*ProposalPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ProposalPayload.ProtoReflect.Descriptor instead.

func (*ProposalPayload) GetHash added in v0.1.4

func (x *ProposalPayload) GetHash() []byte

func (*ProposalPayload) GetProposal added in v0.1.4

func (x *ProposalPayload) GetProposal() *Proposal

func (*ProposalPayload) ProtoMessage added in v0.1.4

func (*ProposalPayload) ProtoMessage()

func (*ProposalPayload) ProtoReflect added in v0.1.4

func (x *ProposalPayload) ProtoReflect() protoreflect.Message

func (*ProposalPayload) Reset added in v0.1.4

func (x *ProposalPayload) Reset()

func (*ProposalPayload) String added in v0.1.4

func (x *ProposalPayload) String() string

type ProposalStateHash added in v0.1.4

type ProposalStateHash struct {
	Height int32  `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Hash   []byte `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	PrevHash     []byte `protobuf:"bytes,3,opt,name=prev_hash,json=prevHash,proto3" json:"prev_hash,omitempty"`
	NumProposals int32  `protobuf:"varint,4,opt,name=num_proposals,json=numProposals,proto3" json:"num_proposals,omitempty"`
	// contains filtered or unexported fields
}

func (*ProposalStateHash) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ProposalStateHash.ProtoReflect.Descriptor instead.

func (*ProposalStateHash) GetHash added in v0.1.4

func (x *ProposalStateHash) GetHash() []byte

func (*ProposalStateHash) GetHeight added in v0.1.4

func (x *ProposalStateHash) GetHeight() int32

func (*ProposalStateHash) GetNumProposals added in v0.1.4

func (x *ProposalStateHash) GetNumProposals() int32

func (*ProposalStateHash) GetPrevHash deprecated added in v0.1.4

func (x *ProposalStateHash) GetPrevHash() []byte

Deprecated: Marked as deprecated in pb.proto.

func (*ProposalStateHash) ProtoMessage added in v0.1.4

func (*ProposalStateHash) ProtoMessage()

func (*ProposalStateHash) ProtoReflect added in v0.1.4

func (x *ProposalStateHash) ProtoReflect() protoreflect.Message

func (*ProposalStateHash) Reset added in v0.1.4

func (x *ProposalStateHash) Reset()

func (*ProposalStateHash) String added in v0.1.4

func (x *ProposalStateHash) String() string

type ProposalStore added in v0.1.4

type ProposalStore struct {
	Items []*ProposalPayload `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*ProposalStore) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ProposalStore.ProtoReflect.Descriptor instead.

func (*ProposalStore) GetItems added in v0.1.4

func (x *ProposalStore) GetItems() []*ProposalPayload

func (*ProposalStore) ProtoMessage added in v0.1.4

func (*ProposalStore) ProtoMessage()

func (*ProposalStore) ProtoReflect added in v0.1.4

func (x *ProposalStore) ProtoReflect() protoreflect.Message

func (*ProposalStore) Reset added in v0.1.4

func (x *ProposalStore) Reset()

func (*ProposalStore) String added in v0.1.4

func (x *ProposalStore) String() string

type ProposalVoteResult added in v0.1.4

type ProposalVoteResult struct {
	Proposal              *Proposal `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	StakeOf_AcceptedVotes int64     `` /* 126-byte string literal not displayed */
	StakeOf_RejectedVotes int64     `` /* 126-byte string literal not displayed */
	NumAcceptedVotes      int32     `protobuf:"varint,4,opt,name=num_accepted_votes,json=numAcceptedVotes,proto3" json:"num_accepted_votes,omitempty"`
	NumRejectedVotes      int32     `protobuf:"varint,5,opt,name=num_rejected_votes,json=numRejectedVotes,proto3" json:"num_rejected_votes,omitempty"`
	NumIgnoredVotes       int32     `protobuf:"varint,6,opt,name=num_ignored_votes,json=numIgnoredVotes,proto3" json:"num_ignored_votes,omitempty"`
	// contains filtered or unexported fields
}

func (*ProposalVoteResult) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ProposalVoteResult.ProtoReflect.Descriptor instead.

func (*ProposalVoteResult) GetNumAcceptedVotes added in v0.1.4

func (x *ProposalVoteResult) GetNumAcceptedVotes() int32

func (*ProposalVoteResult) GetNumIgnoredVotes added in v0.1.4

func (x *ProposalVoteResult) GetNumIgnoredVotes() int32

func (*ProposalVoteResult) GetNumRejectedVotes added in v0.1.4

func (x *ProposalVoteResult) GetNumRejectedVotes() int32

func (*ProposalVoteResult) GetProposal added in v0.1.4

func (x *ProposalVoteResult) GetProposal() *Proposal

func (*ProposalVoteResult) GetStakeOf_AcceptedVotes added in v0.1.4

func (x *ProposalVoteResult) GetStakeOf_AcceptedVotes() int64

func (*ProposalVoteResult) GetStakeOf_RejectedVotes added in v0.1.4

func (x *ProposalVoteResult) GetStakeOf_RejectedVotes() int64

func (*ProposalVoteResult) ProtoMessage added in v0.1.4

func (*ProposalVoteResult) ProtoMessage()

func (*ProposalVoteResult) ProtoReflect added in v0.1.4

func (x *ProposalVoteResult) ProtoReflect() protoreflect.Message

func (*ProposalVoteResult) Reset added in v0.1.4

func (x *ProposalVoteResult) Reset()

func (*ProposalVoteResult) String added in v0.1.4

func (x *ProposalVoteResult) String() string

type Proposal_ChangeParamProposal added in v0.1.4

type Proposal_ChangeParamProposal struct {
	ChangeParamProposal *ChangeParamProposal `protobuf:"bytes,8,opt,name=change_param_proposal,json=changeParamProposal,proto3,oneof"`
}

type Proposal_CompensationProposal added in v0.1.4

type Proposal_CompensationProposal struct {
	CompensationProposal *CompensationProposal `protobuf:"bytes,6,opt,name=compensation_proposal,json=compensationProposal,proto3,oneof"`
}

type Proposal_ConfiscateBondProposal added in v0.1.4

type Proposal_ConfiscateBondProposal struct {
	ConfiscateBondProposal *ConfiscateBondProposal `protobuf:"bytes,10,opt,name=confiscate_bond_proposal,json=confiscateBondProposal,proto3,oneof"`
}

type Proposal_GenericProposal added in v0.1.4

type Proposal_GenericProposal struct {
	GenericProposal *GenericProposal `protobuf:"bytes,11,opt,name=generic_proposal,json=genericProposal,proto3,oneof"`
}

type Proposal_ReimbursementProposal added in v0.1.4

type Proposal_ReimbursementProposal struct {
	ReimbursementProposal *ReimbursementProposal `protobuf:"bytes,7,opt,name=reimbursement_proposal,json=reimbursementProposal,proto3,oneof"`
}

type Proposal_RemoveAssetProposal added in v0.1.4

type Proposal_RemoveAssetProposal struct {
	RemoveAssetProposal *RemoveAssetProposal `protobuf:"bytes,12,opt,name=remove_asset_proposal,json=removeAssetProposal,proto3,oneof"`
}

type Proposal_RoleProposal added in v0.1.4

type Proposal_RoleProposal struct {
	RoleProposal *RoleProposal `protobuf:"bytes,9,opt,name=role_proposal,json=roleProposal,proto3,oneof"`
}

type ProtectedMailboxStorageEntry added in v0.1.4

type ProtectedMailboxStorageEntry struct {
	Entry                *ProtectedStorageEntry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	ReceiversPubKeyBytes []byte                 `protobuf:"bytes,2,opt,name=receivers_pub_key_bytes,json=receiversPubKeyBytes,proto3" json:"receivers_pub_key_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*ProtectedMailboxStorageEntry) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ProtectedMailboxStorageEntry.ProtoReflect.Descriptor instead.

func (*ProtectedMailboxStorageEntry) GetEntry added in v0.1.4

func (*ProtectedMailboxStorageEntry) GetReceiversPubKeyBytes added in v0.1.4

func (x *ProtectedMailboxStorageEntry) GetReceiversPubKeyBytes() []byte

func (*ProtectedMailboxStorageEntry) ProtoMessage added in v0.1.4

func (*ProtectedMailboxStorageEntry) ProtoMessage()

func (*ProtectedMailboxStorageEntry) ProtoReflect added in v0.1.4

func (*ProtectedMailboxStorageEntry) Reset added in v0.1.4

func (x *ProtectedMailboxStorageEntry) Reset()

func (*ProtectedMailboxStorageEntry) String added in v0.1.4

type ProtectedStorageEntry added in v0.1.4

type ProtectedStorageEntry struct {
	StoragePayload    *StoragePayload `protobuf:"bytes,1,opt,name=storagePayload,proto3" json:"storagePayload,omitempty"`
	OwnerPubKeyBytes  []byte          `protobuf:"bytes,2,opt,name=owner_pub_key_bytes,json=ownerPubKeyBytes,proto3" json:"owner_pub_key_bytes,omitempty"`
	SequenceNumber    int32           `protobuf:"varint,3,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	Signature         []byte          `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature,omitempty"`
	CreationTimeStamp int64           `protobuf:"varint,5,opt,name=creation_time_stamp,json=creationTimeStamp,proto3" json:"creation_time_stamp,omitempty"`
	// contains filtered or unexported fields
}

func (*ProtectedStorageEntry) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ProtectedStorageEntry.ProtoReflect.Descriptor instead.

func (*ProtectedStorageEntry) GetCreationTimeStamp added in v0.1.4

func (x *ProtectedStorageEntry) GetCreationTimeStamp() int64

func (*ProtectedStorageEntry) GetOwnerPubKeyBytes added in v0.1.4

func (x *ProtectedStorageEntry) GetOwnerPubKeyBytes() []byte

func (*ProtectedStorageEntry) GetSequenceNumber added in v0.1.4

func (x *ProtectedStorageEntry) GetSequenceNumber() int32

func (*ProtectedStorageEntry) GetSignature added in v0.1.4

func (x *ProtectedStorageEntry) GetSignature() []byte

func (*ProtectedStorageEntry) GetStoragePayload added in v0.1.4

func (x *ProtectedStorageEntry) GetStoragePayload() *StoragePayload

func (*ProtectedStorageEntry) ProtoMessage added in v0.1.4

func (*ProtectedStorageEntry) ProtoMessage()

func (*ProtectedStorageEntry) ProtoReflect added in v0.1.4

func (x *ProtectedStorageEntry) ProtoReflect() protoreflect.Message

func (*ProtectedStorageEntry) Reset added in v0.1.4

func (x *ProtectedStorageEntry) Reset()

func (*ProtectedStorageEntry) String added in v0.1.4

func (x *ProtectedStorageEntry) String() string

type PubKeyRing added in v0.1.4

type PubKeyRing struct {
	SignaturePubKeyBytes  []byte `protobuf:"bytes,1,opt,name=signature_pub_key_bytes,json=signaturePubKeyBytes,proto3" json:"signature_pub_key_bytes,omitempty"`
	EncryptionPubKeyBytes []byte `` /* 128-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*PubKeyRing) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PubKeyRing.ProtoReflect.Descriptor instead.

func (*PubKeyRing) GetEncryptionPubKeyBytes added in v0.1.4

func (x *PubKeyRing) GetEncryptionPubKeyBytes() []byte

func (*PubKeyRing) GetSignaturePubKeyBytes added in v0.1.4

func (x *PubKeyRing) GetSignaturePubKeyBytes() []byte

func (*PubKeyRing) ProtoMessage added in v0.1.4

func (*PubKeyRing) ProtoMessage()

func (*PubKeyRing) ProtoReflect added in v0.1.4

func (x *PubKeyRing) ProtoReflect() protoreflect.Message

func (*PubKeyRing) Reset added in v0.1.4

func (x *PubKeyRing) Reset()

func (*PubKeyRing) String added in v0.1.4

func (x *PubKeyRing) String() string

type PubKeyScript added in v0.1.4

type PubKeyScript struct {
	ReqSigs    int32      `protobuf:"varint,1,opt,name=req_sigs,json=reqSigs,proto3" json:"req_sigs,omitempty"`
	ScriptType ScriptType `` /* 128-byte string literal not displayed */
	Addresses  []string   `protobuf:"bytes,3,rep,name=addresses,proto3" json:"addresses,omitempty"`
	Asm        string     `protobuf:"bytes,4,opt,name=asm,proto3" json:"asm,omitempty"`
	Hex        string     `protobuf:"bytes,5,opt,name=hex,proto3" json:"hex,omitempty"`
	// contains filtered or unexported fields
}

func (*PubKeyScript) Descriptor deprecated added in v0.1.4

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

Deprecated: Use PubKeyScript.ProtoReflect.Descriptor instead.

func (*PubKeyScript) GetAddresses added in v0.1.4

func (x *PubKeyScript) GetAddresses() []string

func (*PubKeyScript) GetAsm added in v0.1.4

func (x *PubKeyScript) GetAsm() string

func (*PubKeyScript) GetHex added in v0.1.4

func (x *PubKeyScript) GetHex() string

func (*PubKeyScript) GetReqSigs added in v0.1.4

func (x *PubKeyScript) GetReqSigs() int32

func (*PubKeyScript) GetScriptType added in v0.1.4

func (x *PubKeyScript) GetScriptType() ScriptType

func (*PubKeyScript) ProtoMessage added in v0.1.4

func (*PubKeyScript) ProtoMessage()

func (*PubKeyScript) ProtoReflect added in v0.1.4

func (x *PubKeyScript) ProtoReflect() protoreflect.Message

func (*PubKeyScript) Reset added in v0.1.4

func (x *PubKeyScript) Reset()

func (*PubKeyScript) String added in v0.1.4

func (x *PubKeyScript) String() string

type RawBlock added in v0.1.4

type RawBlock struct {

	// Because of the way how PB implements inheritance we need to use the super class as type.
	RawTxs []*BaseTx `protobuf:"bytes,1,rep,name=raw_txs,json=rawTxs,proto3" json:"raw_txs,omitempty"`
	// contains filtered or unexported fields
}

func (*RawBlock) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RawBlock.ProtoReflect.Descriptor instead.

func (*RawBlock) GetRawTxs added in v0.1.4

func (x *RawBlock) GetRawTxs() []*BaseTx

func (*RawBlock) ProtoMessage added in v0.1.4

func (*RawBlock) ProtoMessage()

func (*RawBlock) ProtoReflect added in v0.1.4

func (x *RawBlock) ProtoReflect() protoreflect.Message

func (*RawBlock) Reset added in v0.1.4

func (x *RawBlock) Reset()

func (*RawBlock) String added in v0.1.4

func (x *RawBlock) String() string

type RawTransactionInput added in v0.1.4

type RawTransactionInput struct {
	Index             int64  `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
	ParentTransaction []byte `protobuf:"bytes,2,opt,name=parent_transaction,json=parentTransaction,proto3" json:"parent_transaction,omitempty"`
	Value             int64  `protobuf:"varint,3,opt,name=value,proto3" json:"value,omitempty"`
	ScriptTypeId      int32  `protobuf:"varint,4,opt,name=script_type_id,json=scriptTypeId,proto3" json:"script_type_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RawTransactionInput) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RawTransactionInput.ProtoReflect.Descriptor instead.

func (*RawTransactionInput) GetIndex added in v0.1.4

func (x *RawTransactionInput) GetIndex() int64

func (*RawTransactionInput) GetParentTransaction added in v0.1.4

func (x *RawTransactionInput) GetParentTransaction() []byte

func (*RawTransactionInput) GetScriptTypeId added in v0.1.6

func (x *RawTransactionInput) GetScriptTypeId() int32

func (*RawTransactionInput) GetValue added in v0.1.4

func (x *RawTransactionInput) GetValue() int64

func (*RawTransactionInput) ProtoMessage added in v0.1.4

func (*RawTransactionInput) ProtoMessage()

func (*RawTransactionInput) ProtoReflect added in v0.1.4

func (x *RawTransactionInput) ProtoReflect() protoreflect.Message

func (*RawTransactionInput) Reset added in v0.1.4

func (x *RawTransactionInput) Reset()

func (*RawTransactionInput) String added in v0.1.4

func (x *RawTransactionInput) String() string

type RawTx added in v0.1.4

type RawTx struct {

	// Because of the way how PB implements inheritance we need to use the super class as type.
	RawTxOutputs []*BaseTxOutput `protobuf:"bytes,1,rep,name=raw_tx_outputs,json=rawTxOutputs,proto3" json:"raw_tx_outputs,omitempty"`
	// contains filtered or unexported fields
}

func (*RawTx) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RawTx.ProtoReflect.Descriptor instead.

func (*RawTx) GetRawTxOutputs added in v0.1.4

func (x *RawTx) GetRawTxOutputs() []*BaseTxOutput

func (*RawTx) ProtoMessage added in v0.1.4

func (*RawTx) ProtoMessage()

func (*RawTx) ProtoReflect added in v0.1.4

func (x *RawTx) ProtoReflect() protoreflect.Message

func (*RawTx) Reset added in v0.1.4

func (x *RawTx) Reset()

func (*RawTx) String added in v0.1.4

func (x *RawTx) String() string

type RawTxOutput added in v0.1.4

type RawTxOutput struct {
	// contains filtered or unexported fields
}

func (*RawTxOutput) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RawTxOutput.ProtoReflect.Descriptor instead.

func (*RawTxOutput) ProtoMessage added in v0.1.4

func (*RawTxOutput) ProtoMessage()

func (*RawTxOutput) ProtoReflect added in v0.1.4

func (x *RawTxOutput) ProtoReflect() protoreflect.Message

func (*RawTxOutput) Reset added in v0.1.4

func (x *RawTxOutput) Reset()

func (*RawTxOutput) String added in v0.1.4

func (x *RawTxOutput) String() string

type RefreshOfferMessage added in v0.1.4

type RefreshOfferMessage struct {
	HashOfDataAndSeqNr []byte `protobuf:"bytes,1,opt,name=hash_of_data_and_seq_nr,json=hashOfDataAndSeqNr,proto3" json:"hash_of_data_and_seq_nr,omitempty"`
	Signature          []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
	HashOfPayload      []byte `protobuf:"bytes,3,opt,name=hash_of_payload,json=hashOfPayload,proto3" json:"hash_of_payload,omitempty"`
	SequenceNumber     int32  `protobuf:"varint,4,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	// contains filtered or unexported fields
}

func (*RefreshOfferMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RefreshOfferMessage.ProtoReflect.Descriptor instead.

func (*RefreshOfferMessage) GetHashOfDataAndSeqNr added in v0.1.4

func (x *RefreshOfferMessage) GetHashOfDataAndSeqNr() []byte

func (*RefreshOfferMessage) GetHashOfPayload added in v0.1.4

func (x *RefreshOfferMessage) GetHashOfPayload() []byte

func (*RefreshOfferMessage) GetSequenceNumber added in v0.1.4

func (x *RefreshOfferMessage) GetSequenceNumber() int32

func (*RefreshOfferMessage) GetSignature added in v0.1.4

func (x *RefreshOfferMessage) GetSignature() []byte

func (*RefreshOfferMessage) ProtoMessage added in v0.1.4

func (*RefreshOfferMessage) ProtoMessage()

func (*RefreshOfferMessage) ProtoReflect added in v0.1.4

func (x *RefreshOfferMessage) ProtoReflect() protoreflect.Message

func (*RefreshOfferMessage) Reset added in v0.1.4

func (x *RefreshOfferMessage) Reset()

func (*RefreshOfferMessage) String added in v0.1.4

func (x *RefreshOfferMessage) String() string

type RefreshTradeStateRequest added in v0.1.4

type RefreshTradeStateRequest struct {

	// Deprecated: Marked as deprecated in pb.proto.
	Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	TradeId string `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	SenderNodeAddress *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	// contains filtered or unexported fields
}

Deprecated since 1.4.0.

func (*RefreshTradeStateRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RefreshTradeStateRequest.ProtoReflect.Descriptor instead.

func (*RefreshTradeStateRequest) GetSenderNodeAddress deprecated added in v0.1.4

func (x *RefreshTradeStateRequest) GetSenderNodeAddress() *NodeAddress

Deprecated: Marked as deprecated in pb.proto.

func (*RefreshTradeStateRequest) GetTradeId deprecated added in v0.1.4

func (x *RefreshTradeStateRequest) GetTradeId() string

Deprecated: Marked as deprecated in pb.proto.

func (*RefreshTradeStateRequest) GetUid deprecated added in v0.1.4

func (x *RefreshTradeStateRequest) GetUid() string

Deprecated: Marked as deprecated in pb.proto.

func (*RefreshTradeStateRequest) ProtoMessage added in v0.1.4

func (*RefreshTradeStateRequest) ProtoMessage()

func (*RefreshTradeStateRequest) ProtoReflect added in v0.1.4

func (x *RefreshTradeStateRequest) ProtoReflect() protoreflect.Message

func (*RefreshTradeStateRequest) Reset added in v0.1.4

func (x *RefreshTradeStateRequest) Reset()

func (*RefreshTradeStateRequest) String added in v0.1.4

func (x *RefreshTradeStateRequest) String() string

type RefundAgent added in v0.1.4

type RefundAgent struct {
	NodeAddress           *NodeAddress      `protobuf:"bytes,1,opt,name=node_address,json=nodeAddress,proto3" json:"node_address,omitempty"`
	LanguageCodes         []string          `protobuf:"bytes,2,rep,name=language_codes,json=languageCodes,proto3" json:"language_codes,omitempty"`
	RegistrationDate      int64             `protobuf:"varint,3,opt,name=registration_date,json=registrationDate,proto3" json:"registration_date,omitempty"`
	RegistrationSignature string            `protobuf:"bytes,4,opt,name=registration_signature,json=registrationSignature,proto3" json:"registration_signature,omitempty"`
	RegistrationPubKey    []byte            `protobuf:"bytes,5,opt,name=registration_pub_key,json=registrationPubKey,proto3" json:"registration_pub_key,omitempty"`
	PubKeyRing            *PubKeyRing       `protobuf:"bytes,6,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	EmailAddress          string            `protobuf:"bytes,7,opt,name=email_address,json=emailAddress,proto3" json:"email_address,omitempty"`
	Info                  string            `protobuf:"bytes,8,opt,name=info,proto3" json:"info,omitempty"`
	ExtraData             map[string]string `` /* 176-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*RefundAgent) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RefundAgent.ProtoReflect.Descriptor instead.

func (*RefundAgent) GetEmailAddress added in v0.1.4

func (x *RefundAgent) GetEmailAddress() string

func (*RefundAgent) GetExtraData added in v0.1.4

func (x *RefundAgent) GetExtraData() map[string]string

func (*RefundAgent) GetInfo added in v0.1.4

func (x *RefundAgent) GetInfo() string

func (*RefundAgent) GetLanguageCodes added in v0.1.4

func (x *RefundAgent) GetLanguageCodes() []string

func (*RefundAgent) GetNodeAddress added in v0.1.4

func (x *RefundAgent) GetNodeAddress() *NodeAddress

func (*RefundAgent) GetPubKeyRing added in v0.1.4

func (x *RefundAgent) GetPubKeyRing() *PubKeyRing

func (*RefundAgent) GetRegistrationDate added in v0.1.4

func (x *RefundAgent) GetRegistrationDate() int64

func (*RefundAgent) GetRegistrationPubKey added in v0.1.4

func (x *RefundAgent) GetRegistrationPubKey() []byte

func (*RefundAgent) GetRegistrationSignature added in v0.1.4

func (x *RefundAgent) GetRegistrationSignature() string

func (*RefundAgent) ProtoMessage added in v0.1.4

func (*RefundAgent) ProtoMessage()

func (*RefundAgent) ProtoReflect added in v0.1.4

func (x *RefundAgent) ProtoReflect() protoreflect.Message

func (*RefundAgent) Reset added in v0.1.4

func (x *RefundAgent) Reset()

func (*RefundAgent) String added in v0.1.4

func (x *RefundAgent) String() string

type RefundDisputeList added in v0.1.4

type RefundDisputeList struct {
	Dispute []*Dispute `protobuf:"bytes,1,rep,name=dispute,proto3" json:"dispute,omitempty"`
	// contains filtered or unexported fields
}

func (*RefundDisputeList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RefundDisputeList.ProtoReflect.Descriptor instead.

func (*RefundDisputeList) GetDispute added in v0.1.4

func (x *RefundDisputeList) GetDispute() []*Dispute

func (*RefundDisputeList) ProtoMessage added in v0.1.4

func (*RefundDisputeList) ProtoMessage()

func (*RefundDisputeList) ProtoReflect added in v0.1.4

func (x *RefundDisputeList) ProtoReflect() protoreflect.Message

func (*RefundDisputeList) Reset added in v0.1.4

func (x *RefundDisputeList) Reset()

func (*RefundDisputeList) String added in v0.1.4

func (x *RefundDisputeList) String() string

type RefundResultState added in v0.1.4

type RefundResultState int32
const (
	RefundResultState_PB_ERROR_REFUND_RESULT  RefundResultState = 0
	RefundResultState_UNDEFINED_REFUND_RESULT RefundResultState = 1
)

func (RefundResultState) Descriptor added in v0.1.4

func (RefundResultState) Enum added in v0.1.4

func (RefundResultState) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use RefundResultState.Descriptor instead.

func (RefundResultState) Number added in v0.1.4

func (RefundResultState) String added in v0.1.4

func (x RefundResultState) String() string

func (RefundResultState) Type added in v0.1.4

type Region added in v0.1.4

type Region struct {
	Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Region) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Region.ProtoReflect.Descriptor instead.

func (*Region) GetCode added in v0.1.4

func (x *Region) GetCode() string

func (*Region) GetName added in v0.1.4

func (x *Region) GetName() string

func (*Region) ProtoMessage added in v0.1.4

func (*Region) ProtoMessage()

func (*Region) ProtoReflect added in v0.1.4

func (x *Region) ProtoReflect() protoreflect.Message

func (*Region) Reset added in v0.1.4

func (x *Region) Reset()

func (*Region) String added in v0.1.4

func (x *Region) String() string

type RegisterDisputeAgentReply added in v0.1.4

type RegisterDisputeAgentReply struct {
	// contains filtered or unexported fields
}

func (*RegisterDisputeAgentReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RegisterDisputeAgentReply.ProtoReflect.Descriptor instead.

func (*RegisterDisputeAgentReply) ProtoMessage added in v0.1.4

func (*RegisterDisputeAgentReply) ProtoMessage()

func (*RegisterDisputeAgentReply) ProtoReflect added in v0.1.4

func (*RegisterDisputeAgentReply) Reset added in v0.1.4

func (x *RegisterDisputeAgentReply) Reset()

func (*RegisterDisputeAgentReply) String added in v0.1.4

func (x *RegisterDisputeAgentReply) String() string

type RegisterDisputeAgentRequest added in v0.1.4

type RegisterDisputeAgentRequest struct {

	// One of "mediator" or "refundagent".  Development / test arbitrators can only be registered in the UI.
	DisputeAgentType string `protobuf:"bytes,1,opt,name=dispute_agent_type,json=disputeAgentType,proto3" json:"dispute_agent_type,omitempty"`
	// Private developer (only) registration key.
	RegistrationKey string `protobuf:"bytes,2,opt,name=registration_key,json=registrationKey,proto3" json:"registration_key,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterDisputeAgentRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RegisterDisputeAgentRequest.ProtoReflect.Descriptor instead.

func (*RegisterDisputeAgentRequest) GetDisputeAgentType added in v0.1.4

func (x *RegisterDisputeAgentRequest) GetDisputeAgentType() string

func (*RegisterDisputeAgentRequest) GetRegistrationKey added in v0.1.4

func (x *RegisterDisputeAgentRequest) GetRegistrationKey() string

func (*RegisterDisputeAgentRequest) ProtoMessage added in v0.1.4

func (*RegisterDisputeAgentRequest) ProtoMessage()

func (*RegisterDisputeAgentRequest) ProtoReflect added in v0.1.4

func (*RegisterDisputeAgentRequest) Reset added in v0.1.4

func (x *RegisterDisputeAgentRequest) Reset()

func (*RegisterDisputeAgentRequest) String added in v0.1.4

func (x *RegisterDisputeAgentRequest) String() string

type ReimbursementProposal added in v0.1.4

type ReimbursementProposal struct {
	RequestedBsq int64  `protobuf:"varint,1,opt,name=requested_bsq,json=requestedBsq,proto3" json:"requested_bsq,omitempty"`
	BsqAddress   string `protobuf:"bytes,2,opt,name=bsq_address,json=bsqAddress,proto3" json:"bsq_address,omitempty"`
	// contains filtered or unexported fields
}

func (*ReimbursementProposal) Descriptor deprecated added in v0.1.4

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

Deprecated: Use ReimbursementProposal.ProtoReflect.Descriptor instead.

func (*ReimbursementProposal) GetBsqAddress added in v0.1.4

func (x *ReimbursementProposal) GetBsqAddress() string

func (*ReimbursementProposal) GetRequestedBsq added in v0.1.4

func (x *ReimbursementProposal) GetRequestedBsq() int64

func (*ReimbursementProposal) ProtoMessage added in v0.1.4

func (*ReimbursementProposal) ProtoMessage()

func (*ReimbursementProposal) ProtoReflect added in v0.1.4

func (x *ReimbursementProposal) ProtoReflect() protoreflect.Message

func (*ReimbursementProposal) Reset added in v0.1.4

func (x *ReimbursementProposal) Reset()

func (*ReimbursementProposal) String added in v0.1.4

func (x *ReimbursementProposal) String() string

type RemoveAssetProposal added in v0.1.4

type RemoveAssetProposal struct {
	TickerSymbol string `protobuf:"bytes,1,opt,name=ticker_symbol,json=tickerSymbol,proto3" json:"ticker_symbol,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveAssetProposal) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RemoveAssetProposal.ProtoReflect.Descriptor instead.

func (*RemoveAssetProposal) GetTickerSymbol added in v0.1.4

func (x *RemoveAssetProposal) GetTickerSymbol() string

func (*RemoveAssetProposal) ProtoMessage added in v0.1.4

func (*RemoveAssetProposal) ProtoMessage()

func (*RemoveAssetProposal) ProtoReflect added in v0.1.4

func (x *RemoveAssetProposal) ProtoReflect() protoreflect.Message

func (*RemoveAssetProposal) Reset added in v0.1.4

func (x *RemoveAssetProposal) Reset()

func (*RemoveAssetProposal) String added in v0.1.4

func (x *RemoveAssetProposal) String() string

type RemoveDataMessage added in v0.1.4

type RemoveDataMessage struct {
	ProtectedStorageEntry *ProtectedStorageEntry `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*RemoveDataMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RemoveDataMessage.ProtoReflect.Descriptor instead.

func (*RemoveDataMessage) GetProtectedStorageEntry added in v0.1.4

func (x *RemoveDataMessage) GetProtectedStorageEntry() *ProtectedStorageEntry

func (*RemoveDataMessage) ProtoMessage added in v0.1.4

func (*RemoveDataMessage) ProtoMessage()

func (*RemoveDataMessage) ProtoReflect added in v0.1.4

func (x *RemoveDataMessage) ProtoReflect() protoreflect.Message

func (*RemoveDataMessage) Reset added in v0.1.4

func (x *RemoveDataMessage) Reset()

func (*RemoveDataMessage) String added in v0.1.4

func (x *RemoveDataMessage) String() string

type RemoveMailboxDataMessage added in v0.1.4

type RemoveMailboxDataMessage struct {
	ProtectedStorageEntry *ProtectedMailboxStorageEntry `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*RemoveMailboxDataMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RemoveMailboxDataMessage.ProtoReflect.Descriptor instead.

func (*RemoveMailboxDataMessage) GetProtectedStorageEntry added in v0.1.4

func (x *RemoveMailboxDataMessage) GetProtectedStorageEntry() *ProtectedMailboxStorageEntry

func (*RemoveMailboxDataMessage) ProtoMessage added in v0.1.4

func (*RemoveMailboxDataMessage) ProtoMessage()

func (*RemoveMailboxDataMessage) ProtoReflect added in v0.1.4

func (x *RemoveMailboxDataMessage) ProtoReflect() protoreflect.Message

func (*RemoveMailboxDataMessage) Reset added in v0.1.4

func (x *RemoveMailboxDataMessage) Reset()

func (*RemoveMailboxDataMessage) String added in v0.1.4

func (x *RemoveMailboxDataMessage) String() string

type RemoveWalletPasswordReply added in v0.1.4

type RemoveWalletPasswordReply struct {
	// contains filtered or unexported fields
}

func (*RemoveWalletPasswordReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RemoveWalletPasswordReply.ProtoReflect.Descriptor instead.

func (*RemoveWalletPasswordReply) ProtoMessage added in v0.1.4

func (*RemoveWalletPasswordReply) ProtoMessage()

func (*RemoveWalletPasswordReply) ProtoReflect added in v0.1.4

func (*RemoveWalletPasswordReply) Reset added in v0.1.4

func (x *RemoveWalletPasswordReply) Reset()

func (*RemoveWalletPasswordReply) String added in v0.1.4

func (x *RemoveWalletPasswordReply) String() string

type RemoveWalletPasswordRequest added in v0.1.4

type RemoveWalletPasswordRequest struct {
	Password string `protobuf:"bytes,1,opt,name=password,proto3" json:"password,omitempty"` // The Bisq wallet's current encryption password.
	// contains filtered or unexported fields
}

func (*RemoveWalletPasswordRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RemoveWalletPasswordRequest.ProtoReflect.Descriptor instead.

func (*RemoveWalletPasswordRequest) GetPassword added in v0.1.4

func (x *RemoveWalletPasswordRequest) GetPassword() string

func (*RemoveWalletPasswordRequest) ProtoMessage added in v0.1.4

func (*RemoveWalletPasswordRequest) ProtoMessage()

func (*RemoveWalletPasswordRequest) ProtoReflect added in v0.1.4

func (*RemoveWalletPasswordRequest) Reset added in v0.1.4

func (x *RemoveWalletPasswordRequest) Reset()

func (*RemoveWalletPasswordRequest) String added in v0.1.4

func (x *RemoveWalletPasswordRequest) String() string

type RemovedPayloadsMap added in v0.1.4

type RemovedPayloadsMap struct {
	DateByHashes map[string]uint64 `` /* 188-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*RemovedPayloadsMap) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RemovedPayloadsMap.ProtoReflect.Descriptor instead.

func (*RemovedPayloadsMap) GetDateByHashes added in v0.1.4

func (x *RemovedPayloadsMap) GetDateByHashes() map[string]uint64

func (*RemovedPayloadsMap) ProtoMessage added in v0.1.4

func (*RemovedPayloadsMap) ProtoMessage()

func (*RemovedPayloadsMap) ProtoReflect added in v0.1.4

func (x *RemovedPayloadsMap) ProtoReflect() protoreflect.Message

func (*RemovedPayloadsMap) Reset added in v0.1.4

func (x *RemovedPayloadsMap) Reset()

func (*RemovedPayloadsMap) String added in v0.1.4

func (x *RemovedPayloadsMap) String() string

type ReportingItem added in v0.1.10

type ReportingItem struct {
	Key   string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Group string `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"`
	// Types that are assignable to Message:
	//
	//	*ReportingItem_StringValueReportingItem
	//	*ReportingItem_LongValueReportingItem
	//	*ReportingItem_DoubleValueReportingItem
	Message isReportingItem_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*ReportingItem) Descriptor deprecated added in v0.1.10

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

Deprecated: Use ReportingItem.ProtoReflect.Descriptor instead.

func (*ReportingItem) GetDoubleValueReportingItem added in v0.1.10

func (x *ReportingItem) GetDoubleValueReportingItem() *DoubleValueReportingItem

func (*ReportingItem) GetGroup added in v0.1.10

func (x *ReportingItem) GetGroup() string

func (*ReportingItem) GetKey added in v0.1.10

func (x *ReportingItem) GetKey() string

func (*ReportingItem) GetLongValueReportingItem added in v0.1.10

func (x *ReportingItem) GetLongValueReportingItem() *LongValueReportingItem

func (*ReportingItem) GetMessage added in v0.1.10

func (m *ReportingItem) GetMessage() isReportingItem_Message

func (*ReportingItem) GetStringValueReportingItem added in v0.1.10

func (x *ReportingItem) GetStringValueReportingItem() *StringValueReportingItem

func (*ReportingItem) ProtoMessage added in v0.1.10

func (*ReportingItem) ProtoMessage()

func (*ReportingItem) ProtoReflect added in v0.1.10

func (x *ReportingItem) ProtoReflect() protoreflect.Message

func (*ReportingItem) Reset added in v0.1.10

func (x *ReportingItem) Reset()

func (*ReportingItem) String added in v0.1.10

func (x *ReportingItem) String() string

type ReportingItem_DoubleValueReportingItem added in v0.1.10

type ReportingItem_DoubleValueReportingItem struct {
	DoubleValueReportingItem *DoubleValueReportingItem `protobuf:"bytes,5,opt,name=double_value_reporting_item,json=doubleValueReportingItem,proto3,oneof"`
}

type ReportingItem_LongValueReportingItem added in v0.1.10

type ReportingItem_LongValueReportingItem struct {
	LongValueReportingItem *LongValueReportingItem `protobuf:"bytes,4,opt,name=long_value_reporting_item,json=longValueReportingItem,proto3,oneof"`
}

type ReportingItem_StringValueReportingItem added in v0.1.10

type ReportingItem_StringValueReportingItem struct {
	StringValueReportingItem *StringValueReportingItem `protobuf:"bytes,3,opt,name=string_value_reporting_item,json=stringValueReportingItem,proto3,oneof"`
}

type ReportingItems added in v0.1.10

type ReportingItems struct {
	Address       string           `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	ReportingItem []*ReportingItem `protobuf:"bytes,2,rep,name=reporting_item,json=reportingItem,proto3" json:"reporting_item,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportingItems) Descriptor deprecated added in v0.1.10

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

Deprecated: Use ReportingItems.ProtoReflect.Descriptor instead.

func (*ReportingItems) GetAddress added in v0.1.10

func (x *ReportingItems) GetAddress() string

func (*ReportingItems) GetReportingItem added in v0.1.10

func (x *ReportingItems) GetReportingItem() []*ReportingItem

func (*ReportingItems) ProtoMessage added in v0.1.10

func (*ReportingItems) ProtoMessage()

func (*ReportingItems) ProtoReflect added in v0.1.10

func (x *ReportingItems) ProtoReflect() protoreflect.Message

func (*ReportingItems) Reset added in v0.1.10

func (x *ReportingItems) Reset()

func (*ReportingItems) String added in v0.1.10

func (x *ReportingItems) String() string

type RepublishGovernanceDataRequest added in v0.1.4

type RepublishGovernanceDataRequest struct {
	// contains filtered or unexported fields
}

func (*RepublishGovernanceDataRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RepublishGovernanceDataRequest.ProtoReflect.Descriptor instead.

func (*RepublishGovernanceDataRequest) ProtoMessage added in v0.1.4

func (*RepublishGovernanceDataRequest) ProtoMessage()

func (*RepublishGovernanceDataRequest) ProtoReflect added in v0.1.4

func (*RepublishGovernanceDataRequest) Reset added in v0.1.4

func (x *RepublishGovernanceDataRequest) Reset()

func (*RepublishGovernanceDataRequest) String added in v0.1.4

type RevolutAccountPayload added in v0.1.4

type RevolutAccountPayload struct {
	AccountId string `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	UserName  string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	// contains filtered or unexported fields
}

func (*RevolutAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RevolutAccountPayload.ProtoReflect.Descriptor instead.

func (*RevolutAccountPayload) GetAccountId added in v0.1.4

func (x *RevolutAccountPayload) GetAccountId() string

func (*RevolutAccountPayload) GetUserName added in v0.1.4

func (x *RevolutAccountPayload) GetUserName() string

func (*RevolutAccountPayload) ProtoMessage added in v0.1.4

func (*RevolutAccountPayload) ProtoMessage()

func (*RevolutAccountPayload) ProtoReflect added in v0.1.4

func (x *RevolutAccountPayload) ProtoReflect() protoreflect.Message

func (*RevolutAccountPayload) Reset added in v0.1.4

func (x *RevolutAccountPayload) Reset()

func (*RevolutAccountPayload) String added in v0.1.4

func (x *RevolutAccountPayload) String() string

type Role added in v0.1.4

type Role struct {
	Uid            string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name           string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Link           string `protobuf:"bytes,3,opt,name=link,proto3" json:"link,omitempty"`
	BondedRoleType string `protobuf:"bytes,4,opt,name=bonded_role_type,json=bondedRoleType,proto3" json:"bonded_role_type,omitempty"` // Name of BondedRoleType enum.
	// contains filtered or unexported fields
}

func (*Role) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Role.ProtoReflect.Descriptor instead.

func (*Role) GetBondedRoleType added in v0.1.4

func (x *Role) GetBondedRoleType() string
func (x *Role) GetLink() string

func (*Role) GetName added in v0.1.4

func (x *Role) GetName() string

func (*Role) GetUid added in v0.1.4

func (x *Role) GetUid() string

func (*Role) ProtoMessage added in v0.1.4

func (*Role) ProtoMessage()

func (*Role) ProtoReflect added in v0.1.4

func (x *Role) ProtoReflect() protoreflect.Message

func (*Role) Reset added in v0.1.4

func (x *Role) Reset()

func (*Role) String added in v0.1.4

func (x *Role) String() string

type RoleProposal added in v0.1.4

type RoleProposal struct {
	Role             *Role `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
	RequiredBondUnit int64 `protobuf:"varint,2,opt,name=required_bond_unit,json=requiredBondUnit,proto3" json:"required_bond_unit,omitempty"`
	UnlockTime       int32 `protobuf:"varint,3,opt,name=unlock_time,json=unlockTime,proto3" json:"unlock_time,omitempty"`
	// contains filtered or unexported fields
}

func (*RoleProposal) Descriptor deprecated added in v0.1.4

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

Deprecated: Use RoleProposal.ProtoReflect.Descriptor instead.

func (*RoleProposal) GetRequiredBondUnit added in v0.1.4

func (x *RoleProposal) GetRequiredBondUnit() int64

func (*RoleProposal) GetRole added in v0.1.4

func (x *RoleProposal) GetRole() *Role

func (*RoleProposal) GetUnlockTime added in v0.1.4

func (x *RoleProposal) GetUnlockTime() int32

func (*RoleProposal) ProtoMessage added in v0.1.4

func (*RoleProposal) ProtoMessage()

func (*RoleProposal) ProtoReflect added in v0.1.4

func (x *RoleProposal) ProtoReflect() protoreflect.Message

func (*RoleProposal) Reset added in v0.1.4

func (x *RoleProposal) Reset()

func (*RoleProposal) String added in v0.1.4

func (x *RoleProposal) String() string

type RtgsAccountPayload added in v0.1.6

type RtgsAccountPayload struct {
	// contains filtered or unexported fields
}

func (*RtgsAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use RtgsAccountPayload.ProtoReflect.Descriptor instead.

func (*RtgsAccountPayload) ProtoMessage added in v0.1.6

func (*RtgsAccountPayload) ProtoMessage()

func (*RtgsAccountPayload) ProtoReflect added in v0.1.6

func (x *RtgsAccountPayload) ProtoReflect() protoreflect.Message

func (*RtgsAccountPayload) Reset added in v0.1.6

func (x *RtgsAccountPayload) Reset()

func (*RtgsAccountPayload) String added in v0.1.6

func (x *RtgsAccountPayload) String() string

type SameBankAccountPayload added in v0.1.4

type SameBankAccountPayload struct {
	// contains filtered or unexported fields
}

func (*SameBankAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SameBankAccountPayload.ProtoReflect.Descriptor instead.

func (*SameBankAccountPayload) ProtoMessage added in v0.1.4

func (*SameBankAccountPayload) ProtoMessage()

func (*SameBankAccountPayload) ProtoReflect added in v0.1.4

func (x *SameBankAccountPayload) ProtoReflect() protoreflect.Message

func (*SameBankAccountPayload) Reset added in v0.1.4

func (x *SameBankAccountPayload) Reset()

func (*SameBankAccountPayload) String added in v0.1.4

func (x *SameBankAccountPayload) String() string

type SatispayAccountPayload added in v0.1.6

type SatispayAccountPayload struct {
	MobileNr   string `protobuf:"bytes,1,opt,name=mobile_nr,json=mobileNr,proto3" json:"mobile_nr,omitempty"`
	HolderName string `protobuf:"bytes,2,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	// contains filtered or unexported fields
}

func (*SatispayAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use SatispayAccountPayload.ProtoReflect.Descriptor instead.

func (*SatispayAccountPayload) GetHolderName added in v0.1.6

func (x *SatispayAccountPayload) GetHolderName() string

func (*SatispayAccountPayload) GetMobileNr added in v0.1.6

func (x *SatispayAccountPayload) GetMobileNr() string

func (*SatispayAccountPayload) ProtoMessage added in v0.1.6

func (*SatispayAccountPayload) ProtoMessage()

func (*SatispayAccountPayload) ProtoReflect added in v0.1.6

func (x *SatispayAccountPayload) ProtoReflect() protoreflect.Message

func (*SatispayAccountPayload) Reset added in v0.1.6

func (x *SatispayAccountPayload) Reset()

func (*SatispayAccountPayload) String added in v0.1.6

func (x *SatispayAccountPayload) String() string

type ScriptType added in v0.1.4

type ScriptType int32
const (
	ScriptType_PB_ERROR_SCRIPT_TYPES ScriptType = 0
	ScriptType_PUB_KEY               ScriptType = 1
	ScriptType_PUB_KEY_HASH          ScriptType = 2
	ScriptType_SCRIPT_HASH           ScriptType = 3
	ScriptType_MULTISIG              ScriptType = 4
	ScriptType_NULL_DATA             ScriptType = 5
	ScriptType_WITNESS_V0_KEYHASH    ScriptType = 6
	ScriptType_WITNESS_V0_SCRIPTHASH ScriptType = 7
	ScriptType_NONSTANDARD           ScriptType = 8
	ScriptType_WITNESS_UNKNOWN       ScriptType = 9
	ScriptType_WITNESS_V1_TAPROOT    ScriptType = 10
)

func (ScriptType) Descriptor added in v0.1.4

func (ScriptType) Descriptor() protoreflect.EnumDescriptor

func (ScriptType) Enum added in v0.1.4

func (x ScriptType) Enum() *ScriptType

func (ScriptType) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use ScriptType.Descriptor instead.

func (ScriptType) Number added in v0.1.4

func (x ScriptType) Number() protoreflect.EnumNumber

func (ScriptType) String added in v0.1.4

func (x ScriptType) String() string

func (ScriptType) Type added in v0.1.4

type SealedAndSigned added in v0.1.4

type SealedAndSigned struct {
	EncryptedSecretKey       []byte `protobuf:"bytes,1,opt,name=encrypted_secret_key,json=encryptedSecretKey,proto3" json:"encrypted_secret_key,omitempty"`
	EncryptedPayloadWithHmac []byte `` /* 137-byte string literal not displayed */
	Signature                []byte `protobuf:"bytes,3,opt,name=signature,proto3" json:"signature,omitempty"`
	SigPublicKeyBytes        []byte `protobuf:"bytes,4,opt,name=sig_public_key_bytes,json=sigPublicKeyBytes,proto3" json:"sig_public_key_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*SealedAndSigned) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SealedAndSigned.ProtoReflect.Descriptor instead.

func (*SealedAndSigned) GetEncryptedPayloadWithHmac added in v0.1.4

func (x *SealedAndSigned) GetEncryptedPayloadWithHmac() []byte

func (*SealedAndSigned) GetEncryptedSecretKey added in v0.1.4

func (x *SealedAndSigned) GetEncryptedSecretKey() []byte

func (*SealedAndSigned) GetSigPublicKeyBytes added in v0.1.4

func (x *SealedAndSigned) GetSigPublicKeyBytes() []byte

func (*SealedAndSigned) GetSignature added in v0.1.4

func (x *SealedAndSigned) GetSignature() []byte

func (*SealedAndSigned) ProtoMessage added in v0.1.4

func (*SealedAndSigned) ProtoMessage()

func (*SealedAndSigned) ProtoReflect added in v0.1.4

func (x *SealedAndSigned) ProtoReflect() protoreflect.Message

func (*SealedAndSigned) Reset added in v0.1.4

func (x *SealedAndSigned) Reset()

func (*SealedAndSigned) String added in v0.1.4

func (x *SealedAndSigned) String() string

type SellerAsMakerTrade added in v0.1.4

type SellerAsMakerTrade struct {
	Trade *Trade `protobuf:"bytes,1,opt,name=trade,proto3" json:"trade,omitempty"`
	// contains filtered or unexported fields
}

func (*SellerAsMakerTrade) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SellerAsMakerTrade.ProtoReflect.Descriptor instead.

func (*SellerAsMakerTrade) GetTrade added in v0.1.4

func (x *SellerAsMakerTrade) GetTrade() *Trade

func (*SellerAsMakerTrade) ProtoMessage added in v0.1.4

func (*SellerAsMakerTrade) ProtoMessage()

func (*SellerAsMakerTrade) ProtoReflect added in v0.1.4

func (x *SellerAsMakerTrade) ProtoReflect() protoreflect.Message

func (*SellerAsMakerTrade) Reset added in v0.1.4

func (x *SellerAsMakerTrade) Reset()

func (*SellerAsMakerTrade) String added in v0.1.4

func (x *SellerAsMakerTrade) String() string

type SellerAsTakerTrade added in v0.1.4

type SellerAsTakerTrade struct {
	Trade *Trade `protobuf:"bytes,1,opt,name=trade,proto3" json:"trade,omitempty"`
	// contains filtered or unexported fields
}

func (*SellerAsTakerTrade) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SellerAsTakerTrade.ProtoReflect.Descriptor instead.

func (*SellerAsTakerTrade) GetTrade added in v0.1.4

func (x *SellerAsTakerTrade) GetTrade() *Trade

func (*SellerAsTakerTrade) ProtoMessage added in v0.1.4

func (*SellerAsTakerTrade) ProtoMessage()

func (*SellerAsTakerTrade) ProtoReflect added in v0.1.4

func (x *SellerAsTakerTrade) ProtoReflect() protoreflect.Message

func (*SellerAsTakerTrade) Reset added in v0.1.4

func (x *SellerAsTakerTrade) Reset()

func (*SellerAsTakerTrade) String added in v0.1.4

func (x *SellerAsTakerTrade) String() string

type SellersBsqSwapRequest added in v0.1.6

type SellersBsqSwapRequest struct {
	Uid               string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId           string       `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	TakerPubKeyRing   *PubKeyRing  `protobuf:"bytes,4,opt,name=taker_pub_key_ring,json=takerPubKeyRing,proto3" json:"taker_pub_key_ring,omitempty"`
	TradeAmount       int64        `protobuf:"varint,5,opt,name=trade_amount,json=tradeAmount,proto3" json:"trade_amount,omitempty"`
	TxFeePerVbyte     int64        `protobuf:"varint,6,opt,name=tx_fee_per_vbyte,json=txFeePerVbyte,proto3" json:"tx_fee_per_vbyte,omitempty"`
	MakerFee          int64        `protobuf:"varint,7,opt,name=maker_fee,json=makerFee,proto3" json:"maker_fee,omitempty"`
	TakerFee          int64        `protobuf:"varint,8,opt,name=taker_fee,json=takerFee,proto3" json:"taker_fee,omitempty"`
	TradeDate         int64        `protobuf:"varint,9,opt,name=trade_date,json=tradeDate,proto3" json:"trade_date,omitempty"`
	// contains filtered or unexported fields
}

func (*SellersBsqSwapRequest) Descriptor deprecated added in v0.1.6

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

Deprecated: Use SellersBsqSwapRequest.ProtoReflect.Descriptor instead.

func (*SellersBsqSwapRequest) GetMakerFee added in v0.1.6

func (x *SellersBsqSwapRequest) GetMakerFee() int64

func (*SellersBsqSwapRequest) GetSenderNodeAddress added in v0.1.6

func (x *SellersBsqSwapRequest) GetSenderNodeAddress() *NodeAddress

func (*SellersBsqSwapRequest) GetTakerFee added in v0.1.6

func (x *SellersBsqSwapRequest) GetTakerFee() int64

func (*SellersBsqSwapRequest) GetTakerPubKeyRing added in v0.1.6

func (x *SellersBsqSwapRequest) GetTakerPubKeyRing() *PubKeyRing

func (*SellersBsqSwapRequest) GetTradeAmount added in v0.1.6

func (x *SellersBsqSwapRequest) GetTradeAmount() int64

func (*SellersBsqSwapRequest) GetTradeDate added in v0.1.6

func (x *SellersBsqSwapRequest) GetTradeDate() int64

func (*SellersBsqSwapRequest) GetTradeId added in v0.1.6

func (x *SellersBsqSwapRequest) GetTradeId() string

func (*SellersBsqSwapRequest) GetTxFeePerVbyte added in v0.1.6

func (x *SellersBsqSwapRequest) GetTxFeePerVbyte() int64

func (*SellersBsqSwapRequest) GetUid added in v0.1.6

func (x *SellersBsqSwapRequest) GetUid() string

func (*SellersBsqSwapRequest) ProtoMessage added in v0.1.6

func (*SellersBsqSwapRequest) ProtoMessage()

func (*SellersBsqSwapRequest) ProtoReflect added in v0.1.6

func (x *SellersBsqSwapRequest) ProtoReflect() protoreflect.Message

func (*SellersBsqSwapRequest) Reset added in v0.1.6

func (x *SellersBsqSwapRequest) Reset()

func (*SellersBsqSwapRequest) String added in v0.1.6

func (x *SellersBsqSwapRequest) String() string

type SendBsqReply added in v0.1.4

type SendBsqReply struct {

	// The summary of a bitcoin transaction.  (BSQ is a colored coin, and transacted on the bitcoin blockchain.)
	TxInfo *TxInfo `protobuf:"bytes,1,opt,name=tx_info,json=txInfo,proto3" json:"tx_info,omitempty"`
	// contains filtered or unexported fields
}

func (*SendBsqReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SendBsqReply.ProtoReflect.Descriptor instead.

func (*SendBsqReply) GetTxInfo added in v0.1.4

func (x *SendBsqReply) GetTxInfo() *TxInfo

func (*SendBsqReply) ProtoMessage added in v0.1.4

func (*SendBsqReply) ProtoMessage()

func (*SendBsqReply) ProtoReflect added in v0.1.4

func (x *SendBsqReply) ProtoReflect() protoreflect.Message

func (*SendBsqReply) Reset added in v0.1.4

func (x *SendBsqReply) Reset()

func (*SendBsqReply) String added in v0.1.4

func (x *SendBsqReply) String() string

type SendBsqRequest added in v0.1.4

type SendBsqRequest struct {

	// The external BSQ wallet address.
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// The amount being sent to the external BSQ wallet address, as a string in "#######,##" format.
	Amount string `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount,omitempty"`
	// An optional bitcoin miner transaction fee rate, in sats/byte.  If not defined, Bisq will revert
	// to the custom transaction fee rate preference, if set, else the common Bisq network fee rate.
	TxFeeRate string `protobuf:"bytes,3,opt,name=tx_fee_rate,json=txFeeRate,proto3" json:"tx_fee_rate,omitempty"`
	// contains filtered or unexported fields
}

func (*SendBsqRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SendBsqRequest.ProtoReflect.Descriptor instead.

func (*SendBsqRequest) GetAddress added in v0.1.4

func (x *SendBsqRequest) GetAddress() string

func (*SendBsqRequest) GetAmount added in v0.1.4

func (x *SendBsqRequest) GetAmount() string

func (*SendBsqRequest) GetTxFeeRate added in v0.1.4

func (x *SendBsqRequest) GetTxFeeRate() string

func (*SendBsqRequest) ProtoMessage added in v0.1.4

func (*SendBsqRequest) ProtoMessage()

func (*SendBsqRequest) ProtoReflect added in v0.1.4

func (x *SendBsqRequest) ProtoReflect() protoreflect.Message

func (*SendBsqRequest) Reset added in v0.1.4

func (x *SendBsqRequest) Reset()

func (*SendBsqRequest) String added in v0.1.4

func (x *SendBsqRequest) String() string

type SendBtcReply added in v0.1.4

type SendBtcReply struct {
	TxInfo *TxInfo `protobuf:"bytes,1,opt,name=tx_info,json=txInfo,proto3" json:"tx_info,omitempty"` // The summary of a bitcoin transaction.
	// contains filtered or unexported fields
}

func (*SendBtcReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SendBtcReply.ProtoReflect.Descriptor instead.

func (*SendBtcReply) GetTxInfo added in v0.1.4

func (x *SendBtcReply) GetTxInfo() *TxInfo

func (*SendBtcReply) ProtoMessage added in v0.1.4

func (*SendBtcReply) ProtoMessage()

func (*SendBtcReply) ProtoReflect added in v0.1.4

func (x *SendBtcReply) ProtoReflect() protoreflect.Message

func (*SendBtcReply) Reset added in v0.1.4

func (x *SendBtcReply) Reset()

func (*SendBtcReply) String added in v0.1.4

func (x *SendBtcReply) String() string

type SendBtcRequest added in v0.1.4

type SendBtcRequest struct {

	// The external bitcoin address.
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// The amount of BTC to send to the external address, as a string in "##.########" (BTC unit) format.
	Amount string `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount,omitempty"`
	// An optional bitcoin miner transaction fee rate, in sats/byte.  If not defined, Bisq will revert
	// to the custom transaction fee rate preference, if set, else the common Bisq network fee rate.
	TxFeeRate string `protobuf:"bytes,3,opt,name=tx_fee_rate,json=txFeeRate,proto3" json:"tx_fee_rate,omitempty"`
	// An optional memo associated with the bitcoin transaction.
	Memo string `protobuf:"bytes,4,opt,name=memo,proto3" json:"memo,omitempty"`
	// contains filtered or unexported fields
}

func (*SendBtcRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SendBtcRequest.ProtoReflect.Descriptor instead.

func (*SendBtcRequest) GetAddress added in v0.1.4

func (x *SendBtcRequest) GetAddress() string

func (*SendBtcRequest) GetAmount added in v0.1.4

func (x *SendBtcRequest) GetAmount() string

func (*SendBtcRequest) GetMemo added in v0.1.4

func (x *SendBtcRequest) GetMemo() string

func (*SendBtcRequest) GetTxFeeRate added in v0.1.4

func (x *SendBtcRequest) GetTxFeeRate() string

func (*SendBtcRequest) ProtoMessage added in v0.1.4

func (*SendBtcRequest) ProtoMessage()

func (*SendBtcRequest) ProtoReflect added in v0.1.4

func (x *SendBtcRequest) ProtoReflect() protoreflect.Message

func (*SendBtcRequest) Reset added in v0.1.4

func (x *SendBtcRequest) Reset()

func (*SendBtcRequest) String added in v0.1.4

func (x *SendBtcRequest) String() string

type SepaAccountPayload added in v0.1.4

type SepaAccountPayload struct {
	HolderName string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	Iban       string `protobuf:"bytes,2,opt,name=iban,proto3" json:"iban,omitempty"`
	Bic        string `protobuf:"bytes,3,opt,name=bic,proto3" json:"bic,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	Email                string   `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"`
	AcceptedCountryCodes []string `protobuf:"bytes,5,rep,name=accepted_country_codes,json=acceptedCountryCodes,proto3" json:"accepted_country_codes,omitempty"`
	// contains filtered or unexported fields
}

func (*SepaAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SepaAccountPayload.ProtoReflect.Descriptor instead.

func (*SepaAccountPayload) GetAcceptedCountryCodes added in v0.1.4

func (x *SepaAccountPayload) GetAcceptedCountryCodes() []string

func (*SepaAccountPayload) GetBic added in v0.1.4

func (x *SepaAccountPayload) GetBic() string

func (*SepaAccountPayload) GetEmail deprecated added in v0.1.4

func (x *SepaAccountPayload) GetEmail() string

Deprecated: Marked as deprecated in pb.proto.

func (*SepaAccountPayload) GetHolderName added in v0.1.4

func (x *SepaAccountPayload) GetHolderName() string

func (*SepaAccountPayload) GetIban added in v0.1.4

func (x *SepaAccountPayload) GetIban() string

func (*SepaAccountPayload) ProtoMessage added in v0.1.4

func (*SepaAccountPayload) ProtoMessage()

func (*SepaAccountPayload) ProtoReflect added in v0.1.4

func (x *SepaAccountPayload) ProtoReflect() protoreflect.Message

func (*SepaAccountPayload) Reset added in v0.1.4

func (x *SepaAccountPayload) Reset()

func (*SepaAccountPayload) String added in v0.1.4

func (x *SepaAccountPayload) String() string

type SepaInstantAccountPayload added in v0.1.4

type SepaInstantAccountPayload struct {
	HolderName           string   `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	Iban                 string   `protobuf:"bytes,2,opt,name=iban,proto3" json:"iban,omitempty"`
	Bic                  string   `protobuf:"bytes,3,opt,name=bic,proto3" json:"bic,omitempty"`
	AcceptedCountryCodes []string `protobuf:"bytes,4,rep,name=accepted_country_codes,json=acceptedCountryCodes,proto3" json:"accepted_country_codes,omitempty"`
	// contains filtered or unexported fields
}

func (*SepaInstantAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SepaInstantAccountPayload.ProtoReflect.Descriptor instead.

func (*SepaInstantAccountPayload) GetAcceptedCountryCodes added in v0.1.4

func (x *SepaInstantAccountPayload) GetAcceptedCountryCodes() []string

func (*SepaInstantAccountPayload) GetBic added in v0.1.4

func (x *SepaInstantAccountPayload) GetBic() string

func (*SepaInstantAccountPayload) GetHolderName added in v0.1.4

func (x *SepaInstantAccountPayload) GetHolderName() string

func (*SepaInstantAccountPayload) GetIban added in v0.1.4

func (x *SepaInstantAccountPayload) GetIban() string

func (*SepaInstantAccountPayload) ProtoMessage added in v0.1.4

func (*SepaInstantAccountPayload) ProtoMessage()

func (*SepaInstantAccountPayload) ProtoReflect added in v0.1.4

func (*SepaInstantAccountPayload) Reset added in v0.1.4

func (x *SepaInstantAccountPayload) Reset()

func (*SepaInstantAccountPayload) String added in v0.1.4

func (x *SepaInstantAccountPayload) String() string

type SequenceNumberEntry added in v0.1.4

type SequenceNumberEntry struct {
	Bytes    *ByteArray `protobuf:"bytes,1,opt,name=bytes,proto3" json:"bytes,omitempty"`
	MapValue *MapValue  `protobuf:"bytes,2,opt,name=map_value,json=mapValue,proto3" json:"map_value,omitempty"`
	// contains filtered or unexported fields
}

func (*SequenceNumberEntry) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SequenceNumberEntry.ProtoReflect.Descriptor instead.

func (*SequenceNumberEntry) GetBytes added in v0.1.4

func (x *SequenceNumberEntry) GetBytes() *ByteArray

func (*SequenceNumberEntry) GetMapValue added in v0.1.4

func (x *SequenceNumberEntry) GetMapValue() *MapValue

func (*SequenceNumberEntry) ProtoMessage added in v0.1.4

func (*SequenceNumberEntry) ProtoMessage()

func (*SequenceNumberEntry) ProtoReflect added in v0.1.4

func (x *SequenceNumberEntry) ProtoReflect() protoreflect.Message

func (*SequenceNumberEntry) Reset added in v0.1.4

func (x *SequenceNumberEntry) Reset()

func (*SequenceNumberEntry) String added in v0.1.4

func (x *SequenceNumberEntry) String() string

type SequenceNumberMap added in v0.1.4

type SequenceNumberMap struct {
	SequenceNumberEntries []*SequenceNumberEntry `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SequenceNumberMap) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SequenceNumberMap.ProtoReflect.Descriptor instead.

func (*SequenceNumberMap) GetSequenceNumberEntries added in v0.1.4

func (x *SequenceNumberMap) GetSequenceNumberEntries() []*SequenceNumberEntry

func (*SequenceNumberMap) ProtoMessage added in v0.1.4

func (*SequenceNumberMap) ProtoMessage()

func (*SequenceNumberMap) ProtoReflect added in v0.1.4

func (x *SequenceNumberMap) ProtoReflect() protoreflect.Message

func (*SequenceNumberMap) Reset added in v0.1.4

func (x *SequenceNumberMap) Reset()

func (*SequenceNumberMap) String added in v0.1.4

func (x *SequenceNumberMap) String() string

type SetTxFeeRatePreferenceReply added in v0.1.4

type SetTxFeeRatePreferenceReply struct {
	TxFeeRateInfo *TxFeeRateInfo `protobuf:"bytes,1,opt,name=tx_fee_rate_info,json=txFeeRateInfo,proto3" json:"tx_fee_rate_info,omitempty"` // The summary of the most recently available bitcoin transaction fee rates.
	// contains filtered or unexported fields
}

func (*SetTxFeeRatePreferenceReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SetTxFeeRatePreferenceReply.ProtoReflect.Descriptor instead.

func (*SetTxFeeRatePreferenceReply) GetTxFeeRateInfo added in v0.1.4

func (x *SetTxFeeRatePreferenceReply) GetTxFeeRateInfo() *TxFeeRateInfo

func (*SetTxFeeRatePreferenceReply) ProtoMessage added in v0.1.4

func (*SetTxFeeRatePreferenceReply) ProtoMessage()

func (*SetTxFeeRatePreferenceReply) ProtoReflect added in v0.1.4

func (*SetTxFeeRatePreferenceReply) Reset added in v0.1.4

func (x *SetTxFeeRatePreferenceReply) Reset()

func (*SetTxFeeRatePreferenceReply) String added in v0.1.4

func (x *SetTxFeeRatePreferenceReply) String() string

type SetTxFeeRatePreferenceRequest added in v0.1.4

type SetTxFeeRatePreferenceRequest struct {
	TxFeeRatePreference uint64 `protobuf:"varint,1,opt,name=tx_fee_rate_preference,json=txFeeRatePreference,proto3" json:"tx_fee_rate_preference,omitempty"`
	// contains filtered or unexported fields
}

func (*SetTxFeeRatePreferenceRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SetTxFeeRatePreferenceRequest.ProtoReflect.Descriptor instead.

func (*SetTxFeeRatePreferenceRequest) GetTxFeeRatePreference added in v0.1.4

func (x *SetTxFeeRatePreferenceRequest) GetTxFeeRatePreference() uint64

func (*SetTxFeeRatePreferenceRequest) ProtoMessage added in v0.1.4

func (*SetTxFeeRatePreferenceRequest) ProtoMessage()

func (*SetTxFeeRatePreferenceRequest) ProtoReflect added in v0.1.4

func (*SetTxFeeRatePreferenceRequest) Reset added in v0.1.4

func (x *SetTxFeeRatePreferenceRequest) Reset()

func (*SetTxFeeRatePreferenceRequest) String added in v0.1.4

type SetWalletPasswordReply added in v0.1.4

type SetWalletPasswordReply struct {
	// contains filtered or unexported fields
}

func (*SetWalletPasswordReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SetWalletPasswordReply.ProtoReflect.Descriptor instead.

func (*SetWalletPasswordReply) ProtoMessage added in v0.1.4

func (*SetWalletPasswordReply) ProtoMessage()

func (*SetWalletPasswordReply) ProtoReflect added in v0.1.4

func (x *SetWalletPasswordReply) ProtoReflect() protoreflect.Message

func (*SetWalletPasswordReply) Reset added in v0.1.4

func (x *SetWalletPasswordReply) Reset()

func (*SetWalletPasswordReply) String added in v0.1.4

func (x *SetWalletPasswordReply) String() string

type SetWalletPasswordRequest added in v0.1.4

type SetWalletPasswordRequest struct {
	Password    string `protobuf:"bytes,1,opt,name=password,proto3" json:"password,omitempty"`                          // The new password for encrypting an unencrypted Bisq wallet.
	NewPassword string `protobuf:"bytes,2,opt,name=new_password,json=newPassword,proto3" json:"new_password,omitempty"` // The new password for encrypting an already encrypted Bisq wallet (a password override).
	// contains filtered or unexported fields
}

func (*SetWalletPasswordRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SetWalletPasswordRequest.ProtoReflect.Descriptor instead.

func (*SetWalletPasswordRequest) GetNewPassword added in v0.1.4

func (x *SetWalletPasswordRequest) GetNewPassword() string

func (*SetWalletPasswordRequest) GetPassword added in v0.1.4

func (x *SetWalletPasswordRequest) GetPassword() string

func (*SetWalletPasswordRequest) ProtoMessage added in v0.1.4

func (*SetWalletPasswordRequest) ProtoMessage()

func (*SetWalletPasswordRequest) ProtoReflect added in v0.1.4

func (x *SetWalletPasswordRequest) ProtoReflect() protoreflect.Message

func (*SetWalletPasswordRequest) Reset added in v0.1.4

func (x *SetWalletPasswordRequest) Reset()

func (*SetWalletPasswordRequest) String added in v0.1.4

func (x *SetWalletPasswordRequest) String() string

type ShareBuyerPaymentAccountMessage added in v0.1.5

type ShareBuyerPaymentAccountMessage struct {
	Uid                        string                 `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TradeId                    string                 `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	SenderNodeAddress          *NodeAddress           `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	BuyerPaymentAccountPayload *PaymentAccountPayload `` /* 143-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ShareBuyerPaymentAccountMessage) Descriptor deprecated added in v0.1.5

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

Deprecated: Use ShareBuyerPaymentAccountMessage.ProtoReflect.Descriptor instead.

func (*ShareBuyerPaymentAccountMessage) GetBuyerPaymentAccountPayload added in v0.1.5

func (x *ShareBuyerPaymentAccountMessage) GetBuyerPaymentAccountPayload() *PaymentAccountPayload

func (*ShareBuyerPaymentAccountMessage) GetSenderNodeAddress added in v0.1.5

func (x *ShareBuyerPaymentAccountMessage) GetSenderNodeAddress() *NodeAddress

func (*ShareBuyerPaymentAccountMessage) GetTradeId added in v0.1.5

func (x *ShareBuyerPaymentAccountMessage) GetTradeId() string

func (*ShareBuyerPaymentAccountMessage) GetUid added in v0.1.5

func (*ShareBuyerPaymentAccountMessage) ProtoMessage added in v0.1.5

func (*ShareBuyerPaymentAccountMessage) ProtoMessage()

func (*ShareBuyerPaymentAccountMessage) ProtoReflect added in v0.1.5

func (*ShareBuyerPaymentAccountMessage) Reset added in v0.1.5

func (*ShareBuyerPaymentAccountMessage) String added in v0.1.5

type ShutdownServerClient added in v0.1.4

type ShutdownServerClient interface {
	// Shut down a local Bisq daemon.
	Stop(ctx context.Context, in *StopRequest, opts ...grpc.CallOption) (*StopReply, error)
}

ShutdownServerClient is the client API for ShutdownServer service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewShutdownServerClient added in v0.1.4

func NewShutdownServerClient(cc grpc.ClientConnInterface) ShutdownServerClient

type ShutdownServerServer added in v0.1.4

type ShutdownServerServer interface {
	// Shut down a local Bisq daemon.
	Stop(context.Context, *StopRequest) (*StopReply, error)
	// contains filtered or unexported methods
}

ShutdownServerServer is the server API for ShutdownServer service. All implementations must embed UnimplementedShutdownServerServer for forward compatibility

type SignedWitness added in v0.1.4

type SignedWitness struct {
	VerificationMethod    SignedWitness_VerificationMethod `` /* 174-byte string literal not displayed */
	AccountAgeWitnessHash []byte                           `` /* 128-byte string literal not displayed */
	Signature             []byte                           `protobuf:"bytes,3,opt,name=signature,proto3" json:"signature,omitempty"`
	SignerPubKey          []byte                           `protobuf:"bytes,4,opt,name=signer_pub_key,json=signerPubKey,proto3" json:"signer_pub_key,omitempty"`
	WitnessOwnerPubKey    []byte                           `protobuf:"bytes,5,opt,name=witness_owner_pub_key,json=witnessOwnerPubKey,proto3" json:"witness_owner_pub_key,omitempty"`
	Date                  int64                            `protobuf:"varint,6,opt,name=date,proto3" json:"date,omitempty"`
	TradeAmount           int64                            `protobuf:"varint,7,opt,name=trade_amount,json=tradeAmount,proto3" json:"trade_amount,omitempty"`
	// contains filtered or unexported fields
}

func (*SignedWitness) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SignedWitness.ProtoReflect.Descriptor instead.

func (*SignedWitness) GetAccountAgeWitnessHash added in v0.1.4

func (x *SignedWitness) GetAccountAgeWitnessHash() []byte

func (*SignedWitness) GetDate added in v0.1.4

func (x *SignedWitness) GetDate() int64

func (*SignedWitness) GetSignature added in v0.1.4

func (x *SignedWitness) GetSignature() []byte

func (*SignedWitness) GetSignerPubKey added in v0.1.4

func (x *SignedWitness) GetSignerPubKey() []byte

func (*SignedWitness) GetTradeAmount added in v0.1.4

func (x *SignedWitness) GetTradeAmount() int64

func (*SignedWitness) GetVerificationMethod added in v0.1.4

func (x *SignedWitness) GetVerificationMethod() SignedWitness_VerificationMethod

func (*SignedWitness) GetWitnessOwnerPubKey added in v0.1.4

func (x *SignedWitness) GetWitnessOwnerPubKey() []byte

func (*SignedWitness) ProtoMessage added in v0.1.4

func (*SignedWitness) ProtoMessage()

func (*SignedWitness) ProtoReflect added in v0.1.4

func (x *SignedWitness) ProtoReflect() protoreflect.Message

func (*SignedWitness) Reset added in v0.1.4

func (x *SignedWitness) Reset()

func (*SignedWitness) String added in v0.1.4

func (x *SignedWitness) String() string

type SignedWitnessStore added in v0.1.4

type SignedWitnessStore struct {
	Items []*SignedWitness `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*SignedWitnessStore) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SignedWitnessStore.ProtoReflect.Descriptor instead.

func (*SignedWitnessStore) GetItems added in v0.1.4

func (x *SignedWitnessStore) GetItems() []*SignedWitness

func (*SignedWitnessStore) ProtoMessage added in v0.1.4

func (*SignedWitnessStore) ProtoMessage()

func (*SignedWitnessStore) ProtoReflect added in v0.1.4

func (x *SignedWitnessStore) ProtoReflect() protoreflect.Message

func (*SignedWitnessStore) Reset added in v0.1.4

func (x *SignedWitnessStore) Reset()

func (*SignedWitnessStore) String added in v0.1.4

func (x *SignedWitnessStore) String() string

type SignedWitness_VerificationMethod added in v0.1.4

type SignedWitness_VerificationMethod int32
const (
	SignedWitness_PB_ERROR   SignedWitness_VerificationMethod = 0
	SignedWitness_ARBITRATOR SignedWitness_VerificationMethod = 1
	SignedWitness_TRADE      SignedWitness_VerificationMethod = 2
)

func (SignedWitness_VerificationMethod) Descriptor added in v0.1.4

func (SignedWitness_VerificationMethod) Enum added in v0.1.4

func (SignedWitness_VerificationMethod) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use SignedWitness_VerificationMethod.Descriptor instead.

func (SignedWitness_VerificationMethod) Number added in v0.1.4

func (SignedWitness_VerificationMethod) String added in v0.1.4

func (SignedWitness_VerificationMethod) Type added in v0.1.4

type SpecificBanksAccountPayload added in v0.1.4

type SpecificBanksAccountPayload struct {
	AcceptedBanks []string `protobuf:"bytes,1,rep,name=accepted_banks,json=acceptedBanks,proto3" json:"accepted_banks,omitempty"`
	// contains filtered or unexported fields
}

func (*SpecificBanksAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SpecificBanksAccountPayload.ProtoReflect.Descriptor instead.

func (*SpecificBanksAccountPayload) GetAcceptedBanks added in v0.1.4

func (x *SpecificBanksAccountPayload) GetAcceptedBanks() []string

func (*SpecificBanksAccountPayload) ProtoMessage added in v0.1.4

func (*SpecificBanksAccountPayload) ProtoMessage()

func (*SpecificBanksAccountPayload) ProtoReflect added in v0.1.4

func (*SpecificBanksAccountPayload) Reset added in v0.1.4

func (x *SpecificBanksAccountPayload) Reset()

func (*SpecificBanksAccountPayload) String added in v0.1.4

func (x *SpecificBanksAccountPayload) String() string

type SpentInfo added in v0.1.4

type SpentInfo struct {
	BlockHeight int64  `protobuf:"varint,1,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	TxId        string `protobuf:"bytes,2,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	InputIndex  int32  `protobuf:"varint,3,opt,name=input_index,json=inputIndex,proto3" json:"input_index,omitempty"`
	// contains filtered or unexported fields
}

func (*SpentInfo) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SpentInfo.ProtoReflect.Descriptor instead.

func (*SpentInfo) GetBlockHeight added in v0.1.4

func (x *SpentInfo) GetBlockHeight() int64

func (*SpentInfo) GetInputIndex added in v0.1.4

func (x *SpentInfo) GetInputIndex() int32

func (*SpentInfo) GetTxId added in v0.1.4

func (x *SpentInfo) GetTxId() string

func (*SpentInfo) ProtoMessage added in v0.1.4

func (*SpentInfo) ProtoMessage()

func (*SpentInfo) ProtoReflect added in v0.1.4

func (x *SpentInfo) ProtoReflect() protoreflect.Message

func (*SpentInfo) Reset added in v0.1.4

func (x *SpentInfo) Reset()

func (*SpentInfo) String added in v0.1.4

func (x *SpentInfo) String() string

type StopReply added in v0.1.4

type StopReply struct {
	// contains filtered or unexported fields
}

func (*StopReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use StopReply.ProtoReflect.Descriptor instead.

func (*StopReply) ProtoMessage added in v0.1.4

func (*StopReply) ProtoMessage()

func (*StopReply) ProtoReflect added in v0.1.4

func (x *StopReply) ProtoReflect() protoreflect.Message

func (*StopReply) Reset added in v0.1.4

func (x *StopReply) Reset()

func (*StopReply) String added in v0.1.4

func (x *StopReply) String() string

type StopRequest added in v0.1.4

type StopRequest struct {
	// contains filtered or unexported fields
}

func (*StopRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use StopRequest.ProtoReflect.Descriptor instead.

func (*StopRequest) ProtoMessage added in v0.1.4

func (*StopRequest) ProtoMessage()

func (*StopRequest) ProtoReflect added in v0.1.4

func (x *StopRequest) ProtoReflect() protoreflect.Message

func (*StopRequest) Reset added in v0.1.4

func (x *StopRequest) Reset()

func (*StopRequest) String added in v0.1.4

func (x *StopRequest) String() string

type StorageEntryWrapper added in v0.1.4

type StorageEntryWrapper struct {

	// Types that are assignable to Message:
	//
	//	*StorageEntryWrapper_ProtectedStorageEntry
	//	*StorageEntryWrapper_ProtectedMailboxStorageEntry
	Message isStorageEntryWrapper_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*StorageEntryWrapper) Descriptor deprecated added in v0.1.4

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

Deprecated: Use StorageEntryWrapper.ProtoReflect.Descriptor instead.

func (*StorageEntryWrapper) GetMessage added in v0.1.4

func (m *StorageEntryWrapper) GetMessage() isStorageEntryWrapper_Message

func (*StorageEntryWrapper) GetProtectedMailboxStorageEntry added in v0.1.4

func (x *StorageEntryWrapper) GetProtectedMailboxStorageEntry() *ProtectedMailboxStorageEntry

func (*StorageEntryWrapper) GetProtectedStorageEntry added in v0.1.4

func (x *StorageEntryWrapper) GetProtectedStorageEntry() *ProtectedStorageEntry

func (*StorageEntryWrapper) ProtoMessage added in v0.1.4

func (*StorageEntryWrapper) ProtoMessage()

func (*StorageEntryWrapper) ProtoReflect added in v0.1.4

func (x *StorageEntryWrapper) ProtoReflect() protoreflect.Message

func (*StorageEntryWrapper) Reset added in v0.1.4

func (x *StorageEntryWrapper) Reset()

func (*StorageEntryWrapper) String added in v0.1.4

func (x *StorageEntryWrapper) String() string

type StorageEntryWrapper_ProtectedMailboxStorageEntry added in v0.1.4

type StorageEntryWrapper_ProtectedMailboxStorageEntry struct {
	ProtectedMailboxStorageEntry *ProtectedMailboxStorageEntry `protobuf:"bytes,2,opt,name=protected_mailbox_storage_entry,json=protectedMailboxStorageEntry,proto3,oneof"`
}

type StorageEntryWrapper_ProtectedStorageEntry added in v0.1.4

type StorageEntryWrapper_ProtectedStorageEntry struct {
	ProtectedStorageEntry *ProtectedStorageEntry `protobuf:"bytes,1,opt,name=protected_storage_entry,json=protectedStorageEntry,proto3,oneof"`
}

type StoragePayload added in v0.1.4

type StoragePayload struct {

	// Types that are assignable to Message:
	//
	//	*StoragePayload_Alert
	//	*StoragePayload_Arbitrator
	//	*StoragePayload_Mediator
	//	*StoragePayload_Filter
	//	*StoragePayload_MailboxStoragePayload
	//	*StoragePayload_OfferPayload
	//	*StoragePayload_TempProposalPayload
	//	*StoragePayload_RefundAgent
	//	*StoragePayload_BsqSwapOfferPayload
	Message isStoragePayload_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*StoragePayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use StoragePayload.ProtoReflect.Descriptor instead.

func (*StoragePayload) GetAlert added in v0.1.4

func (x *StoragePayload) GetAlert() *Alert

func (*StoragePayload) GetArbitrator added in v0.1.4

func (x *StoragePayload) GetArbitrator() *Arbitrator

func (*StoragePayload) GetBsqSwapOfferPayload added in v0.1.6

func (x *StoragePayload) GetBsqSwapOfferPayload() *BsqSwapOfferPayload

func (*StoragePayload) GetFilter added in v0.1.4

func (x *StoragePayload) GetFilter() *Filter

func (*StoragePayload) GetMailboxStoragePayload added in v0.1.4

func (x *StoragePayload) GetMailboxStoragePayload() *MailboxStoragePayload

func (*StoragePayload) GetMediator added in v0.1.4

func (x *StoragePayload) GetMediator() *Mediator

func (*StoragePayload) GetMessage added in v0.1.4

func (m *StoragePayload) GetMessage() isStoragePayload_Message

func (*StoragePayload) GetOfferPayload added in v0.1.4

func (x *StoragePayload) GetOfferPayload() *OfferPayload

func (*StoragePayload) GetRefundAgent added in v0.1.4

func (x *StoragePayload) GetRefundAgent() *RefundAgent

func (*StoragePayload) GetTempProposalPayload added in v0.1.4

func (x *StoragePayload) GetTempProposalPayload() *TempProposalPayload

func (*StoragePayload) ProtoMessage added in v0.1.4

func (*StoragePayload) ProtoMessage()

func (*StoragePayload) ProtoReflect added in v0.1.4

func (x *StoragePayload) ProtoReflect() protoreflect.Message

func (*StoragePayload) Reset added in v0.1.4

func (x *StoragePayload) Reset()

func (*StoragePayload) String added in v0.1.4

func (x *StoragePayload) String() string

type StoragePayload_Alert added in v0.1.4

type StoragePayload_Alert struct {
	Alert *Alert `protobuf:"bytes,1,opt,name=alert,proto3,oneof"`
}

type StoragePayload_Arbitrator added in v0.1.4

type StoragePayload_Arbitrator struct {
	Arbitrator *Arbitrator `protobuf:"bytes,2,opt,name=arbitrator,proto3,oneof"`
}

type StoragePayload_BsqSwapOfferPayload added in v0.1.6

type StoragePayload_BsqSwapOfferPayload struct {
	BsqSwapOfferPayload *BsqSwapOfferPayload `protobuf:"bytes,10,opt,name=bsq_swap_offer_payload,json=bsqSwapOfferPayload,proto3,oneof"`
}

type StoragePayload_Filter added in v0.1.4

type StoragePayload_Filter struct {
	Filter *Filter `protobuf:"bytes,4,opt,name=filter,proto3,oneof"`
}

type StoragePayload_MailboxStoragePayload added in v0.1.4

type StoragePayload_MailboxStoragePayload struct {
	MailboxStoragePayload *MailboxStoragePayload `protobuf:"bytes,6,opt,name=mailbox_storage_payload,json=mailboxStoragePayload,proto3,oneof"`
}

type StoragePayload_Mediator added in v0.1.4

type StoragePayload_Mediator struct {
	Mediator *Mediator `protobuf:"bytes,3,opt,name=mediator,proto3,oneof"`
}

type StoragePayload_OfferPayload added in v0.1.4

type StoragePayload_OfferPayload struct {
	OfferPayload *OfferPayload `protobuf:"bytes,7,opt,name=offer_payload,json=offerPayload,proto3,oneof"`
}

type StoragePayload_RefundAgent added in v0.1.4

type StoragePayload_RefundAgent struct {
	RefundAgent *RefundAgent `protobuf:"bytes,9,opt,name=refund_agent,json=refundAgent,proto3,oneof"`
}

type StoragePayload_TempProposalPayload added in v0.1.4

type StoragePayload_TempProposalPayload struct {
	TempProposalPayload *TempProposalPayload `protobuf:"bytes,8,opt,name=temp_proposal_payload,json=tempProposalPayload,proto3,oneof"`
}

type StrikeAccountPayload added in v0.1.6

type StrikeAccountPayload struct {
	HolderName string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	// contains filtered or unexported fields
}

func (*StrikeAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use StrikeAccountPayload.ProtoReflect.Descriptor instead.

func (*StrikeAccountPayload) GetHolderName added in v0.1.6

func (x *StrikeAccountPayload) GetHolderName() string

func (*StrikeAccountPayload) ProtoMessage added in v0.1.6

func (*StrikeAccountPayload) ProtoMessage()

func (*StrikeAccountPayload) ProtoReflect added in v0.1.6

func (x *StrikeAccountPayload) ProtoReflect() protoreflect.Message

func (*StrikeAccountPayload) Reset added in v0.1.6

func (x *StrikeAccountPayload) Reset()

func (*StrikeAccountPayload) String added in v0.1.6

func (x *StrikeAccountPayload) String() string

type StringValueReportingItem added in v0.1.10

type StringValueReportingItem struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*StringValueReportingItem) Descriptor deprecated added in v0.1.10

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

Deprecated: Use StringValueReportingItem.ProtoReflect.Descriptor instead.

func (*StringValueReportingItem) GetValue added in v0.1.10

func (x *StringValueReportingItem) GetValue() string

func (*StringValueReportingItem) ProtoMessage added in v0.1.10

func (*StringValueReportingItem) ProtoMessage()

func (*StringValueReportingItem) ProtoReflect added in v0.1.10

func (x *StringValueReportingItem) ProtoReflect() protoreflect.Message

func (*StringValueReportingItem) Reset added in v0.1.10

func (x *StringValueReportingItem) Reset()

func (*StringValueReportingItem) String added in v0.1.10

func (x *StringValueReportingItem) String() string

type SubAccountMapEntry added in v0.1.10

type SubAccountMapEntry struct {
	Key   string            `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value []*PaymentAccount `protobuf:"bytes,2,rep,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*SubAccountMapEntry) Descriptor deprecated added in v0.1.10

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

Deprecated: Use SubAccountMapEntry.ProtoReflect.Descriptor instead.

func (*SubAccountMapEntry) GetKey added in v0.1.10

func (x *SubAccountMapEntry) GetKey() string

func (*SubAccountMapEntry) GetValue added in v0.1.10

func (x *SubAccountMapEntry) GetValue() []*PaymentAccount

func (*SubAccountMapEntry) ProtoMessage added in v0.1.10

func (*SubAccountMapEntry) ProtoMessage()

func (*SubAccountMapEntry) ProtoReflect added in v0.1.10

func (x *SubAccountMapEntry) ProtoReflect() protoreflect.Message

func (*SubAccountMapEntry) Reset added in v0.1.10

func (x *SubAccountMapEntry) Reset()

func (*SubAccountMapEntry) String added in v0.1.10

func (x *SubAccountMapEntry) String() string

type SupportType added in v0.1.4

type SupportType int32

Dispute support types.

const (
	SupportType_ARBITRATION SupportType = 0
	SupportType_MEDIATION   SupportType = 1
	SupportType_TRADE       SupportType = 2
	SupportType_REFUND      SupportType = 3
)

func (SupportType) Descriptor added in v0.1.4

func (SupportType) Enum added in v0.1.4

func (x SupportType) Enum() *SupportType

func (SupportType) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use SupportType.Descriptor instead.

func (SupportType) Number added in v0.1.4

func (x SupportType) Number() protoreflect.EnumNumber

func (SupportType) String added in v0.1.4

func (x SupportType) String() string

func (SupportType) Type added in v0.1.4

type SwiftAccountPayload added in v0.1.6

type SwiftAccountPayload struct {
	BeneficiaryName         string `protobuf:"bytes,1,opt,name=beneficiary_name,json=beneficiaryName,proto3" json:"beneficiary_name,omitempty"`
	BeneficiaryAccountNr    string `protobuf:"bytes,2,opt,name=beneficiary_account_nr,json=beneficiaryAccountNr,proto3" json:"beneficiary_account_nr,omitempty"`
	BeneficiaryAddress      string `protobuf:"bytes,3,opt,name=beneficiary_address,json=beneficiaryAddress,proto3" json:"beneficiary_address,omitempty"`
	BeneficiaryCity         string `protobuf:"bytes,4,opt,name=beneficiary_city,json=beneficiaryCity,proto3" json:"beneficiary_city,omitempty"`
	BeneficiaryPhone        string `protobuf:"bytes,5,opt,name=beneficiary_phone,json=beneficiaryPhone,proto3" json:"beneficiary_phone,omitempty"`
	SpecialInstructions     string `protobuf:"bytes,6,opt,name=special_instructions,json=specialInstructions,proto3" json:"special_instructions,omitempty"`
	BankSwiftCode           string `protobuf:"bytes,7,opt,name=bank_swift_code,json=bankSwiftCode,proto3" json:"bank_swift_code,omitempty"`
	BankCountryCode         string `protobuf:"bytes,8,opt,name=bank_country_code,json=bankCountryCode,proto3" json:"bank_country_code,omitempty"`
	BankName                string `protobuf:"bytes,9,opt,name=bank_name,json=bankName,proto3" json:"bank_name,omitempty"`
	BankBranch              string `protobuf:"bytes,10,opt,name=bank_branch,json=bankBranch,proto3" json:"bank_branch,omitempty"`
	BankAddress             string `protobuf:"bytes,11,opt,name=bank_address,json=bankAddress,proto3" json:"bank_address,omitempty"`
	IntermediarySwiftCode   string `` /* 127-byte string literal not displayed */
	IntermediaryCountryCode string `` /* 133-byte string literal not displayed */
	IntermediaryName        string `protobuf:"bytes,14,opt,name=intermediary_name,json=intermediaryName,proto3" json:"intermediary_name,omitempty"`
	IntermediaryBranch      string `protobuf:"bytes,15,opt,name=intermediary_branch,json=intermediaryBranch,proto3" json:"intermediary_branch,omitempty"`
	IntermediaryAddress     string `protobuf:"bytes,16,opt,name=intermediary_address,json=intermediaryAddress,proto3" json:"intermediary_address,omitempty"`
	// contains filtered or unexported fields
}

func (*SwiftAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use SwiftAccountPayload.ProtoReflect.Descriptor instead.

func (*SwiftAccountPayload) GetBankAddress added in v0.1.6

func (x *SwiftAccountPayload) GetBankAddress() string

func (*SwiftAccountPayload) GetBankBranch added in v0.1.6

func (x *SwiftAccountPayload) GetBankBranch() string

func (*SwiftAccountPayload) GetBankCountryCode added in v0.1.6

func (x *SwiftAccountPayload) GetBankCountryCode() string

func (*SwiftAccountPayload) GetBankName added in v0.1.6

func (x *SwiftAccountPayload) GetBankName() string

func (*SwiftAccountPayload) GetBankSwiftCode added in v0.1.6

func (x *SwiftAccountPayload) GetBankSwiftCode() string

func (*SwiftAccountPayload) GetBeneficiaryAccountNr added in v0.1.6

func (x *SwiftAccountPayload) GetBeneficiaryAccountNr() string

func (*SwiftAccountPayload) GetBeneficiaryAddress added in v0.1.6

func (x *SwiftAccountPayload) GetBeneficiaryAddress() string

func (*SwiftAccountPayload) GetBeneficiaryCity added in v0.1.6

func (x *SwiftAccountPayload) GetBeneficiaryCity() string

func (*SwiftAccountPayload) GetBeneficiaryName added in v0.1.6

func (x *SwiftAccountPayload) GetBeneficiaryName() string

func (*SwiftAccountPayload) GetBeneficiaryPhone added in v0.1.6

func (x *SwiftAccountPayload) GetBeneficiaryPhone() string

func (*SwiftAccountPayload) GetIntermediaryAddress added in v0.1.6

func (x *SwiftAccountPayload) GetIntermediaryAddress() string

func (*SwiftAccountPayload) GetIntermediaryBranch added in v0.1.6

func (x *SwiftAccountPayload) GetIntermediaryBranch() string

func (*SwiftAccountPayload) GetIntermediaryCountryCode added in v0.1.6

func (x *SwiftAccountPayload) GetIntermediaryCountryCode() string

func (*SwiftAccountPayload) GetIntermediaryName added in v0.1.6

func (x *SwiftAccountPayload) GetIntermediaryName() string

func (*SwiftAccountPayload) GetIntermediarySwiftCode added in v0.1.6

func (x *SwiftAccountPayload) GetIntermediarySwiftCode() string

func (*SwiftAccountPayload) GetSpecialInstructions added in v0.1.6

func (x *SwiftAccountPayload) GetSpecialInstructions() string

func (*SwiftAccountPayload) ProtoMessage added in v0.1.6

func (*SwiftAccountPayload) ProtoMessage()

func (*SwiftAccountPayload) ProtoReflect added in v0.1.6

func (x *SwiftAccountPayload) ProtoReflect() protoreflect.Message

func (*SwiftAccountPayload) Reset added in v0.1.6

func (x *SwiftAccountPayload) Reset()

func (*SwiftAccountPayload) String added in v0.1.6

func (x *SwiftAccountPayload) String() string

type SwishAccountPayload added in v0.1.4

type SwishAccountPayload struct {
	MobileNr   string `protobuf:"bytes,1,opt,name=mobile_nr,json=mobileNr,proto3" json:"mobile_nr,omitempty"`
	HolderName string `protobuf:"bytes,2,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	// contains filtered or unexported fields
}

func (*SwishAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use SwishAccountPayload.ProtoReflect.Descriptor instead.

func (*SwishAccountPayload) GetHolderName added in v0.1.4

func (x *SwishAccountPayload) GetHolderName() string

func (*SwishAccountPayload) GetMobileNr added in v0.1.4

func (x *SwishAccountPayload) GetMobileNr() string

func (*SwishAccountPayload) ProtoMessage added in v0.1.4

func (*SwishAccountPayload) ProtoMessage()

func (*SwishAccountPayload) ProtoReflect added in v0.1.4

func (x *SwishAccountPayload) ProtoReflect() protoreflect.Message

func (*SwishAccountPayload) Reset added in v0.1.4

func (x *SwishAccountPayload) Reset()

func (*SwishAccountPayload) String added in v0.1.4

func (x *SwishAccountPayload) String() string

type TakeOfferReply added in v0.1.4

type TakeOfferReply struct {
	Trade         *TradeInfo                         `protobuf:"bytes,1,opt,name=trade,proto3" json:"trade,omitempty"`                                      // The new trade.
	FailureReason *AvailabilityResultWithDescription `protobuf:"bytes,2,opt,name=failure_reason,json=failureReason,proto3" json:"failure_reason,omitempty"` // The reason the offer could not be taken.
	// contains filtered or unexported fields
}

func (*TakeOfferReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TakeOfferReply.ProtoReflect.Descriptor instead.

func (*TakeOfferReply) GetFailureReason added in v0.1.5

func (x *TakeOfferReply) GetFailureReason() *AvailabilityResultWithDescription

func (*TakeOfferReply) GetTrade added in v0.1.4

func (x *TakeOfferReply) GetTrade() *TradeInfo

func (*TakeOfferReply) ProtoMessage added in v0.1.4

func (*TakeOfferReply) ProtoMessage()

func (*TakeOfferReply) ProtoReflect added in v0.1.4

func (x *TakeOfferReply) ProtoReflect() protoreflect.Message

func (*TakeOfferReply) Reset added in v0.1.4

func (x *TakeOfferReply) Reset()

func (*TakeOfferReply) String added in v0.1.4

func (x *TakeOfferReply) String() string

type TakeOfferRequest added in v0.1.4

type TakeOfferRequest struct {
	OfferId string `protobuf:"bytes,1,opt,name=offer_id,json=offerId,proto3" json:"offer_id,omitempty"` // The unique identifier of the offer being taken.
	// The unique identifier of the payment account used to take a Bisq v1 protocol offer.
	// This payment_account_id request param is not used when taking a BSQ Swap offer;
	// all BSQ Swap transactions use the daemon's default BsqSwapAccount.
	PaymentAccountId string `protobuf:"bytes,2,opt,name=payment_account_id,json=paymentAccountId,proto3" json:"payment_account_id,omitempty"`
	// The code of the currency (BSQ or BTC) used to pay the taker's Bisq v1 protocol trade fee.
	// This taker_fee_currency_code request param is not used when taking a BSQ Swap offer;
	// all BSQ Swap trade fees are paid in BSQ.
	TakerFeeCurrencyCode string `protobuf:"bytes,3,opt,name=taker_fee_currency_code,json=takerFeeCurrencyCode,proto3" json:"taker_fee_currency_code,omitempty"`
	// The trade's intended BTC amount in satoshis.  Ten million satoshis is represented as 10000000.
	// If set, the takeoffer amount value must be >= offer.min_amount and <= offer.amount.
	// If not set (0 default), the taken offer's (max) amount becomes the intended trade amount.
	Amount uint64 `protobuf:"varint,4,opt,name=amount,proto3" json:"amount,omitempty"`
	// contains filtered or unexported fields
}

func (*TakeOfferRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TakeOfferRequest.ProtoReflect.Descriptor instead.

func (*TakeOfferRequest) GetAmount added in v0.1.10

func (x *TakeOfferRequest) GetAmount() uint64

func (*TakeOfferRequest) GetOfferId added in v0.1.4

func (x *TakeOfferRequest) GetOfferId() string

func (*TakeOfferRequest) GetPaymentAccountId added in v0.1.4

func (x *TakeOfferRequest) GetPaymentAccountId() string

func (*TakeOfferRequest) GetTakerFeeCurrencyCode added in v0.1.4

func (x *TakeOfferRequest) GetTakerFeeCurrencyCode() string

func (*TakeOfferRequest) ProtoMessage added in v0.1.4

func (*TakeOfferRequest) ProtoMessage()

func (*TakeOfferRequest) ProtoReflect added in v0.1.4

func (x *TakeOfferRequest) ProtoReflect() protoreflect.Message

func (*TakeOfferRequest) Reset added in v0.1.4

func (x *TakeOfferRequest) Reset()

func (*TakeOfferRequest) String added in v0.1.4

func (x *TakeOfferRequest) String() string

type TempProposalPayload added in v0.1.4

type TempProposalPayload struct {
	Proposal           *Proposal         `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	OwnerPubKeyEncoded []byte            `protobuf:"bytes,2,opt,name=owner_pub_key_encoded,json=ownerPubKeyEncoded,proto3" json:"owner_pub_key_encoded,omitempty"`
	ExtraData          map[string]string `` /* 176-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*TempProposalPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TempProposalPayload.ProtoReflect.Descriptor instead.

func (*TempProposalPayload) GetExtraData added in v0.1.4

func (x *TempProposalPayload) GetExtraData() map[string]string

func (*TempProposalPayload) GetOwnerPubKeyEncoded added in v0.1.4

func (x *TempProposalPayload) GetOwnerPubKeyEncoded() []byte

func (*TempProposalPayload) GetProposal added in v0.1.4

func (x *TempProposalPayload) GetProposal() *Proposal

func (*TempProposalPayload) ProtoMessage added in v0.1.4

func (*TempProposalPayload) ProtoMessage()

func (*TempProposalPayload) ProtoReflect added in v0.1.4

func (x *TempProposalPayload) ProtoReflect() protoreflect.Message

func (*TempProposalPayload) Reset added in v0.1.4

func (x *TempProposalPayload) Reset()

func (*TempProposalPayload) String added in v0.1.4

func (x *TempProposalPayload) String() string

type TempProposalStore added in v0.1.4

type TempProposalStore struct {
	Items []*ProtectedStorageEntry `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*TempProposalStore) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TempProposalStore.ProtoReflect.Descriptor instead.

func (*TempProposalStore) GetItems added in v0.1.4

func (x *TempProposalStore) GetItems() []*ProtectedStorageEntry

func (*TempProposalStore) ProtoMessage added in v0.1.4

func (*TempProposalStore) ProtoMessage()

func (*TempProposalStore) ProtoReflect added in v0.1.4

func (x *TempProposalStore) ProtoReflect() protoreflect.Message

func (*TempProposalStore) Reset added in v0.1.4

func (x *TempProposalStore) Reset()

func (*TempProposalStore) String added in v0.1.4

func (x *TempProposalStore) String() string

type TikkieAccountPayload added in v0.1.6

type TikkieAccountPayload struct {
	Iban string `protobuf:"bytes,1,opt,name=iban,proto3" json:"iban,omitempty"`
	// contains filtered or unexported fields
}

func (*TikkieAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use TikkieAccountPayload.ProtoReflect.Descriptor instead.

func (*TikkieAccountPayload) GetIban added in v0.1.6

func (x *TikkieAccountPayload) GetIban() string

func (*TikkieAccountPayload) ProtoMessage added in v0.1.6

func (*TikkieAccountPayload) ProtoMessage()

func (*TikkieAccountPayload) ProtoReflect added in v0.1.6

func (x *TikkieAccountPayload) ProtoReflect() protoreflect.Message

func (*TikkieAccountPayload) Reset added in v0.1.6

func (x *TikkieAccountPayload) Reset()

func (*TikkieAccountPayload) String added in v0.1.6

func (x *TikkieAccountPayload) String() string

type Tradable added in v0.1.4

type Tradable struct {

	// Types that are assignable to Message:
	//
	//	*Tradable_OpenOffer
	//	*Tradable_BuyerAsMakerTrade
	//	*Tradable_BuyerAsTakerTrade
	//	*Tradable_SellerAsMakerTrade
	//	*Tradable_SellerAsTakerTrade
	//	*Tradable_BsqSwapBuyerAsMakerTrade
	//	*Tradable_BsqSwapBuyerAsTakerTrade
	//	*Tradable_BsqSwapSellerAsMakerTrade
	//	*Tradable_BsqSwapSellerAsTakerTrade
	Message isTradable_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*Tradable) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Tradable.ProtoReflect.Descriptor instead.

func (*Tradable) GetBsqSwapBuyerAsMakerTrade added in v0.1.6

func (x *Tradable) GetBsqSwapBuyerAsMakerTrade() *BsqSwapBuyerAsMakerTrade

func (*Tradable) GetBsqSwapBuyerAsTakerTrade added in v0.1.6

func (x *Tradable) GetBsqSwapBuyerAsTakerTrade() *BsqSwapBuyerAsTakerTrade

func (*Tradable) GetBsqSwapSellerAsMakerTrade added in v0.1.6

func (x *Tradable) GetBsqSwapSellerAsMakerTrade() *BsqSwapSellerAsMakerTrade

func (*Tradable) GetBsqSwapSellerAsTakerTrade added in v0.1.6

func (x *Tradable) GetBsqSwapSellerAsTakerTrade() *BsqSwapSellerAsTakerTrade

func (*Tradable) GetBuyerAsMakerTrade added in v0.1.4

func (x *Tradable) GetBuyerAsMakerTrade() *BuyerAsMakerTrade

func (*Tradable) GetBuyerAsTakerTrade added in v0.1.4

func (x *Tradable) GetBuyerAsTakerTrade() *BuyerAsTakerTrade

func (*Tradable) GetMessage added in v0.1.4

func (m *Tradable) GetMessage() isTradable_Message

func (*Tradable) GetOpenOffer added in v0.1.4

func (x *Tradable) GetOpenOffer() *OpenOffer

func (*Tradable) GetSellerAsMakerTrade added in v0.1.4

func (x *Tradable) GetSellerAsMakerTrade() *SellerAsMakerTrade

func (*Tradable) GetSellerAsTakerTrade added in v0.1.4

func (x *Tradable) GetSellerAsTakerTrade() *SellerAsTakerTrade

func (*Tradable) ProtoMessage added in v0.1.4

func (*Tradable) ProtoMessage()

func (*Tradable) ProtoReflect added in v0.1.4

func (x *Tradable) ProtoReflect() protoreflect.Message

func (*Tradable) Reset added in v0.1.4

func (x *Tradable) Reset()

func (*Tradable) String added in v0.1.4

func (x *Tradable) String() string

type TradableList added in v0.1.4

type TradableList struct {
	Tradable []*Tradable `protobuf:"bytes,1,rep,name=tradable,proto3" json:"tradable,omitempty"`
	// contains filtered or unexported fields
}

func (*TradableList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TradableList.ProtoReflect.Descriptor instead.

func (*TradableList) GetTradable added in v0.1.4

func (x *TradableList) GetTradable() []*Tradable

func (*TradableList) ProtoMessage added in v0.1.4

func (*TradableList) ProtoMessage()

func (*TradableList) ProtoReflect added in v0.1.4

func (x *TradableList) ProtoReflect() protoreflect.Message

func (*TradableList) Reset added in v0.1.4

func (x *TradableList) Reset()

func (*TradableList) String added in v0.1.4

func (x *TradableList) String() string

type Tradable_BsqSwapBuyerAsMakerTrade added in v0.1.6

type Tradable_BsqSwapBuyerAsMakerTrade struct {
	BsqSwapBuyerAsMakerTrade *BsqSwapBuyerAsMakerTrade `protobuf:"bytes,6,opt,name=bsq_swap_buyer_as_maker_trade,json=bsqSwapBuyerAsMakerTrade,proto3,oneof"`
}

type Tradable_BsqSwapBuyerAsTakerTrade added in v0.1.6

type Tradable_BsqSwapBuyerAsTakerTrade struct {
	BsqSwapBuyerAsTakerTrade *BsqSwapBuyerAsTakerTrade `protobuf:"bytes,7,opt,name=bsq_swap_buyer_as_taker_trade,json=bsqSwapBuyerAsTakerTrade,proto3,oneof"`
}

type Tradable_BsqSwapSellerAsMakerTrade added in v0.1.6

type Tradable_BsqSwapSellerAsMakerTrade struct {
	BsqSwapSellerAsMakerTrade *BsqSwapSellerAsMakerTrade `protobuf:"bytes,8,opt,name=bsq_swap_seller_as_maker_trade,json=bsqSwapSellerAsMakerTrade,proto3,oneof"`
}

type Tradable_BsqSwapSellerAsTakerTrade added in v0.1.6

type Tradable_BsqSwapSellerAsTakerTrade struct {
	BsqSwapSellerAsTakerTrade *BsqSwapSellerAsTakerTrade `protobuf:"bytes,9,opt,name=bsq_swap_seller_as_taker_trade,json=bsqSwapSellerAsTakerTrade,proto3,oneof"`
}

type Tradable_BuyerAsMakerTrade added in v0.1.4

type Tradable_BuyerAsMakerTrade struct {
	BuyerAsMakerTrade *BuyerAsMakerTrade `protobuf:"bytes,2,opt,name=buyer_as_maker_trade,json=buyerAsMakerTrade,proto3,oneof"`
}

type Tradable_BuyerAsTakerTrade added in v0.1.4

type Tradable_BuyerAsTakerTrade struct {
	BuyerAsTakerTrade *BuyerAsTakerTrade `protobuf:"bytes,3,opt,name=buyer_as_taker_trade,json=buyerAsTakerTrade,proto3,oneof"`
}

type Tradable_OpenOffer added in v0.1.4

type Tradable_OpenOffer struct {
	OpenOffer *OpenOffer `protobuf:"bytes,1,opt,name=open_offer,json=openOffer,proto3,oneof"`
}

type Tradable_SellerAsMakerTrade added in v0.1.4

type Tradable_SellerAsMakerTrade struct {
	SellerAsMakerTrade *SellerAsMakerTrade `protobuf:"bytes,4,opt,name=seller_as_maker_trade,json=sellerAsMakerTrade,proto3,oneof"`
}

type Tradable_SellerAsTakerTrade added in v0.1.4

type Tradable_SellerAsTakerTrade struct {
	SellerAsTakerTrade *SellerAsTakerTrade `protobuf:"bytes,5,opt,name=seller_as_taker_trade,json=sellerAsTakerTrade,proto3,oneof"`
}

type Trade added in v0.1.4

type Trade struct {
	Offer                    *Offer                 `protobuf:"bytes,1,opt,name=offer,proto3" json:"offer,omitempty"`
	ProcessModel             *ProcessModel          `protobuf:"bytes,2,opt,name=process_model,json=processModel,proto3" json:"process_model,omitempty"`
	TakerFeeTxId             string                 `protobuf:"bytes,3,opt,name=taker_fee_tx_id,json=takerFeeTxId,proto3" json:"taker_fee_tx_id,omitempty"`
	DepositTxId              string                 `protobuf:"bytes,4,opt,name=deposit_tx_id,json=depositTxId,proto3" json:"deposit_tx_id,omitempty"`
	PayoutTxId               string                 `protobuf:"bytes,5,opt,name=payout_tx_id,json=payoutTxId,proto3" json:"payout_tx_id,omitempty"`
	TradeAmountAsLong        int64                  `protobuf:"varint,6,opt,name=trade_amount_as_long,json=tradeAmountAsLong,proto3" json:"trade_amount_as_long,omitempty"`
	TxFeeAsLong              int64                  `protobuf:"varint,7,opt,name=tx_fee_as_long,json=txFeeAsLong,proto3" json:"tx_fee_as_long,omitempty"`
	TakerFeeAsLong           int64                  `protobuf:"varint,8,opt,name=taker_fee_as_long,json=takerFeeAsLong,proto3" json:"taker_fee_as_long,omitempty"`
	TakeOfferDate            int64                  `protobuf:"varint,9,opt,name=take_offer_date,json=takeOfferDate,proto3" json:"take_offer_date,omitempty"`
	IsCurrencyForTakerFeeBtc bool                   `` /* 143-byte string literal not displayed */
	TradePrice               int64                  `protobuf:"varint,11,opt,name=trade_price,json=tradePrice,proto3" json:"trade_price,omitempty"`
	TradingPeerNodeAddress   *NodeAddress           `` /* 132-byte string literal not displayed */
	State                    Trade_State            `protobuf:"varint,13,opt,name=state,proto3,enum=io.bisq.protobuffer.Trade_State" json:"state,omitempty"`
	DisputeState             Trade_DisputeState     `` /* 143-byte string literal not displayed */
	TradePeriodState         Trade_TradePeriodState `` /* 161-byte string literal not displayed */
	Contract                 *Contract              `protobuf:"bytes,16,opt,name=contract,proto3" json:"contract,omitempty"`
	ContractAsJson           string                 `protobuf:"bytes,17,opt,name=contract_as_json,json=contractAsJson,proto3" json:"contract_as_json,omitempty"`
	ContractHash             []byte                 `protobuf:"bytes,18,opt,name=contract_hash,json=contractHash,proto3" json:"contract_hash,omitempty"`
	TakerContractSignature   string                 `` /* 130-byte string literal not displayed */
	MakerContractSignature   string                 `` /* 130-byte string literal not displayed */
	ArbitratorNodeAddress    *NodeAddress           `` /* 127-byte string literal not displayed */
	MediatorNodeAddress      *NodeAddress           `protobuf:"bytes,22,opt,name=mediator_node_address,json=mediatorNodeAddress,proto3" json:"mediator_node_address,omitempty"`
	ArbitratorBtcPubKey      []byte                 `protobuf:"bytes,23,opt,name=arbitrator_btc_pub_key,json=arbitratorBtcPubKey,proto3" json:"arbitrator_btc_pub_key,omitempty"`
	TakerPaymentAccountId    string                 `` /* 129-byte string literal not displayed */
	ErrorMessage             string                 `protobuf:"bytes,25,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`
	ArbitratorPubKeyRing     *PubKeyRing            `` /* 126-byte string literal not displayed */
	MediatorPubKeyRing       *PubKeyRing            `protobuf:"bytes,27,opt,name=mediator_pub_key_ring,json=mediatorPubKeyRing,proto3" json:"mediator_pub_key_ring,omitempty"`
	CounterCurrencyTxId      string                 `protobuf:"bytes,28,opt,name=counter_currency_tx_id,json=counterCurrencyTxId,proto3" json:"counter_currency_tx_id,omitempty"`
	ChatMessage              []*ChatMessage         `protobuf:"bytes,29,rep,name=chat_message,json=chatMessage,proto3" json:"chat_message,omitempty"`
	MediationResultState     MediationResultState   `` /* 171-byte string literal not displayed */
	LockTime                 int64                  `protobuf:"varint,31,opt,name=lock_time,json=lockTime,proto3" json:"lock_time,omitempty"`
	DelayedPayoutTxBytes     []byte                 `` /* 126-byte string literal not displayed */
	RefundAgentNodeAddress   *NodeAddress           `` /* 132-byte string literal not displayed */
	RefundAgentPubKeyRing    *PubKeyRing            `` /* 131-byte string literal not displayed */
	RefundResultState        RefundResultState      `` /* 159-byte string literal not displayed */
	// Deprecated: Marked as deprecated in pb.proto.
	LastRefreshRequestDate            int64  ``                                                                                                                         /* 133-byte string literal not displayed */
	CounterCurrencyExtraData          string ``                                                                                                                         /* 138-byte string literal not displayed */
	AssetTxProofResult                string `protobuf:"bytes,38,opt,name=asset_tx_proof_result,json=assetTxProofResult,proto3" json:"asset_tx_proof_result,omitempty"` // name of AssetTxProofResult enum
	Uid                               string `protobuf:"bytes,39,opt,name=uid,proto3" json:"uid,omitempty"`
	SellerConfirmedPaymentReceiptDate int64  `protobuf:"varint,40,opt,name=sellerConfirmedPaymentReceiptDate,proto3" json:"sellerConfirmedPaymentReceiptDate,omitempty"`
	// contains filtered or unexported fields
}

func (*Trade) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Trade.ProtoReflect.Descriptor instead.

func (*Trade) GetArbitratorBtcPubKey added in v0.1.4

func (x *Trade) GetArbitratorBtcPubKey() []byte

func (*Trade) GetArbitratorNodeAddress added in v0.1.4

func (x *Trade) GetArbitratorNodeAddress() *NodeAddress

func (*Trade) GetArbitratorPubKeyRing added in v0.1.4

func (x *Trade) GetArbitratorPubKeyRing() *PubKeyRing

func (*Trade) GetAssetTxProofResult added in v0.1.4

func (x *Trade) GetAssetTxProofResult() string

func (*Trade) GetChatMessage added in v0.1.4

func (x *Trade) GetChatMessage() []*ChatMessage

func (*Trade) GetContract added in v0.1.4

func (x *Trade) GetContract() *Contract

func (*Trade) GetContractAsJson added in v0.1.4

func (x *Trade) GetContractAsJson() string

func (*Trade) GetContractHash added in v0.1.4

func (x *Trade) GetContractHash() []byte

func (*Trade) GetCounterCurrencyExtraData added in v0.1.4

func (x *Trade) GetCounterCurrencyExtraData() string

func (*Trade) GetCounterCurrencyTxId added in v0.1.4

func (x *Trade) GetCounterCurrencyTxId() string

func (*Trade) GetDelayedPayoutTxBytes added in v0.1.4

func (x *Trade) GetDelayedPayoutTxBytes() []byte

func (*Trade) GetDepositTxId added in v0.1.4

func (x *Trade) GetDepositTxId() string

func (*Trade) GetDisputeState added in v0.1.4

func (x *Trade) GetDisputeState() Trade_DisputeState

func (*Trade) GetErrorMessage added in v0.1.4

func (x *Trade) GetErrorMessage() string

func (*Trade) GetIsCurrencyForTakerFeeBtc added in v0.1.4

func (x *Trade) GetIsCurrencyForTakerFeeBtc() bool

func (*Trade) GetLastRefreshRequestDate deprecated added in v0.1.4

func (x *Trade) GetLastRefreshRequestDate() int64

Deprecated: Marked as deprecated in pb.proto.

func (*Trade) GetLockTime added in v0.1.4

func (x *Trade) GetLockTime() int64

func (*Trade) GetMakerContractSignature added in v0.1.4

func (x *Trade) GetMakerContractSignature() string

func (*Trade) GetMediationResultState added in v0.1.4

func (x *Trade) GetMediationResultState() MediationResultState

func (*Trade) GetMediatorNodeAddress added in v0.1.4

func (x *Trade) GetMediatorNodeAddress() *NodeAddress

func (*Trade) GetMediatorPubKeyRing added in v0.1.4

func (x *Trade) GetMediatorPubKeyRing() *PubKeyRing

func (*Trade) GetOffer added in v0.1.4

func (x *Trade) GetOffer() *Offer

func (*Trade) GetPayoutTxId added in v0.1.4

func (x *Trade) GetPayoutTxId() string

func (*Trade) GetProcessModel added in v0.1.4

func (x *Trade) GetProcessModel() *ProcessModel

func (*Trade) GetRefundAgentNodeAddress added in v0.1.4

func (x *Trade) GetRefundAgentNodeAddress() *NodeAddress

func (*Trade) GetRefundAgentPubKeyRing added in v0.1.4

func (x *Trade) GetRefundAgentPubKeyRing() *PubKeyRing

func (*Trade) GetRefundResultState added in v0.1.4

func (x *Trade) GetRefundResultState() RefundResultState

func (*Trade) GetSellerConfirmedPaymentReceiptDate added in v0.1.14

func (x *Trade) GetSellerConfirmedPaymentReceiptDate() int64

func (*Trade) GetState added in v0.1.4

func (x *Trade) GetState() Trade_State

func (*Trade) GetTakeOfferDate added in v0.1.4

func (x *Trade) GetTakeOfferDate() int64

func (*Trade) GetTakerContractSignature added in v0.1.4

func (x *Trade) GetTakerContractSignature() string

func (*Trade) GetTakerFeeAsLong added in v0.1.4

func (x *Trade) GetTakerFeeAsLong() int64

func (*Trade) GetTakerFeeTxId added in v0.1.4

func (x *Trade) GetTakerFeeTxId() string

func (*Trade) GetTakerPaymentAccountId added in v0.1.4

func (x *Trade) GetTakerPaymentAccountId() string

func (*Trade) GetTradeAmountAsLong added in v0.1.4

func (x *Trade) GetTradeAmountAsLong() int64

func (*Trade) GetTradePeriodState added in v0.1.4

func (x *Trade) GetTradePeriodState() Trade_TradePeriodState

func (*Trade) GetTradePrice added in v0.1.4

func (x *Trade) GetTradePrice() int64

func (*Trade) GetTradingPeerNodeAddress added in v0.1.4

func (x *Trade) GetTradingPeerNodeAddress() *NodeAddress

func (*Trade) GetTxFeeAsLong added in v0.1.4

func (x *Trade) GetTxFeeAsLong() int64

func (*Trade) GetUid added in v0.1.4

func (x *Trade) GetUid() string

func (*Trade) ProtoMessage added in v0.1.4

func (*Trade) ProtoMessage()

func (*Trade) ProtoReflect added in v0.1.4

func (x *Trade) ProtoReflect() protoreflect.Message

func (*Trade) Reset added in v0.1.4

func (x *Trade) Reset()

func (*Trade) String added in v0.1.4

func (x *Trade) String() string

type TradeCurrency added in v0.1.4

type TradeCurrency struct {
	Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// Types that are assignable to Message:
	//
	//	*TradeCurrency_CryptoCurrency
	//	*TradeCurrency_FiatCurrency
	Message isTradeCurrency_Message `protobuf_oneof:"message"`
	// contains filtered or unexported fields
}

func (*TradeCurrency) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TradeCurrency.ProtoReflect.Descriptor instead.

func (*TradeCurrency) GetCode added in v0.1.4

func (x *TradeCurrency) GetCode() string

func (*TradeCurrency) GetCryptoCurrency added in v0.1.4

func (x *TradeCurrency) GetCryptoCurrency() *CryptoCurrency

func (*TradeCurrency) GetFiatCurrency added in v0.1.4

func (x *TradeCurrency) GetFiatCurrency() *FiatCurrency

func (*TradeCurrency) GetMessage added in v0.1.4

func (m *TradeCurrency) GetMessage() isTradeCurrency_Message

func (*TradeCurrency) GetName added in v0.1.4

func (x *TradeCurrency) GetName() string

func (*TradeCurrency) ProtoMessage added in v0.1.4

func (*TradeCurrency) ProtoMessage()

func (*TradeCurrency) ProtoReflect added in v0.1.4

func (x *TradeCurrency) ProtoReflect() protoreflect.Message

func (*TradeCurrency) Reset added in v0.1.4

func (x *TradeCurrency) Reset()

func (*TradeCurrency) String added in v0.1.4

func (x *TradeCurrency) String() string

type TradeCurrency_CryptoCurrency added in v0.1.4

type TradeCurrency_CryptoCurrency struct {
	CryptoCurrency *CryptoCurrency `protobuf:"bytes,3,opt,name=crypto_currency,json=cryptoCurrency,proto3,oneof"`
}

type TradeCurrency_FiatCurrency added in v0.1.4

type TradeCurrency_FiatCurrency struct {
	FiatCurrency *FiatCurrency `protobuf:"bytes,4,opt,name=fiat_currency,json=fiatCurrency,proto3,oneof"`
}

type TradeInfo added in v0.1.4

type TradeInfo struct {

	// The original offer.
	Offer *OfferInfo `protobuf:"bytes,1,opt,name=offer,proto3" json:"offer,omitempty"`
	// The unique identifier of the trade.
	TradeId string `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	// An abbreviation of unique identifier of the trade.  It cannot be used as parameter to rpc methods GetTrade,
	// ConfirmPaymentStarted, CloseTrade, etc., but it may be useful while interacting with support or trading peers.
	ShortId string `protobuf:"bytes,3,opt,name=short_id,json=shortId,proto3" json:"short_id,omitempty"`
	// The creation date of the trade as a long: the number of milliseconds that have elapsed since January 1, 1970.
	Date uint64 `protobuf:"varint,4,opt,name=date,proto3" json:"date,omitempty"`
	// A brief description of the user's role in the trade, i.e., an offer maker or taker, a BTC buyer or seller.
	Role string `protobuf:"bytes,5,opt,name=role,proto3" json:"role,omitempty"`
	// Whether the offer taker's Bisq trade fee was paid in BTC or not (BSQ).
	IsCurrencyForTakerFeeBtc bool `` /* 142-byte string literal not displayed */
	// The bitcoin miner transaction fee in satoshis.
	TxFeeAsLong uint64 `protobuf:"varint,7,opt,name=tx_fee_as_long,json=txFeeAsLong,proto3" json:"tx_fee_as_long,omitempty"`
	// The offer taker's Bisq trade fee in satoshis.
	TakerFeeAsLong uint64 `protobuf:"varint,8,opt,name=taker_fee_as_long,json=takerFeeAsLong,proto3" json:"taker_fee_as_long,omitempty"`
	// The bitcoin transaction id for offer taker's Bisq trade fee.
	TakerFeeTxId string `protobuf:"bytes,9,opt,name=taker_fee_tx_id,json=takerFeeTxId,proto3" json:"taker_fee_tx_id,omitempty"`
	// The bitcoin transaction id for the offer taker's security deposit.
	DepositTxId string `protobuf:"bytes,10,opt,name=deposit_tx_id,json=depositTxId,proto3" json:"deposit_tx_id,omitempty"`
	// The bitcoin transaction id for trade payout.
	PayoutTxId string `protobuf:"bytes,11,opt,name=payout_tx_id,json=payoutTxId,proto3" json:"payout_tx_id,omitempty"`
	// The trade payout amount in satoshis.
	TradeAmountAsLong uint64 `protobuf:"varint,12,opt,name=trade_amount_as_long,json=tradeAmountAsLong,proto3" json:"trade_amount_as_long,omitempty"`
	// For fiat trades:  the fiat price for 1 BTC to 4 decimal places, e.g., 41000.50 EUR is "41000.5000".
	// For altcoin trades:  the altcoin price for 1 BTC to 8 decimal places, e.g., 0.5 BTC is "0.50000000".
	TradePrice string `protobuf:"bytes,13,opt,name=trade_price,json=tradePrice,proto3" json:"trade_price,omitempty"`
	// The trading peer's node address.
	TradingPeerNodeAddress string `` /* 132-byte string literal not displayed */
	// The internal state of the trade. (TODO bisq-grpc-api-doc -> include Trade.State in API Reference.)
	State string `protobuf:"bytes,15,opt,name=state,proto3" json:"state,omitempty"`
	// The internal phase of the trade. (TODO bisq-grpc-api-doc -> include Trade.Phase in API Reference.)
	Phase string `protobuf:"bytes,16,opt,name=phase,proto3" json:"phase,omitempty"`
	// How much of the trade protocol's time limit has elapsed. (TODO bisq-grpc-api-doc -> include Trade.TradePeriodState in API Reference.)
	TradePeriodState string `protobuf:"bytes,17,opt,name=trade_period_state,json=tradePeriodState,proto3" json:"trade_period_state,omitempty"`
	// Whether the trade's security deposit bitcoin transaction has been broadcast, or not.
	IsDepositPublished bool `protobuf:"varint,18,opt,name=is_deposit_published,json=isDepositPublished,proto3" json:"is_deposit_published,omitempty"`
	// Whether the trade's security deposit bitcoin transaction has been confirmed at least once, or not.
	IsDepositConfirmed bool `protobuf:"varint,19,opt,name=is_deposit_confirmed,json=isDepositConfirmed,proto3" json:"is_deposit_confirmed,omitempty"`
	// Whether the trade's 'start payment' message has been sent by the BTC buyer, or not.
	IsPaymentStartedMessageSent bool `` /* 150-byte string literal not displayed */
	// Whether the trade's 'payment received' message has been sent by the BTC seller, or not.
	IsPaymentReceivedMessageSent bool `` /* 153-byte string literal not displayed */
	// Whether the trade's payout bitcoin transaction has been confirmed at least once, or not.
	IsPayoutPublished bool `protobuf:"varint,22,opt,name=is_payout_published,json=isPayoutPublished,proto3" json:"is_payout_published,omitempty"`
	// Whether the trade's payout has been completed and the trade is now closed, or not.
	IsCompleted bool `protobuf:"varint,23,opt,name=is_completed,json=isCompleted,proto3" json:"is_completed,omitempty"`
	// The entire trade contract as a json string.
	ContractAsJson string `protobuf:"bytes,24,opt,name=contract_as_json,json=contractAsJson,proto3" json:"contract_as_json,omitempty"`
	// The summary of the trade contract.
	Contract *ContractInfo `protobuf:"bytes,25,opt,name=contract,proto3" json:"contract,omitempty"`
	// The volume of currency traded for BTC.
	TradeVolume string `protobuf:"bytes,26,opt,name=trade_volume,json=tradeVolume,proto3" json:"trade_volume,omitempty"`
	// The details specific to the BSQ swap trade.  If the trade is not a BSQ swap, this field should be ignored.
	BsqSwapTradeInfo *BsqSwapTradeInfo `protobuf:"bytes,28,opt,name=bsq_swap_trade_info,json=bsqSwapTradeInfo,proto3" json:"bsq_swap_trade_info,omitempty"`
	// Needed by open/closed/failed trade list items.
	ClosingStatus string `protobuf:"bytes,29,opt,name=closing_status,json=closingStatus,proto3" json:"closing_status,omitempty"`
	// contains filtered or unexported fields
}

TODO Modify bisq-grpc-api-doc to include core Trade enums in API Reference.

func (*TradeInfo) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TradeInfo.ProtoReflect.Descriptor instead.

func (*TradeInfo) GetBsqSwapTradeInfo added in v0.1.9

func (x *TradeInfo) GetBsqSwapTradeInfo() *BsqSwapTradeInfo

func (*TradeInfo) GetClosingStatus added in v0.1.9

func (x *TradeInfo) GetClosingStatus() string

func (*TradeInfo) GetContract added in v0.1.5

func (x *TradeInfo) GetContract() *ContractInfo

func (*TradeInfo) GetContractAsJson added in v0.1.4

func (x *TradeInfo) GetContractAsJson() string

func (*TradeInfo) GetDate added in v0.1.4

func (x *TradeInfo) GetDate() uint64

func (*TradeInfo) GetDepositTxId added in v0.1.4

func (x *TradeInfo) GetDepositTxId() string

func (*TradeInfo) GetIsCompleted added in v0.1.9

func (x *TradeInfo) GetIsCompleted() bool

func (*TradeInfo) GetIsCurrencyForTakerFeeBtc added in v0.1.4

func (x *TradeInfo) GetIsCurrencyForTakerFeeBtc() bool

func (*TradeInfo) GetIsDepositConfirmed added in v0.1.4

func (x *TradeInfo) GetIsDepositConfirmed() bool

func (*TradeInfo) GetIsDepositPublished added in v0.1.4

func (x *TradeInfo) GetIsDepositPublished() bool

func (*TradeInfo) GetIsPaymentReceivedMessageSent added in v0.1.9

func (x *TradeInfo) GetIsPaymentReceivedMessageSent() bool

func (*TradeInfo) GetIsPaymentStartedMessageSent added in v0.1.9

func (x *TradeInfo) GetIsPaymentStartedMessageSent() bool

func (*TradeInfo) GetIsPayoutPublished added in v0.1.4

func (x *TradeInfo) GetIsPayoutPublished() bool

func (*TradeInfo) GetOffer added in v0.1.4

func (x *TradeInfo) GetOffer() *OfferInfo

func (*TradeInfo) GetPayoutTxId added in v0.1.4

func (x *TradeInfo) GetPayoutTxId() string

func (*TradeInfo) GetPhase added in v0.1.4

func (x *TradeInfo) GetPhase() string

func (*TradeInfo) GetRole added in v0.1.4

func (x *TradeInfo) GetRole() string

func (*TradeInfo) GetShortId added in v0.1.4

func (x *TradeInfo) GetShortId() string

func (*TradeInfo) GetState added in v0.1.4

func (x *TradeInfo) GetState() string

func (*TradeInfo) GetTakerFeeAsLong added in v0.1.4

func (x *TradeInfo) GetTakerFeeAsLong() uint64

func (*TradeInfo) GetTakerFeeTxId added in v0.1.4

func (x *TradeInfo) GetTakerFeeTxId() string

func (*TradeInfo) GetTradeAmountAsLong added in v0.1.4

func (x *TradeInfo) GetTradeAmountAsLong() uint64

func (*TradeInfo) GetTradeId added in v0.1.4

func (x *TradeInfo) GetTradeId() string

func (*TradeInfo) GetTradePeriodState added in v0.1.4

func (x *TradeInfo) GetTradePeriodState() string

func (*TradeInfo) GetTradePrice added in v0.1.4

func (x *TradeInfo) GetTradePrice() string

func (*TradeInfo) GetTradeVolume added in v0.1.6

func (x *TradeInfo) GetTradeVolume() string

func (*TradeInfo) GetTradingPeerNodeAddress added in v0.1.4

func (x *TradeInfo) GetTradingPeerNodeAddress() string

func (*TradeInfo) GetTxFeeAsLong added in v0.1.4

func (x *TradeInfo) GetTxFeeAsLong() uint64

func (*TradeInfo) ProtoMessage added in v0.1.4

func (*TradeInfo) ProtoMessage()

func (*TradeInfo) ProtoReflect added in v0.1.4

func (x *TradeInfo) ProtoReflect() protoreflect.Message

func (*TradeInfo) Reset added in v0.1.4

func (x *TradeInfo) Reset()

func (*TradeInfo) String added in v0.1.4

func (x *TradeInfo) String() string

type TradeStatistics2 added in v0.1.4

type TradeStatistics2 struct {

	// Deprecated: Marked as deprecated in pb.proto.
	BaseCurrency string `protobuf:"bytes,1,opt,name=base_currency,json=baseCurrency,proto3" json:"base_currency,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	CounterCurrency string `protobuf:"bytes,2,opt,name=counter_currency,json=counterCurrency,proto3" json:"counter_currency,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	Direction OfferDirection `protobuf:"varint,3,opt,name=direction,proto3,enum=io.bisq.protobuffer.OfferDirection" json:"direction,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	TradePrice int64 `protobuf:"varint,4,opt,name=trade_price,json=tradePrice,proto3" json:"trade_price,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	TradeAmount int64 `protobuf:"varint,5,opt,name=trade_amount,json=tradeAmount,proto3" json:"trade_amount,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	TradeDate int64 `protobuf:"varint,6,opt,name=trade_date,json=tradeDate,proto3" json:"trade_date,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	PaymentMethodId string `protobuf:"bytes,7,opt,name=payment_method_id,json=paymentMethodId,proto3" json:"payment_method_id,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	OfferDate int64 `protobuf:"varint,8,opt,name=offer_date,json=offerDate,proto3" json:"offer_date,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	OfferUseMarketBasedPrice bool `` /* 140-byte string literal not displayed */
	// Deprecated: Marked as deprecated in pb.proto.
	OfferMarketPriceMargin float64 `` /* 134-byte string literal not displayed */
	// Deprecated: Marked as deprecated in pb.proto.
	OfferAmount int64 `protobuf:"varint,11,opt,name=offer_amount,json=offerAmount,proto3" json:"offer_amount,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	OfferMinAmount int64 `protobuf:"varint,12,opt,name=offer_min_amount,json=offerMinAmount,proto3" json:"offer_min_amount,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	OfferId string `protobuf:"bytes,13,opt,name=offer_id,json=offerId,proto3" json:"offer_id,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	DepositTxId string `protobuf:"bytes,14,opt,name=deposit_tx_id,json=depositTxId,proto3" json:"deposit_tx_id,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	Hash []byte `protobuf:"bytes,15,opt,name=hash,proto3" json:"hash,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	ExtraData map[string]string `` /* 177-byte string literal not displayed */
	// contains filtered or unexported fields
}

Deprecated

func (*TradeStatistics2) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TradeStatistics2.ProtoReflect.Descriptor instead.

func (*TradeStatistics2) GetBaseCurrency deprecated added in v0.1.4

func (x *TradeStatistics2) GetBaseCurrency() string

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetCounterCurrency deprecated added in v0.1.4

func (x *TradeStatistics2) GetCounterCurrency() string

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetDepositTxId deprecated added in v0.1.4

func (x *TradeStatistics2) GetDepositTxId() string

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetDirection deprecated added in v0.1.4

func (x *TradeStatistics2) GetDirection() OfferDirection

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetExtraData deprecated added in v0.1.4

func (x *TradeStatistics2) GetExtraData() map[string]string

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetHash deprecated added in v0.1.4

func (x *TradeStatistics2) GetHash() []byte

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetOfferAmount deprecated added in v0.1.4

func (x *TradeStatistics2) GetOfferAmount() int64

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetOfferDate deprecated added in v0.1.4

func (x *TradeStatistics2) GetOfferDate() int64

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetOfferId deprecated added in v0.1.4

func (x *TradeStatistics2) GetOfferId() string

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetOfferMarketPriceMargin deprecated added in v0.1.4

func (x *TradeStatistics2) GetOfferMarketPriceMargin() float64

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetOfferMinAmount deprecated added in v0.1.4

func (x *TradeStatistics2) GetOfferMinAmount() int64

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetOfferUseMarketBasedPrice deprecated added in v0.1.4

func (x *TradeStatistics2) GetOfferUseMarketBasedPrice() bool

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetPaymentMethodId deprecated added in v0.1.4

func (x *TradeStatistics2) GetPaymentMethodId() string

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetTradeAmount deprecated added in v0.1.4

func (x *TradeStatistics2) GetTradeAmount() int64

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetTradeDate deprecated added in v0.1.4

func (x *TradeStatistics2) GetTradeDate() int64

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) GetTradePrice deprecated added in v0.1.4

func (x *TradeStatistics2) GetTradePrice() int64

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2) ProtoMessage added in v0.1.4

func (*TradeStatistics2) ProtoMessage()

func (*TradeStatistics2) ProtoReflect added in v0.1.4

func (x *TradeStatistics2) ProtoReflect() protoreflect.Message

func (*TradeStatistics2) Reset added in v0.1.4

func (x *TradeStatistics2) Reset()

func (*TradeStatistics2) String added in v0.1.4

func (x *TradeStatistics2) String() string

type TradeStatistics2Store added in v0.1.4

type TradeStatistics2Store struct {

	// Deprecated: Marked as deprecated in pb.proto.
	Items []*TradeStatistics2 `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

Deprecated. Not used anymore. We use a list not a hash map to save disc space. The hash can be calculated from the payload anyway.

func (*TradeStatistics2Store) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TradeStatistics2Store.ProtoReflect.Descriptor instead.

func (*TradeStatistics2Store) GetItems deprecated added in v0.1.4

func (x *TradeStatistics2Store) GetItems() []*TradeStatistics2

Deprecated: Marked as deprecated in pb.proto.

func (*TradeStatistics2Store) ProtoMessage added in v0.1.4

func (*TradeStatistics2Store) ProtoMessage()

func (*TradeStatistics2Store) ProtoReflect added in v0.1.4

func (x *TradeStatistics2Store) ProtoReflect() protoreflect.Message

func (*TradeStatistics2Store) Reset added in v0.1.4

func (x *TradeStatistics2Store) Reset()

func (*TradeStatistics2Store) String added in v0.1.4

func (x *TradeStatistics2Store) String() string

type TradeStatistics3 added in v0.1.4

type TradeStatistics3 struct {
	Currency      string            `protobuf:"bytes,1,opt,name=currency,proto3" json:"currency,omitempty"`
	Price         int64             `protobuf:"varint,2,opt,name=price,proto3" json:"price,omitempty"`
	Amount        int64             `protobuf:"varint,3,opt,name=amount,proto3" json:"amount,omitempty"`
	PaymentMethod string            `protobuf:"bytes,4,opt,name=payment_method,json=paymentMethod,proto3" json:"payment_method,omitempty"`
	Date          int64             `protobuf:"varint,5,opt,name=date,proto3" json:"date,omitempty"`
	Mediator      string            `protobuf:"bytes,6,opt,name=mediator,proto3" json:"mediator,omitempty"`
	RefundAgent   string            `protobuf:"bytes,7,opt,name=refund_agent,json=refundAgent,proto3" json:"refund_agent,omitempty"`
	Hash          []byte            `protobuf:"bytes,8,opt,name=hash,proto3" json:"hash,omitempty"`
	ExtraData     map[string]string `` /* 176-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*TradeStatistics3) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TradeStatistics3.ProtoReflect.Descriptor instead.

func (*TradeStatistics3) GetAmount added in v0.1.4

func (x *TradeStatistics3) GetAmount() int64

func (*TradeStatistics3) GetCurrency added in v0.1.4

func (x *TradeStatistics3) GetCurrency() string

func (*TradeStatistics3) GetDate added in v0.1.4

func (x *TradeStatistics3) GetDate() int64

func (*TradeStatistics3) GetExtraData added in v0.1.4

func (x *TradeStatistics3) GetExtraData() map[string]string

func (*TradeStatistics3) GetHash added in v0.1.4

func (x *TradeStatistics3) GetHash() []byte

func (*TradeStatistics3) GetMediator added in v0.1.4

func (x *TradeStatistics3) GetMediator() string

func (*TradeStatistics3) GetPaymentMethod added in v0.1.4

func (x *TradeStatistics3) GetPaymentMethod() string

func (*TradeStatistics3) GetPrice added in v0.1.4

func (x *TradeStatistics3) GetPrice() int64

func (*TradeStatistics3) GetRefundAgent added in v0.1.4

func (x *TradeStatistics3) GetRefundAgent() string

func (*TradeStatistics3) ProtoMessage added in v0.1.4

func (*TradeStatistics3) ProtoMessage()

func (*TradeStatistics3) ProtoReflect added in v0.1.4

func (x *TradeStatistics3) ProtoReflect() protoreflect.Message

func (*TradeStatistics3) Reset added in v0.1.4

func (x *TradeStatistics3) Reset()

func (*TradeStatistics3) String added in v0.1.4

func (x *TradeStatistics3) String() string

type TradeStatistics3Store added in v0.1.4

type TradeStatistics3Store struct {
	Items []*TradeStatistics3 `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*TradeStatistics3Store) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TradeStatistics3Store.ProtoReflect.Descriptor instead.

func (*TradeStatistics3Store) GetItems added in v0.1.4

func (x *TradeStatistics3Store) GetItems() []*TradeStatistics3

func (*TradeStatistics3Store) ProtoMessage added in v0.1.4

func (*TradeStatistics3Store) ProtoMessage()

func (*TradeStatistics3Store) ProtoReflect added in v0.1.4

func (x *TradeStatistics3Store) ProtoReflect() protoreflect.Message

func (*TradeStatistics3Store) Reset added in v0.1.4

func (x *TradeStatistics3Store) Reset()

func (*TradeStatistics3Store) String added in v0.1.4

func (x *TradeStatistics3Store) String() string

type Trade_DisputeState added in v0.1.4

type Trade_DisputeState int32
const (
	Trade_PB_ERROR_DISPUTE_STATE Trade_DisputeState = 0
	Trade_NO_DISPUTE             Trade_DisputeState = 1
	// Arbitration requested.  We use the enum name for resolving enums so it cannot be renamed.
	Trade_DISPUTE_REQUESTED Trade_DisputeState = 2
	// Arbitration requested.  We use the enum name for resolving enums so it cannot be renamed.
	Trade_DISPUTE_STARTED_BY_PEER Trade_DisputeState = 3
	// Arbitration requested.  We use the enum name for resolving enums so it cannot be renamed
	Trade_DISPUTE_CLOSED                 Trade_DisputeState = 4
	Trade_MEDIATION_REQUESTED            Trade_DisputeState = 5
	Trade_MEDIATION_STARTED_BY_PEER      Trade_DisputeState = 6
	Trade_MEDIATION_CLOSED               Trade_DisputeState = 7
	Trade_REFUND_REQUESTED               Trade_DisputeState = 8
	Trade_REFUND_REQUEST_STARTED_BY_PEER Trade_DisputeState = 9
	Trade_REFUND_REQUEST_CLOSED          Trade_DisputeState = 10
)

func (Trade_DisputeState) Descriptor added in v0.1.4

func (Trade_DisputeState) Enum added in v0.1.4

func (Trade_DisputeState) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use Trade_DisputeState.Descriptor instead.

func (Trade_DisputeState) Number added in v0.1.4

func (Trade_DisputeState) String added in v0.1.4

func (x Trade_DisputeState) String() string

func (Trade_DisputeState) Type added in v0.1.4

type Trade_Phase added in v0.1.4

type Trade_Phase int32
const (
	Trade_PB_ERROR_PHASE      Trade_Phase = 0
	Trade_INIT                Trade_Phase = 1
	Trade_TAKER_FEE_PUBLISHED Trade_Phase = 2
	Trade_DEPOSIT_PUBLISHED   Trade_Phase = 3
	Trade_DEPOSIT_CONFIRMED   Trade_Phase = 4
	Trade_FIAT_SENT           Trade_Phase = 5
	Trade_FIAT_RECEIVED       Trade_Phase = 6
	Trade_PAYOUT_PUBLISHED    Trade_Phase = 7
	Trade_WITHDRAWN           Trade_Phase = 8
)

func (Trade_Phase) Descriptor added in v0.1.4

func (Trade_Phase) Enum added in v0.1.4

func (x Trade_Phase) Enum() *Trade_Phase

func (Trade_Phase) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use Trade_Phase.Descriptor instead.

func (Trade_Phase) Number added in v0.1.4

func (x Trade_Phase) Number() protoreflect.EnumNumber

func (Trade_Phase) String added in v0.1.4

func (x Trade_Phase) String() string

func (Trade_Phase) Type added in v0.1.4

type Trade_State added in v0.1.4

type Trade_State int32
const (
	Trade_PB_ERROR_STATE                                     Trade_State = 0
	Trade_PREPARATION                                        Trade_State = 1
	Trade_TAKER_PUBLISHED_TAKER_FEE_TX                       Trade_State = 2
	Trade_MAKER_SENT_PUBLISH_DEPOSIT_TX_REQUEST              Trade_State = 3
	Trade_MAKER_SAW_ARRIVED_PUBLISH_DEPOSIT_TX_REQUEST       Trade_State = 4
	Trade_MAKER_STORED_IN_MAILBOX_PUBLISH_DEPOSIT_TX_REQUEST Trade_State = 5
	Trade_MAKER_SEND_FAILED_PUBLISH_DEPOSIT_TX_REQUEST       Trade_State = 6
	Trade_TAKER_RECEIVED_PUBLISH_DEPOSIT_TX_REQUEST          Trade_State = 7
	Trade_SELLER_PUBLISHED_DEPOSIT_TX                        Trade_State = 8
	// Deprecated: Marked as deprecated in pb.proto.
	Trade_SELLER_SENT_DEPOSIT_TX_PUBLISHED_MSG Trade_State = 9
	// Deprecated: Marked as deprecated in pb.proto.
	Trade_SELLER_SAW_ARRIVED_DEPOSIT_TX_PUBLISHED_MSG Trade_State = 10
	// Deprecated: Marked as deprecated in pb.proto.
	Trade_SELLER_STORED_IN_MAILBOX_DEPOSIT_TX_PUBLISHED_MSG Trade_State = 11
	// Deprecated: Marked as deprecated in pb.proto.
	Trade_SELLER_SEND_FAILED_DEPOSIT_TX_PUBLISHED_MSG        Trade_State = 12
	Trade_BUYER_RECEIVED_DEPOSIT_TX_PUBLISHED_MSG            Trade_State = 13
	Trade_BUYER_SAW_DEPOSIT_TX_IN_NETWORK                    Trade_State = 14
	Trade_DEPOSIT_CONFIRMED_IN_BLOCK_CHAIN                   Trade_State = 15
	Trade_BUYER_CONFIRMED_IN_UI_FIAT_PAYMENT_INITIATED       Trade_State = 16
	Trade_BUYER_SENT_FIAT_PAYMENT_INITIATED_MSG              Trade_State = 17
	Trade_BUYER_SAW_ARRIVED_FIAT_PAYMENT_INITIATED_MSG       Trade_State = 18
	Trade_BUYER_STORED_IN_MAILBOX_FIAT_PAYMENT_INITIATED_MSG Trade_State = 19
	Trade_BUYER_SEND_FAILED_FIAT_PAYMENT_INITIATED_MSG       Trade_State = 20
	Trade_SELLER_RECEIVED_FIAT_PAYMENT_INITIATED_MSG         Trade_State = 21
	Trade_SELLER_CONFIRMED_IN_UI_FIAT_PAYMENT_RECEIPT        Trade_State = 22
	Trade_SELLER_PUBLISHED_PAYOUT_TX                         Trade_State = 23
	Trade_SELLER_SENT_PAYOUT_TX_PUBLISHED_MSG                Trade_State = 24
	Trade_SELLER_SAW_ARRIVED_PAYOUT_TX_PUBLISHED_MSG         Trade_State = 25
	Trade_SELLER_STORED_IN_MAILBOX_PAYOUT_TX_PUBLISHED_MSG   Trade_State = 26
	Trade_SELLER_SEND_FAILED_PAYOUT_TX_PUBLISHED_MSG         Trade_State = 27
	Trade_BUYER_RECEIVED_PAYOUT_TX_PUBLISHED_MSG             Trade_State = 28
	Trade_BUYER_SAW_PAYOUT_TX_IN_NETWORK                     Trade_State = 29
	Trade_WITHDRAW_COMPLETED                                 Trade_State = 30
)

func (Trade_State) Descriptor added in v0.1.4

func (Trade_State) Enum added in v0.1.4

func (x Trade_State) Enum() *Trade_State

func (Trade_State) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use Trade_State.Descriptor instead.

func (Trade_State) Number added in v0.1.4

func (x Trade_State) Number() protoreflect.EnumNumber

func (Trade_State) String added in v0.1.4

func (x Trade_State) String() string

func (Trade_State) Type added in v0.1.4

type Trade_TradePeriodState added in v0.1.4

type Trade_TradePeriodState int32
const (
	Trade_PB_ERROR_TRADE_PERIOD_STATE Trade_TradePeriodState = 0
	Trade_FIRST_HALF                  Trade_TradePeriodState = 1
	Trade_SECOND_HALF                 Trade_TradePeriodState = 2
	Trade_TRADE_PERIOD_OVER           Trade_TradePeriodState = 3
)

func (Trade_TradePeriodState) Descriptor added in v0.1.4

func (Trade_TradePeriodState) Enum added in v0.1.4

func (Trade_TradePeriodState) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use Trade_TradePeriodState.Descriptor instead.

func (Trade_TradePeriodState) Number added in v0.1.4

func (Trade_TradePeriodState) String added in v0.1.4

func (x Trade_TradePeriodState) String() string

func (Trade_TradePeriodState) Type added in v0.1.4

type TraderSignedWitnessMessage added in v0.1.4

type TraderSignedWitnessMessage struct {

	// Deprecated: Marked as deprecated in pb.proto.
	Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	TradeId string `protobuf:"bytes,2,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	SenderNodeAddress *NodeAddress `protobuf:"bytes,3,opt,name=sender_node_address,json=senderNodeAddress,proto3" json:"sender_node_address,omitempty"`
	// Deprecated: Marked as deprecated in pb.proto.
	SignedWitness *SignedWitness `protobuf:"bytes,4,opt,name=signed_witness,json=signedWitness,proto3" json:"signed_witness,omitempty"`
	// contains filtered or unexported fields
}

Deprecated since 1.4.0.

func (*TraderSignedWitnessMessage) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TraderSignedWitnessMessage.ProtoReflect.Descriptor instead.

func (*TraderSignedWitnessMessage) GetSenderNodeAddress deprecated added in v0.1.4

func (x *TraderSignedWitnessMessage) GetSenderNodeAddress() *NodeAddress

Deprecated: Marked as deprecated in pb.proto.

func (*TraderSignedWitnessMessage) GetSignedWitness deprecated added in v0.1.4

func (x *TraderSignedWitnessMessage) GetSignedWitness() *SignedWitness

Deprecated: Marked as deprecated in pb.proto.

func (*TraderSignedWitnessMessage) GetTradeId deprecated added in v0.1.4

func (x *TraderSignedWitnessMessage) GetTradeId() string

Deprecated: Marked as deprecated in pb.proto.

func (*TraderSignedWitnessMessage) GetUid deprecated added in v0.1.4

func (x *TraderSignedWitnessMessage) GetUid() string

Deprecated: Marked as deprecated in pb.proto.

func (*TraderSignedWitnessMessage) ProtoMessage added in v0.1.4

func (*TraderSignedWitnessMessage) ProtoMessage()

func (*TraderSignedWitnessMessage) ProtoReflect added in v0.1.4

func (*TraderSignedWitnessMessage) Reset added in v0.1.4

func (x *TraderSignedWitnessMessage) Reset()

func (*TraderSignedWitnessMessage) String added in v0.1.4

func (x *TraderSignedWitnessMessage) String() string

type TradesClient added in v0.1.4

type TradesClient interface {
	// Get a currently open trade.
	GetTrade(ctx context.Context, in *GetTradeRequest, opts ...grpc.CallOption) (*GetTradeReply, error)
	// Get currently open, or historical trades (closed or failed).
	GetTrades(ctx context.Context, in *GetTradesRequest, opts ...grpc.CallOption) (*GetTradesReply, error)
	// Take an available offer.  Your node must have a payment account with the same payment method as
	// the offer's payment method, e.g., NATIONAL_BANK, SEPA, SWIFT, etc.
	TakeOffer(ctx context.Context, in *TakeOfferRequest, opts ...grpc.CallOption) (*TakeOfferReply, error)
	// Send a 'payment started' message to a trading peer (the BTC seller).
	ConfirmPaymentStarted(ctx context.Context, in *ConfirmPaymentStartedRequest, opts ...grpc.CallOption) (*ConfirmPaymentStartedReply, error)
	// Send a 'payment received' message to a trading peer (the BTC buyer).
	ConfirmPaymentReceived(ctx context.Context, in *ConfirmPaymentReceivedRequest, opts ...grpc.CallOption) (*ConfirmPaymentReceivedReply, error)
	// Close a completed trade;  move it to trade history.
	CloseTrade(ctx context.Context, in *CloseTradeRequest, opts ...grpc.CallOption) (*CloseTradeReply, error)
	// Fail an open trade.
	FailTrade(ctx context.Context, in *FailTradeRequest, opts ...grpc.CallOption) (*FailTradeReply, error)
	// Unfail a failed trade.
	UnFailTrade(ctx context.Context, in *UnFailTradeRequest, opts ...grpc.CallOption) (*UnFailTradeReply, error)
	// Withdraw trade proceeds to an external bitcoin wallet address.
	WithdrawFunds(ctx context.Context, in *WithdrawFundsRequest, opts ...grpc.CallOption) (*WithdrawFundsReply, error)
}

TradesClient is the client API for Trades service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewTradesClient added in v0.1.4

func NewTradesClient(cc grpc.ClientConnInterface) TradesClient

type TradesServer added in v0.1.4

type TradesServer interface {
	// Get a currently open trade.
	GetTrade(context.Context, *GetTradeRequest) (*GetTradeReply, error)
	// Get currently open, or historical trades (closed or failed).
	GetTrades(context.Context, *GetTradesRequest) (*GetTradesReply, error)
	// Take an available offer.  Your node must have a payment account with the same payment method as
	// the offer's payment method, e.g., NATIONAL_BANK, SEPA, SWIFT, etc.
	TakeOffer(context.Context, *TakeOfferRequest) (*TakeOfferReply, error)
	// Send a 'payment started' message to a trading peer (the BTC seller).
	ConfirmPaymentStarted(context.Context, *ConfirmPaymentStartedRequest) (*ConfirmPaymentStartedReply, error)
	// Send a 'payment received' message to a trading peer (the BTC buyer).
	ConfirmPaymentReceived(context.Context, *ConfirmPaymentReceivedRequest) (*ConfirmPaymentReceivedReply, error)
	// Close a completed trade;  move it to trade history.
	CloseTrade(context.Context, *CloseTradeRequest) (*CloseTradeReply, error)
	// Fail an open trade.
	FailTrade(context.Context, *FailTradeRequest) (*FailTradeReply, error)
	// Unfail a failed trade.
	UnFailTrade(context.Context, *UnFailTradeRequest) (*UnFailTradeReply, error)
	// Withdraw trade proceeds to an external bitcoin wallet address.
	WithdrawFunds(context.Context, *WithdrawFundsRequest) (*WithdrawFundsReply, error)
	// contains filtered or unexported methods
}

TradesServer is the server API for Trades service. All implementations must embed UnimplementedTradesServer for forward compatibility

type TradingPeer added in v0.1.4

type TradingPeer struct {
	AccountId                   string                 `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	PaymentAccountPayload       *PaymentAccountPayload `` /* 126-byte string literal not displayed */
	PayoutAddressString         string                 `protobuf:"bytes,3,opt,name=payout_address_string,json=payoutAddressString,proto3" json:"payout_address_string,omitempty"`
	ContractAsJson              string                 `protobuf:"bytes,4,opt,name=contract_as_json,json=contractAsJson,proto3" json:"contract_as_json,omitempty"`
	ContractSignature           string                 `protobuf:"bytes,5,opt,name=contract_signature,json=contractSignature,proto3" json:"contract_signature,omitempty"`
	Signature                   []byte                 `protobuf:"bytes,6,opt,name=signature,proto3" json:"signature,omitempty"`
	PubKeyRing                  *PubKeyRing            `protobuf:"bytes,7,opt,name=pub_key_ring,json=pubKeyRing,proto3" json:"pub_key_ring,omitempty"`
	MultiSigPubKey              []byte                 `protobuf:"bytes,8,opt,name=multi_sig_pub_key,json=multiSigPubKey,proto3" json:"multi_sig_pub_key,omitempty"`
	RawTransactionInputs        []*RawTransactionInput `protobuf:"bytes,9,rep,name=raw_transaction_inputs,json=rawTransactionInputs,proto3" json:"raw_transaction_inputs,omitempty"`
	ChangeOutputValue           int64                  `protobuf:"varint,10,opt,name=change_output_value,json=changeOutputValue,proto3" json:"change_output_value,omitempty"`
	ChangeOutputAddress         string                 `protobuf:"bytes,11,opt,name=change_output_address,json=changeOutputAddress,proto3" json:"change_output_address,omitempty"`
	AccountAgeWitnessNonce      []byte                 `` /* 132-byte string literal not displayed */
	AccountAgeWitnessSignature  []byte                 `` /* 144-byte string literal not displayed */
	CurrentDate                 int64                  `protobuf:"varint,14,opt,name=current_date,json=currentDate,proto3" json:"current_date,omitempty"`
	MediatedPayoutTxSignature   []byte                 `` /* 141-byte string literal not displayed */
	HashOfPaymentAccountPayload []byte                 `` /* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*TradingPeer) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TradingPeer.ProtoReflect.Descriptor instead.

func (*TradingPeer) GetAccountAgeWitnessNonce added in v0.1.4

func (x *TradingPeer) GetAccountAgeWitnessNonce() []byte

func (*TradingPeer) GetAccountAgeWitnessSignature added in v0.1.4

func (x *TradingPeer) GetAccountAgeWitnessSignature() []byte

func (*TradingPeer) GetAccountId added in v0.1.4

func (x *TradingPeer) GetAccountId() string

func (*TradingPeer) GetChangeOutputAddress added in v0.1.4

func (x *TradingPeer) GetChangeOutputAddress() string

func (*TradingPeer) GetChangeOutputValue added in v0.1.4

func (x *TradingPeer) GetChangeOutputValue() int64

func (*TradingPeer) GetContractAsJson added in v0.1.4

func (x *TradingPeer) GetContractAsJson() string

func (*TradingPeer) GetContractSignature added in v0.1.4

func (x *TradingPeer) GetContractSignature() string

func (*TradingPeer) GetCurrentDate added in v0.1.4

func (x *TradingPeer) GetCurrentDate() int64

func (*TradingPeer) GetHashOfPaymentAccountPayload added in v0.1.5

func (x *TradingPeer) GetHashOfPaymentAccountPayload() []byte

func (*TradingPeer) GetMediatedPayoutTxSignature added in v0.1.4

func (x *TradingPeer) GetMediatedPayoutTxSignature() []byte

func (*TradingPeer) GetMultiSigPubKey added in v0.1.4

func (x *TradingPeer) GetMultiSigPubKey() []byte

func (*TradingPeer) GetPaymentAccountPayload added in v0.1.4

func (x *TradingPeer) GetPaymentAccountPayload() *PaymentAccountPayload

func (*TradingPeer) GetPayoutAddressString added in v0.1.4

func (x *TradingPeer) GetPayoutAddressString() string

func (*TradingPeer) GetPubKeyRing added in v0.1.4

func (x *TradingPeer) GetPubKeyRing() *PubKeyRing

func (*TradingPeer) GetRawTransactionInputs added in v0.1.4

func (x *TradingPeer) GetRawTransactionInputs() []*RawTransactionInput

func (*TradingPeer) GetSignature added in v0.1.4

func (x *TradingPeer) GetSignature() []byte

func (*TradingPeer) ProtoMessage added in v0.1.4

func (*TradingPeer) ProtoMessage()

func (*TradingPeer) ProtoReflect added in v0.1.4

func (x *TradingPeer) ProtoReflect() protoreflect.Message

func (*TradingPeer) Reset added in v0.1.4

func (x *TradingPeer) Reset()

func (*TradingPeer) String added in v0.1.4

func (x *TradingPeer) String() string

type TransferwiseAccountPayload added in v0.1.4

type TransferwiseAccountPayload struct {
	Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*TransferwiseAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TransferwiseAccountPayload.ProtoReflect.Descriptor instead.

func (*TransferwiseAccountPayload) GetEmail added in v0.1.4

func (x *TransferwiseAccountPayload) GetEmail() string

func (*TransferwiseAccountPayload) ProtoMessage added in v0.1.4

func (*TransferwiseAccountPayload) ProtoMessage()

func (*TransferwiseAccountPayload) ProtoReflect added in v0.1.4

func (*TransferwiseAccountPayload) Reset added in v0.1.4

func (x *TransferwiseAccountPayload) Reset()

func (*TransferwiseAccountPayload) String added in v0.1.4

func (x *TransferwiseAccountPayload) String() string

type TransferwiseUsdAccountPayload added in v0.1.6

type TransferwiseUsdAccountPayload struct {
	Email              string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	HolderName         string `protobuf:"bytes,2,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	BeneficiaryAddress string `protobuf:"bytes,3,opt,name=beneficiary_address,json=beneficiaryAddress,proto3" json:"beneficiary_address,omitempty"`
	// contains filtered or unexported fields
}

func (*TransferwiseUsdAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use TransferwiseUsdAccountPayload.ProtoReflect.Descriptor instead.

func (*TransferwiseUsdAccountPayload) GetBeneficiaryAddress added in v0.1.6

func (x *TransferwiseUsdAccountPayload) GetBeneficiaryAddress() string

func (*TransferwiseUsdAccountPayload) GetEmail added in v0.1.6

func (x *TransferwiseUsdAccountPayload) GetEmail() string

func (*TransferwiseUsdAccountPayload) GetHolderName added in v0.1.6

func (x *TransferwiseUsdAccountPayload) GetHolderName() string

func (*TransferwiseUsdAccountPayload) ProtoMessage added in v0.1.6

func (*TransferwiseUsdAccountPayload) ProtoMessage()

func (*TransferwiseUsdAccountPayload) ProtoReflect added in v0.1.6

func (*TransferwiseUsdAccountPayload) Reset added in v0.1.6

func (x *TransferwiseUsdAccountPayload) Reset()

func (*TransferwiseUsdAccountPayload) String added in v0.1.6

type Tx added in v0.1.4

type Tx struct {

	// Because of the way how PB implements inheritance we need to use the super class as type.
	TxOutputs []*BaseTxOutput `protobuf:"bytes,1,rep,name=tx_outputs,json=txOutputs,proto3" json:"tx_outputs,omitempty"`
	TxType    TxType          `protobuf:"varint,2,opt,name=txType,proto3,enum=io.bisq.protobuffer.TxType" json:"txType,omitempty"`
	BurntBsq  int64           `protobuf:"varint,3,opt,name=burnt_bsq,json=burntBsq,proto3" json:"burnt_bsq,omitempty"`
	// contains filtered or unexported fields
}

func (*Tx) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Tx.ProtoReflect.Descriptor instead.

func (*Tx) GetBurntBsq added in v0.1.4

func (x *Tx) GetBurntBsq() int64

func (*Tx) GetTxOutputs added in v0.1.4

func (x *Tx) GetTxOutputs() []*BaseTxOutput

func (*Tx) GetTxType added in v0.1.4

func (x *Tx) GetTxType() TxType

func (*Tx) ProtoMessage added in v0.1.4

func (*Tx) ProtoMessage()

func (*Tx) ProtoReflect added in v0.1.4

func (x *Tx) ProtoReflect() protoreflect.Message

func (*Tx) Reset added in v0.1.4

func (x *Tx) Reset()

func (*Tx) String added in v0.1.4

func (x *Tx) String() string

type TxFeeRateInfo added in v0.1.4

type TxFeeRateInfo struct {
	UseCustomTxFeeRate bool   `protobuf:"varint,1,opt,name=use_custom_tx_fee_rate,json=useCustomTxFeeRate,proto3" json:"use_custom_tx_fee_rate,omitempty"` // Whether the daemon's custom btc transaction fee rate preference is set, or not.
	CustomTxFeeRate    uint64 `protobuf:"varint,2,opt,name=custom_tx_fee_rate,json=customTxFeeRate,proto3" json:"custom_tx_fee_rate,omitempty"`            // The daemon's custom btc transaction fee rate preference, in sats/byte.
	FeeServiceRate     uint64 `protobuf:"varint,3,opt,name=fee_service_rate,json=feeServiceRate,proto3" json:"fee_service_rate,omitempty"`                 // The Bisq network's most recently available btc transaction fee rate, in sats/byte.
	// The date of the most recent Bisq network fee rate request as a long: the number of milliseconds that have elapsed since January 1, 1970.
	LastFeeServiceRequestTs uint64 ``                                                                                                                      /* 137-byte string literal not displayed */
	MinFeeServiceRate       uint64 `protobuf:"varint,5,opt,name=min_fee_service_rate,json=minFeeServiceRate,proto3" json:"min_fee_service_rate,omitempty"` // The Bisq network's minimum btc transaction fee rate, in sats/byte.
	// contains filtered or unexported fields
}

func (*TxFeeRateInfo) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TxFeeRateInfo.ProtoReflect.Descriptor instead.

func (*TxFeeRateInfo) GetCustomTxFeeRate added in v0.1.4

func (x *TxFeeRateInfo) GetCustomTxFeeRate() uint64

func (*TxFeeRateInfo) GetFeeServiceRate added in v0.1.4

func (x *TxFeeRateInfo) GetFeeServiceRate() uint64

func (*TxFeeRateInfo) GetLastFeeServiceRequestTs added in v0.1.4

func (x *TxFeeRateInfo) GetLastFeeServiceRequestTs() uint64

func (*TxFeeRateInfo) GetMinFeeServiceRate added in v0.1.5

func (x *TxFeeRateInfo) GetMinFeeServiceRate() uint64

func (*TxFeeRateInfo) GetUseCustomTxFeeRate added in v0.1.4

func (x *TxFeeRateInfo) GetUseCustomTxFeeRate() bool

func (*TxFeeRateInfo) ProtoMessage added in v0.1.4

func (*TxFeeRateInfo) ProtoMessage()

func (*TxFeeRateInfo) ProtoReflect added in v0.1.4

func (x *TxFeeRateInfo) ProtoReflect() protoreflect.Message

func (*TxFeeRateInfo) Reset added in v0.1.4

func (x *TxFeeRateInfo) Reset()

func (*TxFeeRateInfo) String added in v0.1.4

func (x *TxFeeRateInfo) String() string

type TxInfo added in v0.1.4

type TxInfo struct {
	TxId      string `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`                 // The bitcoin transaction id.
	InputSum  uint64 `protobuf:"varint,2,opt,name=input_sum,json=inputSum,proto3" json:"input_sum,omitempty"`    // The sum of the bitcoin transaction's input values in satoshis.
	OutputSum uint64 `protobuf:"varint,3,opt,name=output_sum,json=outputSum,proto3" json:"output_sum,omitempty"` // The sum of the bitcoin transaction's output values in satoshis.
	Fee       uint64 `protobuf:"varint,4,opt,name=fee,proto3" json:"fee,omitempty"`                              // The bitcoin transaction's miner fee in satoshis.
	Size      int32  `protobuf:"varint,5,opt,name=size,proto3" json:"size,omitempty"`                            // The bitcoin transaction's size in bytes.
	IsPending bool   `protobuf:"varint,6,opt,name=is_pending,json=isPending,proto3" json:"is_pending,omitempty"` // Whether the bitcoin transaction has been confirmed at least one time, or not.
	Memo      string `protobuf:"bytes,7,opt,name=memo,proto3" json:"memo,omitempty"`                             // An optional memo associated with the bitcoin transaction.
	// contains filtered or unexported fields
}

func (*TxInfo) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TxInfo.ProtoReflect.Descriptor instead.

func (*TxInfo) GetFee added in v0.1.4

func (x *TxInfo) GetFee() uint64

func (*TxInfo) GetInputSum added in v0.1.4

func (x *TxInfo) GetInputSum() uint64

func (*TxInfo) GetIsPending added in v0.1.4

func (x *TxInfo) GetIsPending() bool

func (*TxInfo) GetMemo added in v0.1.4

func (x *TxInfo) GetMemo() string

func (*TxInfo) GetOutputSum added in v0.1.4

func (x *TxInfo) GetOutputSum() uint64

func (*TxInfo) GetSize added in v0.1.4

func (x *TxInfo) GetSize() int32

func (*TxInfo) GetTxId added in v0.1.4

func (x *TxInfo) GetTxId() string

func (*TxInfo) ProtoMessage added in v0.1.4

func (*TxInfo) ProtoMessage()

func (*TxInfo) ProtoReflect added in v0.1.4

func (x *TxInfo) ProtoReflect() protoreflect.Message

func (*TxInfo) Reset added in v0.1.4

func (x *TxInfo) Reset()

func (*TxInfo) String added in v0.1.4

func (x *TxInfo) String() string

type TxInput added in v0.1.4

type TxInput struct {
	ConnectedTxOutputTxId  string `` /* 130-byte string literal not displayed */
	ConnectedTxOutputIndex int32  `` /* 132-byte string literal not displayed */
	PubKey                 string `protobuf:"bytes,3,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	// contains filtered or unexported fields
}

func (*TxInput) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TxInput.ProtoReflect.Descriptor instead.

func (*TxInput) GetConnectedTxOutputIndex added in v0.1.4

func (x *TxInput) GetConnectedTxOutputIndex() int32

func (*TxInput) GetConnectedTxOutputTxId added in v0.1.4

func (x *TxInput) GetConnectedTxOutputTxId() string

func (*TxInput) GetPubKey added in v0.1.4

func (x *TxInput) GetPubKey() string

func (*TxInput) ProtoMessage added in v0.1.4

func (*TxInput) ProtoMessage()

func (*TxInput) ProtoReflect added in v0.1.4

func (x *TxInput) ProtoReflect() protoreflect.Message

func (*TxInput) Reset added in v0.1.4

func (x *TxInput) Reset()

func (*TxInput) String added in v0.1.4

func (x *TxInput) String() string

type TxOutput added in v0.1.4

type TxOutput struct {
	TxOutputType      TxOutputType `` /* 138-byte string literal not displayed */
	LockTime          int32        `protobuf:"varint,2,opt,name=lock_time,json=lockTime,proto3" json:"lock_time,omitempty"`
	UnlockBlockHeight int32        `protobuf:"varint,3,opt,name=unlock_block_height,json=unlockBlockHeight,proto3" json:"unlock_block_height,omitempty"`
	// contains filtered or unexported fields
}

func (*TxOutput) Descriptor deprecated added in v0.1.4

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

Deprecated: Use TxOutput.ProtoReflect.Descriptor instead.

func (*TxOutput) GetLockTime added in v0.1.4

func (x *TxOutput) GetLockTime() int32

func (*TxOutput) GetTxOutputType added in v0.1.4

func (x *TxOutput) GetTxOutputType() TxOutputType

func (*TxOutput) GetUnlockBlockHeight added in v0.1.4

func (x *TxOutput) GetUnlockBlockHeight() int32

func (*TxOutput) ProtoMessage added in v0.1.4

func (*TxOutput) ProtoMessage()

func (*TxOutput) ProtoReflect added in v0.1.4

func (x *TxOutput) ProtoReflect() protoreflect.Message

func (*TxOutput) Reset added in v0.1.4

func (x *TxOutput) Reset()

func (*TxOutput) String added in v0.1.4

func (x *TxOutput) String() string

type TxOutputType added in v0.1.4

type TxOutputType int32
const (
	TxOutputType_PB_ERROR_TX_OUTPUT_TYPE            TxOutputType = 0
	TxOutputType_UNDEFINED_OUTPUT                   TxOutputType = 1
	TxOutputType_GENESIS_OUTPUT                     TxOutputType = 2
	TxOutputType_BSQ_OUTPUT                         TxOutputType = 3
	TxOutputType_BTC_OUTPUT                         TxOutputType = 4
	TxOutputType_PROPOSAL_OP_RETURN_OUTPUT          TxOutputType = 5
	TxOutputType_COMP_REQ_OP_RETURN_OUTPUT          TxOutputType = 6
	TxOutputType_REIMBURSEMENT_OP_RETURN_OUTPUT     TxOutputType = 7
	TxOutputType_CONFISCATE_BOND_OP_RETURN_OUTPUT   TxOutputType = 8
	TxOutputType_ISSUANCE_CANDIDATE_OUTPUT          TxOutputType = 9
	TxOutputType_BLIND_VOTE_LOCK_STAKE_OUTPUT       TxOutputType = 10
	TxOutputType_BLIND_VOTE_OP_RETURN_OUTPUT        TxOutputType = 11
	TxOutputType_VOTE_REVEAL_UNLOCK_STAKE_OUTPUT    TxOutputType = 12
	TxOutputType_VOTE_REVEAL_OP_RETURN_OUTPUT       TxOutputType = 13
	TxOutputType_ASSET_LISTING_FEE_OP_RETURN_OUTPUT TxOutputType = 14
	TxOutputType_PROOF_OF_BURN_OP_RETURN_OUTPUT     TxOutputType = 15
	TxOutputType_LOCKUP_OUTPUT                      TxOutputType = 16
	TxOutputType_LOCKUP_OP_RETURN_OUTPUT            TxOutputType = 17
	TxOutputType_UNLOCK_OUTPUT                      TxOutputType = 18
	TxOutputType_INVALID_OUTPUT                     TxOutputType = 19
)

func (TxOutputType) Descriptor added in v0.1.4

func (TxOutputType) Enum added in v0.1.4

func (x TxOutputType) Enum() *TxOutputType

func (TxOutputType) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use TxOutputType.Descriptor instead.

func (TxOutputType) Number added in v0.1.4

func (TxOutputType) String added in v0.1.4

func (x TxOutputType) String() string

func (TxOutputType) Type added in v0.1.4

type TxType added in v0.1.4

type TxType int32
const (
	TxType_PB_ERROR_TX_TYPE      TxType = 0
	TxType_UNDEFINED_TX_TYPE     TxType = 1
	TxType_UNVERIFIED            TxType = 2
	TxType_INVALID               TxType = 3
	TxType_GENESIS               TxType = 4
	TxType_TRANSFER_BSQ          TxType = 5
	TxType_PAY_TRADE_FEE         TxType = 6
	TxType_PROPOSAL              TxType = 7
	TxType_COMPENSATION_REQUEST  TxType = 8
	TxType_REIMBURSEMENT_REQUEST TxType = 9
	TxType_BLIND_VOTE            TxType = 10
	TxType_VOTE_REVEAL           TxType = 11
	TxType_LOCKUP                TxType = 12
	TxType_UNLOCK                TxType = 13
	TxType_ASSET_LISTING_FEE     TxType = 14
	TxType_PROOF_OF_BURN         TxType = 15
	TxType_IRREGULAR             TxType = 16
)

func (TxType) Descriptor added in v0.1.4

func (TxType) Descriptor() protoreflect.EnumDescriptor

func (TxType) Enum added in v0.1.4

func (x TxType) Enum() *TxType

func (TxType) EnumDescriptor deprecated added in v0.1.4

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

Deprecated: Use TxType.Descriptor instead.

func (TxType) Number added in v0.1.4

func (x TxType) Number() protoreflect.EnumNumber

func (TxType) String added in v0.1.4

func (x TxType) String() string

func (TxType) Type added in v0.1.4

func (TxType) Type() protoreflect.EnumType

type USPostalMoneyOrderAccountPayload added in v0.1.4

type USPostalMoneyOrderAccountPayload struct {
	PostalAddress string `protobuf:"bytes,1,opt,name=postal_address,json=postalAddress,proto3" json:"postal_address,omitempty"`
	HolderName    string `protobuf:"bytes,2,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	// contains filtered or unexported fields
}

func (*USPostalMoneyOrderAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use USPostalMoneyOrderAccountPayload.ProtoReflect.Descriptor instead.

func (*USPostalMoneyOrderAccountPayload) GetHolderName added in v0.1.4

func (x *USPostalMoneyOrderAccountPayload) GetHolderName() string

func (*USPostalMoneyOrderAccountPayload) GetPostalAddress added in v0.1.4

func (x *USPostalMoneyOrderAccountPayload) GetPostalAddress() string

func (*USPostalMoneyOrderAccountPayload) ProtoMessage added in v0.1.4

func (*USPostalMoneyOrderAccountPayload) ProtoMessage()

func (*USPostalMoneyOrderAccountPayload) ProtoReflect added in v0.1.4

func (*USPostalMoneyOrderAccountPayload) Reset added in v0.1.4

func (*USPostalMoneyOrderAccountPayload) String added in v0.1.4

type UnFailTradeReply added in v0.1.9

type UnFailTradeReply struct {
	// contains filtered or unexported fields
}

func (*UnFailTradeReply) Descriptor deprecated added in v0.1.9

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

Deprecated: Use UnFailTradeReply.ProtoReflect.Descriptor instead.

func (*UnFailTradeReply) ProtoMessage added in v0.1.9

func (*UnFailTradeReply) ProtoMessage()

func (*UnFailTradeReply) ProtoReflect added in v0.1.9

func (x *UnFailTradeReply) ProtoReflect() protoreflect.Message

func (*UnFailTradeReply) Reset added in v0.1.9

func (x *UnFailTradeReply) Reset()

func (*UnFailTradeReply) String added in v0.1.9

func (x *UnFailTradeReply) String() string

type UnFailTradeRequest added in v0.1.9

type UnFailTradeRequest struct {
	TradeId string `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"` // The unique identifier of the trade.
	// contains filtered or unexported fields
}

func (*UnFailTradeRequest) Descriptor deprecated added in v0.1.9

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

Deprecated: Use UnFailTradeRequest.ProtoReflect.Descriptor instead.

func (*UnFailTradeRequest) GetTradeId added in v0.1.9

func (x *UnFailTradeRequest) GetTradeId() string

func (*UnFailTradeRequest) ProtoMessage added in v0.1.9

func (*UnFailTradeRequest) ProtoMessage()

func (*UnFailTradeRequest) ProtoReflect added in v0.1.9

func (x *UnFailTradeRequest) ProtoReflect() protoreflect.Message

func (*UnFailTradeRequest) Reset added in v0.1.9

func (x *UnFailTradeRequest) Reset()

func (*UnFailTradeRequest) String added in v0.1.9

func (x *UnFailTradeRequest) String() string

type UnconfirmedBsqChangeOutputList added in v0.1.4

type UnconfirmedBsqChangeOutputList struct {
	UnconfirmedTxOutput []*UnconfirmedTxOutput `protobuf:"bytes,1,rep,name=unconfirmed_tx_output,json=unconfirmedTxOutput,proto3" json:"unconfirmed_tx_output,omitempty"`
	// contains filtered or unexported fields
}

func (*UnconfirmedBsqChangeOutputList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use UnconfirmedBsqChangeOutputList.ProtoReflect.Descriptor instead.

func (*UnconfirmedBsqChangeOutputList) GetUnconfirmedTxOutput added in v0.1.4

func (x *UnconfirmedBsqChangeOutputList) GetUnconfirmedTxOutput() []*UnconfirmedTxOutput

func (*UnconfirmedBsqChangeOutputList) ProtoMessage added in v0.1.4

func (*UnconfirmedBsqChangeOutputList) ProtoMessage()

func (*UnconfirmedBsqChangeOutputList) ProtoReflect added in v0.1.4

func (*UnconfirmedBsqChangeOutputList) Reset added in v0.1.4

func (x *UnconfirmedBsqChangeOutputList) Reset()

func (*UnconfirmedBsqChangeOutputList) String added in v0.1.4

type UnconfirmedTxOutput added in v0.1.4

type UnconfirmedTxOutput struct {
	Index int32  `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
	Value int64  `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
	TxId  string `protobuf:"bytes,3,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UnconfirmedTxOutput) Descriptor deprecated added in v0.1.4

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

Deprecated: Use UnconfirmedTxOutput.ProtoReflect.Descriptor instead.

func (*UnconfirmedTxOutput) GetIndex added in v0.1.4

func (x *UnconfirmedTxOutput) GetIndex() int32

func (*UnconfirmedTxOutput) GetTxId added in v0.1.4

func (x *UnconfirmedTxOutput) GetTxId() string

func (*UnconfirmedTxOutput) GetValue added in v0.1.4

func (x *UnconfirmedTxOutput) GetValue() int64

func (*UnconfirmedTxOutput) ProtoMessage added in v0.1.4

func (*UnconfirmedTxOutput) ProtoMessage()

func (*UnconfirmedTxOutput) ProtoReflect added in v0.1.4

func (x *UnconfirmedTxOutput) ProtoReflect() protoreflect.Message

func (*UnconfirmedTxOutput) Reset added in v0.1.4

func (x *UnconfirmedTxOutput) Reset()

func (*UnconfirmedTxOutput) String added in v0.1.4

func (x *UnconfirmedTxOutput) String() string

type UnimplementedDisputeAgentsServer added in v0.1.4

type UnimplementedDisputeAgentsServer struct {
}

UnimplementedDisputeAgentsServer must be embedded to have forward compatible implementations.

func (UnimplementedDisputeAgentsServer) RegisterDisputeAgent added in v0.1.4

type UnimplementedGetVersionServer added in v0.1.4

type UnimplementedGetVersionServer struct {
}

UnimplementedGetVersionServer must be embedded to have forward compatible implementations.

func (UnimplementedGetVersionServer) GetVersion added in v0.1.4

type UnimplementedHelpServer added in v0.1.4

type UnimplementedHelpServer struct {
}

UnimplementedHelpServer must be embedded to have forward compatible implementations.

func (UnimplementedHelpServer) GetMethodHelp added in v0.1.4

type UnimplementedOffersServer added in v0.1.4

type UnimplementedOffersServer struct {
}

UnimplementedOffersServer must be embedded to have forward compatible implementations.

func (UnimplementedOffersServer) CancelOffer added in v0.1.4

func (UnimplementedOffersServer) CreateBsqSwapOffer added in v0.1.6

func (UnimplementedOffersServer) CreateOffer added in v0.1.4

func (UnimplementedOffersServer) EditOffer added in v0.1.5

func (UnimplementedOffersServer) GetBsqSwapOffer added in v0.1.6

func (UnimplementedOffersServer) GetBsqSwapOffers added in v0.1.6

func (UnimplementedOffersServer) GetMyBsqSwapOffer added in v0.1.6

func (UnimplementedOffersServer) GetMyBsqSwapOffers added in v0.1.6

func (UnimplementedOffersServer) GetMyOffer added in v0.1.4

func (UnimplementedOffersServer) GetMyOffers added in v0.1.4

func (UnimplementedOffersServer) GetOffer added in v0.1.4

func (UnimplementedOffersServer) GetOfferCategory added in v0.1.9

func (UnimplementedOffersServer) GetOffers added in v0.1.4

type UnimplementedPaymentAccountsServer added in v0.1.4

type UnimplementedPaymentAccountsServer struct {
}

UnimplementedPaymentAccountsServer must be embedded to have forward compatible implementations.

func (UnimplementedPaymentAccountsServer) CreateCryptoCurrencyPaymentAccount added in v0.1.5

func (UnimplementedPaymentAccountsServer) CreatePaymentAccount added in v0.1.4

func (UnimplementedPaymentAccountsServer) GetCryptoCurrencyPaymentMethods added in v0.1.5

func (UnimplementedPaymentAccountsServer) GetPaymentAccountForm added in v0.1.4

func (UnimplementedPaymentAccountsServer) GetPaymentAccounts added in v0.1.4

func (UnimplementedPaymentAccountsServer) GetPaymentMethods added in v0.1.4

type UnimplementedPriceServer added in v0.1.4

type UnimplementedPriceServer struct {
}

UnimplementedPriceServer must be embedded to have forward compatible implementations.

func (UnimplementedPriceServer) GetAverageBsqTradePrice added in v0.1.10

func (UnimplementedPriceServer) GetMarketPrice added in v0.1.4

type UnimplementedShutdownServerServer added in v0.1.4

type UnimplementedShutdownServerServer struct {
}

UnimplementedShutdownServerServer must be embedded to have forward compatible implementations.

func (UnimplementedShutdownServerServer) Stop added in v0.1.4

type UnimplementedTradesServer added in v0.1.4

type UnimplementedTradesServer struct {
}

UnimplementedTradesServer must be embedded to have forward compatible implementations.

func (UnimplementedTradesServer) CloseTrade added in v0.1.9

func (UnimplementedTradesServer) ConfirmPaymentReceived added in v0.1.4

func (UnimplementedTradesServer) ConfirmPaymentStarted added in v0.1.4

func (UnimplementedTradesServer) FailTrade added in v0.1.9

func (UnimplementedTradesServer) GetTrade added in v0.1.4

func (UnimplementedTradesServer) GetTrades added in v0.1.9

func (UnimplementedTradesServer) TakeOffer added in v0.1.4

func (UnimplementedTradesServer) UnFailTrade added in v0.1.9

func (UnimplementedTradesServer) WithdrawFunds added in v0.1.4

type UnimplementedWalletsServer added in v0.1.4

type UnimplementedWalletsServer struct {
}

UnimplementedWalletsServer must be embedded to have forward compatible implementations.

func (UnimplementedWalletsServer) GetAddressBalance added in v0.1.4

func (UnimplementedWalletsServer) GetBalances added in v0.1.4

func (UnimplementedWalletsServer) GetFundingAddresses added in v0.1.4

func (UnimplementedWalletsServer) GetNetwork added in v0.1.10

func (UnimplementedWalletsServer) GetTransaction added in v0.1.4

func (UnimplementedWalletsServer) GetTransactions added in v0.1.10

func (UnimplementedWalletsServer) GetTxFeeRate added in v0.1.4

func (UnimplementedWalletsServer) GetUnusedBsqAddress added in v0.1.4

func (UnimplementedWalletsServer) LockWallet added in v0.1.4

func (UnimplementedWalletsServer) RemoveWalletPassword added in v0.1.4

func (UnimplementedWalletsServer) SendBsq added in v0.1.4

func (UnimplementedWalletsServer) SendBtc added in v0.1.4

func (UnimplementedWalletsServer) SetTxFeeRatePreference added in v0.1.4

func (UnimplementedWalletsServer) SetWalletPassword added in v0.1.4

func (UnimplementedWalletsServer) UnlockWallet added in v0.1.4

func (UnimplementedWalletsServer) UnsetTxFeeRatePreference added in v0.1.4

func (UnimplementedWalletsServer) VerifyBsqSentToAddress added in v0.1.5

type UnlockWalletReply added in v0.1.4

type UnlockWalletReply struct {
	// contains filtered or unexported fields
}

func (*UnlockWalletReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use UnlockWalletReply.ProtoReflect.Descriptor instead.

func (*UnlockWalletReply) ProtoMessage added in v0.1.4

func (*UnlockWalletReply) ProtoMessage()

func (*UnlockWalletReply) ProtoReflect added in v0.1.4

func (x *UnlockWalletReply) ProtoReflect() protoreflect.Message

func (*UnlockWalletReply) Reset added in v0.1.4

func (x *UnlockWalletReply) Reset()

func (*UnlockWalletReply) String added in v0.1.4

func (x *UnlockWalletReply) String() string

type UnlockWalletRequest added in v0.1.4

type UnlockWalletRequest struct {
	Password string `protobuf:"bytes,1,opt,name=password,proto3" json:"password,omitempty"` // The Bisq wallet's encryption password.
	Timeout  uint64 `protobuf:"varint,2,opt,name=timeout,proto3" json:"timeout,omitempty"`  // The Bisq wallet's unlock time period, in seconds.
	// contains filtered or unexported fields
}

func (*UnlockWalletRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use UnlockWalletRequest.ProtoReflect.Descriptor instead.

func (*UnlockWalletRequest) GetPassword added in v0.1.4

func (x *UnlockWalletRequest) GetPassword() string

func (*UnlockWalletRequest) GetTimeout added in v0.1.4

func (x *UnlockWalletRequest) GetTimeout() uint64

func (*UnlockWalletRequest) ProtoMessage added in v0.1.4

func (*UnlockWalletRequest) ProtoMessage()

func (*UnlockWalletRequest) ProtoReflect added in v0.1.4

func (x *UnlockWalletRequest) ProtoReflect() protoreflect.Message

func (*UnlockWalletRequest) Reset added in v0.1.4

func (x *UnlockWalletRequest) Reset()

func (*UnlockWalletRequest) String added in v0.1.4

func (x *UnlockWalletRequest) String() string

type UnsafeDisputeAgentsServer added in v0.1.4

type UnsafeDisputeAgentsServer interface {
	// contains filtered or unexported methods
}

UnsafeDisputeAgentsServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to DisputeAgentsServer will result in compilation errors.

type UnsafeGetVersionServer added in v0.1.4

type UnsafeGetVersionServer interface {
	// contains filtered or unexported methods
}

UnsafeGetVersionServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to GetVersionServer will result in compilation errors.

type UnsafeHelpServer added in v0.1.4

type UnsafeHelpServer interface {
	// contains filtered or unexported methods
}

UnsafeHelpServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to HelpServer will result in compilation errors.

type UnsafeOffersServer added in v0.1.4

type UnsafeOffersServer interface {
	// contains filtered or unexported methods
}

UnsafeOffersServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to OffersServer will result in compilation errors.

type UnsafePaymentAccountsServer added in v0.1.4

type UnsafePaymentAccountsServer interface {
	// contains filtered or unexported methods
}

UnsafePaymentAccountsServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to PaymentAccountsServer will result in compilation errors.

type UnsafePriceServer added in v0.1.4

type UnsafePriceServer interface {
	// contains filtered or unexported methods
}

UnsafePriceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to PriceServer will result in compilation errors.

type UnsafeShutdownServerServer added in v0.1.4

type UnsafeShutdownServerServer interface {
	// contains filtered or unexported methods
}

UnsafeShutdownServerServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ShutdownServerServer will result in compilation errors.

type UnsafeTradesServer added in v0.1.4

type UnsafeTradesServer interface {
	// contains filtered or unexported methods
}

UnsafeTradesServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to TradesServer will result in compilation errors.

type UnsafeWalletsServer added in v0.1.4

type UnsafeWalletsServer interface {
	// contains filtered or unexported methods
}

UnsafeWalletsServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to WalletsServer will result in compilation errors.

type UnsetTxFeeRatePreferenceReply added in v0.1.4

type UnsetTxFeeRatePreferenceReply struct {
	TxFeeRateInfo *TxFeeRateInfo `protobuf:"bytes,1,opt,name=tx_fee_rate_info,json=txFeeRateInfo,proto3" json:"tx_fee_rate_info,omitempty"` // The summary of the most recently available bitcoin transaction fee rates.
	// contains filtered or unexported fields
}

func (*UnsetTxFeeRatePreferenceReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use UnsetTxFeeRatePreferenceReply.ProtoReflect.Descriptor instead.

func (*UnsetTxFeeRatePreferenceReply) GetTxFeeRateInfo added in v0.1.4

func (x *UnsetTxFeeRatePreferenceReply) GetTxFeeRateInfo() *TxFeeRateInfo

func (*UnsetTxFeeRatePreferenceReply) ProtoMessage added in v0.1.4

func (*UnsetTxFeeRatePreferenceReply) ProtoMessage()

func (*UnsetTxFeeRatePreferenceReply) ProtoReflect added in v0.1.4

func (*UnsetTxFeeRatePreferenceReply) Reset added in v0.1.4

func (x *UnsetTxFeeRatePreferenceReply) Reset()

func (*UnsetTxFeeRatePreferenceReply) String added in v0.1.4

type UnsetTxFeeRatePreferenceRequest added in v0.1.4

type UnsetTxFeeRatePreferenceRequest struct {
	// contains filtered or unexported fields
}

func (*UnsetTxFeeRatePreferenceRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use UnsetTxFeeRatePreferenceRequest.ProtoReflect.Descriptor instead.

func (*UnsetTxFeeRatePreferenceRequest) ProtoMessage added in v0.1.4

func (*UnsetTxFeeRatePreferenceRequest) ProtoMessage()

func (*UnsetTxFeeRatePreferenceRequest) ProtoReflect added in v0.1.4

func (*UnsetTxFeeRatePreferenceRequest) Reset added in v0.1.4

func (*UnsetTxFeeRatePreferenceRequest) String added in v0.1.4

type UpholdAccountPayload added in v0.1.4

type UpholdAccountPayload struct {
	AccountId    string `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	AccountOwner string `protobuf:"bytes,2,opt,name=account_owner,json=accountOwner,proto3" json:"account_owner,omitempty"`
	// contains filtered or unexported fields
}

func (*UpholdAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use UpholdAccountPayload.ProtoReflect.Descriptor instead.

func (*UpholdAccountPayload) GetAccountId added in v0.1.4

func (x *UpholdAccountPayload) GetAccountId() string

func (*UpholdAccountPayload) GetAccountOwner added in v0.1.5

func (x *UpholdAccountPayload) GetAccountOwner() string

func (*UpholdAccountPayload) ProtoMessage added in v0.1.4

func (*UpholdAccountPayload) ProtoMessage()

func (*UpholdAccountPayload) ProtoReflect added in v0.1.4

func (x *UpholdAccountPayload) ProtoReflect() protoreflect.Message

func (*UpholdAccountPayload) Reset added in v0.1.4

func (x *UpholdAccountPayload) Reset()

func (*UpholdAccountPayload) String added in v0.1.4

func (x *UpholdAccountPayload) String() string

type UpiAccountPayload added in v0.1.6

type UpiAccountPayload struct {
	VirtualPaymentAddress string `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*UpiAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use UpiAccountPayload.ProtoReflect.Descriptor instead.

func (*UpiAccountPayload) GetVirtualPaymentAddress added in v0.1.6

func (x *UpiAccountPayload) GetVirtualPaymentAddress() string

func (*UpiAccountPayload) ProtoMessage added in v0.1.6

func (*UpiAccountPayload) ProtoMessage()

func (*UpiAccountPayload) ProtoReflect added in v0.1.6

func (x *UpiAccountPayload) ProtoReflect() protoreflect.Message

func (*UpiAccountPayload) Reset added in v0.1.6

func (x *UpiAccountPayload) Reset()

func (*UpiAccountPayload) String added in v0.1.6

func (x *UpiAccountPayload) String() string

type UserPayload added in v0.1.4

type UserPayload struct {
	AccountId                   string                `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	PaymentAccounts             []*PaymentAccount     `protobuf:"bytes,2,rep,name=payment_accounts,json=paymentAccounts,proto3" json:"payment_accounts,omitempty"`
	CurrentPaymentAccount       *PaymentAccount       `` /* 126-byte string literal not displayed */
	AcceptedLanguageLocaleCodes []string              `` /* 146-byte string literal not displayed */
	DevelopersAlert             *Alert                `protobuf:"bytes,5,opt,name=developers_alert,json=developersAlert,proto3" json:"developers_alert,omitempty"`
	DisplayedAlert              *Alert                `protobuf:"bytes,6,opt,name=displayed_alert,json=displayedAlert,proto3" json:"displayed_alert,omitempty"`
	DevelopersFilter            *Filter               `protobuf:"bytes,7,opt,name=developers_filter,json=developersFilter,proto3" json:"developers_filter,omitempty"`
	AcceptedArbitrators         []*Arbitrator         `protobuf:"bytes,8,rep,name=accepted_arbitrators,json=acceptedArbitrators,proto3" json:"accepted_arbitrators,omitempty"`
	AcceptedMediators           []*Mediator           `protobuf:"bytes,9,rep,name=accepted_mediators,json=acceptedMediators,proto3" json:"accepted_mediators,omitempty"`
	RegisteredArbitrator        *Arbitrator           `protobuf:"bytes,10,opt,name=registered_arbitrator,json=registeredArbitrator,proto3" json:"registered_arbitrator,omitempty"`
	RegisteredMediator          *Mediator             `protobuf:"bytes,11,opt,name=registered_mediator,json=registeredMediator,proto3" json:"registered_mediator,omitempty"`
	PriceAlertFilter            *PriceAlertFilter     `protobuf:"bytes,12,opt,name=price_alert_filter,json=priceAlertFilter,proto3" json:"price_alert_filter,omitempty"`
	MarketAlertFilters          []*MarketAlertFilter  `protobuf:"bytes,13,rep,name=market_alert_filters,json=marketAlertFilters,proto3" json:"market_alert_filters,omitempty"`
	AcceptedRefundAgents        []*RefundAgent        `protobuf:"bytes,14,rep,name=accepted_refund_agents,json=acceptedRefundAgents,proto3" json:"accepted_refund_agents,omitempty"`
	RegisteredRefundAgent       *RefundAgent          `` /* 127-byte string literal not displayed */
	Cookie                      map[string]string     `` /* 154-byte string literal not displayed */
	SubAccountMapEntries        []*SubAccountMapEntry `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*UserPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use UserPayload.ProtoReflect.Descriptor instead.

func (*UserPayload) GetAcceptedArbitrators added in v0.1.4

func (x *UserPayload) GetAcceptedArbitrators() []*Arbitrator

func (*UserPayload) GetAcceptedLanguageLocaleCodes added in v0.1.4

func (x *UserPayload) GetAcceptedLanguageLocaleCodes() []string

func (*UserPayload) GetAcceptedMediators added in v0.1.4

func (x *UserPayload) GetAcceptedMediators() []*Mediator

func (*UserPayload) GetAcceptedRefundAgents added in v0.1.4

func (x *UserPayload) GetAcceptedRefundAgents() []*RefundAgent

func (*UserPayload) GetAccountId added in v0.1.4

func (x *UserPayload) GetAccountId() string

func (*UserPayload) GetCookie added in v0.1.4

func (x *UserPayload) GetCookie() map[string]string

func (*UserPayload) GetCurrentPaymentAccount added in v0.1.4

func (x *UserPayload) GetCurrentPaymentAccount() *PaymentAccount

func (*UserPayload) GetDevelopersAlert added in v0.1.4

func (x *UserPayload) GetDevelopersAlert() *Alert

func (*UserPayload) GetDevelopersFilter added in v0.1.4

func (x *UserPayload) GetDevelopersFilter() *Filter

func (*UserPayload) GetDisplayedAlert added in v0.1.4

func (x *UserPayload) GetDisplayedAlert() *Alert

func (*UserPayload) GetMarketAlertFilters added in v0.1.4

func (x *UserPayload) GetMarketAlertFilters() []*MarketAlertFilter

func (*UserPayload) GetPaymentAccounts added in v0.1.4

func (x *UserPayload) GetPaymentAccounts() []*PaymentAccount

func (*UserPayload) GetPriceAlertFilter added in v0.1.4

func (x *UserPayload) GetPriceAlertFilter() *PriceAlertFilter

func (*UserPayload) GetRegisteredArbitrator added in v0.1.4

func (x *UserPayload) GetRegisteredArbitrator() *Arbitrator

func (*UserPayload) GetRegisteredMediator added in v0.1.4

func (x *UserPayload) GetRegisteredMediator() *Mediator

func (*UserPayload) GetRegisteredRefundAgent added in v0.1.4

func (x *UserPayload) GetRegisteredRefundAgent() *RefundAgent

func (*UserPayload) GetSubAccountMapEntries added in v0.1.10

func (x *UserPayload) GetSubAccountMapEntries() []*SubAccountMapEntry

func (*UserPayload) ProtoMessage added in v0.1.4

func (*UserPayload) ProtoMessage()

func (*UserPayload) ProtoReflect added in v0.1.4

func (x *UserPayload) ProtoReflect() protoreflect.Message

func (*UserPayload) Reset added in v0.1.4

func (x *UserPayload) Reset()

func (*UserPayload) String added in v0.1.4

func (x *UserPayload) String() string

type VenmoAccountPayload added in v0.1.4

type VenmoAccountPayload struct {
	VenmoUserName string `protobuf:"bytes,1,opt,name=venmo_user_name,json=venmoUserName,proto3" json:"venmo_user_name,omitempty"`
	HolderName    string `protobuf:"bytes,2,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	// contains filtered or unexported fields
}

Deprecated, not used.

func (*VenmoAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use VenmoAccountPayload.ProtoReflect.Descriptor instead.

func (*VenmoAccountPayload) GetHolderName added in v0.1.4

func (x *VenmoAccountPayload) GetHolderName() string

func (*VenmoAccountPayload) GetVenmoUserName added in v0.1.4

func (x *VenmoAccountPayload) GetVenmoUserName() string

func (*VenmoAccountPayload) ProtoMessage added in v0.1.4

func (*VenmoAccountPayload) ProtoMessage()

func (*VenmoAccountPayload) ProtoReflect added in v0.1.4

func (x *VenmoAccountPayload) ProtoReflect() protoreflect.Message

func (*VenmoAccountPayload) Reset added in v0.1.4

func (x *VenmoAccountPayload) Reset()

func (*VenmoAccountPayload) String added in v0.1.4

func (x *VenmoAccountPayload) String() string

type VerifyBsqSentToAddressReply added in v0.1.5

type VerifyBsqSentToAddressReply struct {

	// Whether a specific BSQ wallet address has received a specific amount of BSQ.  If the same address has received
	// the same amount of BSQ more than once, a true value does not indicate payment has been made for a v1 protocol
	// BSQ-BTC trade.  This BSQ payment verification problem is solved with BSQ swaps, which use a different BSQ
	// address for each swap transaction.
	IsAmountReceived bool `protobuf:"varint,1,opt,name=is_amount_received,json=isAmountReceived,proto3" json:"is_amount_received,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyBsqSentToAddressReply) Descriptor deprecated added in v0.1.5

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

Deprecated: Use VerifyBsqSentToAddressReply.ProtoReflect.Descriptor instead.

func (*VerifyBsqSentToAddressReply) GetIsAmountReceived added in v0.1.5

func (x *VerifyBsqSentToAddressReply) GetIsAmountReceived() bool

func (*VerifyBsqSentToAddressReply) ProtoMessage added in v0.1.5

func (*VerifyBsqSentToAddressReply) ProtoMessage()

func (*VerifyBsqSentToAddressReply) ProtoReflect added in v0.1.5

func (*VerifyBsqSentToAddressReply) Reset added in v0.1.5

func (x *VerifyBsqSentToAddressReply) Reset()

func (*VerifyBsqSentToAddressReply) String added in v0.1.5

func (x *VerifyBsqSentToAddressReply) String() string

type VerifyBsqSentToAddressRequest added in v0.1.5

type VerifyBsqSentToAddressRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` // The internal BSQ wallet address.
	Amount  string `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount,omitempty"`   // The amount supposedly sent to the BSQ wallet address, as a string in "#######,##" format.
	// contains filtered or unexported fields
}

func (*VerifyBsqSentToAddressRequest) Descriptor deprecated added in v0.1.5

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

Deprecated: Use VerifyBsqSentToAddressRequest.ProtoReflect.Descriptor instead.

func (*VerifyBsqSentToAddressRequest) GetAddress added in v0.1.5

func (x *VerifyBsqSentToAddressRequest) GetAddress() string

func (*VerifyBsqSentToAddressRequest) GetAmount added in v0.1.5

func (x *VerifyBsqSentToAddressRequest) GetAmount() string

func (*VerifyBsqSentToAddressRequest) ProtoMessage added in v0.1.5

func (*VerifyBsqSentToAddressRequest) ProtoMessage()

func (*VerifyBsqSentToAddressRequest) ProtoReflect added in v0.1.5

func (*VerifyBsqSentToAddressRequest) Reset added in v0.1.5

func (x *VerifyBsqSentToAddressRequest) Reset()

func (*VerifyBsqSentToAddressRequest) String added in v0.1.5

type VerseAccountPayload added in v0.1.6

type VerseAccountPayload struct {
	HolderName string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	// contains filtered or unexported fields
}

func (*VerseAccountPayload) Descriptor deprecated added in v0.1.6

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

Deprecated: Use VerseAccountPayload.ProtoReflect.Descriptor instead.

func (*VerseAccountPayload) GetHolderName added in v0.1.6

func (x *VerseAccountPayload) GetHolderName() string

func (*VerseAccountPayload) ProtoMessage added in v0.1.6

func (*VerseAccountPayload) ProtoMessage()

func (*VerseAccountPayload) ProtoReflect added in v0.1.6

func (x *VerseAccountPayload) ProtoReflect() protoreflect.Message

func (*VerseAccountPayload) Reset added in v0.1.6

func (x *VerseAccountPayload) Reset()

func (*VerseAccountPayload) String added in v0.1.6

func (x *VerseAccountPayload) String() string

type Vote added in v0.1.4

type Vote struct {
	Accepted bool `protobuf:"varint,1,opt,name=accepted,proto3" json:"accepted,omitempty"`
	// contains filtered or unexported fields
}

func (*Vote) Descriptor deprecated added in v0.1.4

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

Deprecated: Use Vote.ProtoReflect.Descriptor instead.

func (*Vote) GetAccepted added in v0.1.4

func (x *Vote) GetAccepted() bool

func (*Vote) ProtoMessage added in v0.1.4

func (*Vote) ProtoMessage()

func (*Vote) ProtoReflect added in v0.1.4

func (x *Vote) ProtoReflect() protoreflect.Message

func (*Vote) Reset added in v0.1.4

func (x *Vote) Reset()

func (*Vote) String added in v0.1.4

func (x *Vote) String() string

type VoteWithProposalTxId added in v0.1.4

type VoteWithProposalTxId struct {
	ProposalTxId string `protobuf:"bytes,1,opt,name=proposal_tx_id,json=proposalTxId,proto3" json:"proposal_tx_id,omitempty"`
	Vote         *Vote  `protobuf:"bytes,2,opt,name=vote,proto3" json:"vote,omitempty"`
	// contains filtered or unexported fields
}

func (*VoteWithProposalTxId) Descriptor deprecated added in v0.1.4

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

Deprecated: Use VoteWithProposalTxId.ProtoReflect.Descriptor instead.

func (*VoteWithProposalTxId) GetProposalTxId added in v0.1.4

func (x *VoteWithProposalTxId) GetProposalTxId() string

func (*VoteWithProposalTxId) GetVote added in v0.1.4

func (x *VoteWithProposalTxId) GetVote() *Vote

func (*VoteWithProposalTxId) ProtoMessage added in v0.1.4

func (*VoteWithProposalTxId) ProtoMessage()

func (*VoteWithProposalTxId) ProtoReflect added in v0.1.4

func (x *VoteWithProposalTxId) ProtoReflect() protoreflect.Message

func (*VoteWithProposalTxId) Reset added in v0.1.4

func (x *VoteWithProposalTxId) Reset()

func (*VoteWithProposalTxId) String added in v0.1.4

func (x *VoteWithProposalTxId) String() string

type VoteWithProposalTxIdList added in v0.1.4

type VoteWithProposalTxIdList struct {
	Item []*VoteWithProposalTxId `protobuf:"bytes,1,rep,name=item,proto3" json:"item,omitempty"`
	// contains filtered or unexported fields
}

func (*VoteWithProposalTxIdList) Descriptor deprecated added in v0.1.4

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

Deprecated: Use VoteWithProposalTxIdList.ProtoReflect.Descriptor instead.

func (*VoteWithProposalTxIdList) GetItem added in v0.1.4

func (*VoteWithProposalTxIdList) ProtoMessage added in v0.1.4

func (*VoteWithProposalTxIdList) ProtoMessage()

func (*VoteWithProposalTxIdList) ProtoReflect added in v0.1.4

func (x *VoteWithProposalTxIdList) ProtoReflect() protoreflect.Message

func (*VoteWithProposalTxIdList) Reset added in v0.1.4

func (x *VoteWithProposalTxIdList) Reset()

func (*VoteWithProposalTxIdList) String added in v0.1.4

func (x *VoteWithProposalTxIdList) String() string

type WalletsClient added in v0.1.4

type WalletsClient interface {
	// Get the name of the BTC / BSQ network (mainnet, testnet3, or regtest).
	GetNetwork(ctx context.Context, in *GetNetworkRequest, opts ...grpc.CallOption) (*GetNetworkReply, error)
	// Get the Bisq wallet's current BSQ and BTC balances.
	GetBalances(ctx context.Context, in *GetBalancesRequest, opts ...grpc.CallOption) (*GetBalancesReply, error)
	// Get BTC balance for a wallet address.
	GetAddressBalance(ctx context.Context, in *GetAddressBalanceRequest, opts ...grpc.CallOption) (*GetAddressBalanceReply, error)
	// Get an unused BSQ wallet address.
	GetUnusedBsqAddress(ctx context.Context, in *GetUnusedBsqAddressRequest, opts ...grpc.CallOption) (*GetUnusedBsqAddressReply, error)
	// Send an amount of BSQ to an external address.
	SendBsq(ctx context.Context, in *SendBsqRequest, opts ...grpc.CallOption) (*SendBsqReply, error)
	// Send an amount of BTC to an external address.
	SendBtc(ctx context.Context, in *SendBtcRequest, opts ...grpc.CallOption) (*SendBtcReply, error)
	// Verify a specific amount of BSQ was received by a BSQ wallet address.
	// This is a problematic way of verifying BSQ payment has been received for a v1 trade protocol BSQ-BTC trade,
	// which has been solved by the introduction of BSQ swap trades, which use a different, unused BSQ address for each trade.
	VerifyBsqSentToAddress(ctx context.Context, in *VerifyBsqSentToAddressRequest, opts ...grpc.CallOption) (*VerifyBsqSentToAddressReply, error)
	// Get the Bisq network's most recently available bitcoin miner transaction fee rate, or custom fee rate if set.
	GetTxFeeRate(ctx context.Context, in *GetTxFeeRateRequest, opts ...grpc.CallOption) (*GetTxFeeRateReply, error)
	// Set the Bisq daemon's custom bitcoin miner transaction fee rate, in sats/byte.
	SetTxFeeRatePreference(ctx context.Context, in *SetTxFeeRatePreferenceRequest, opts ...grpc.CallOption) (*SetTxFeeRatePreferenceReply, error)
	// Remove the custom bitcoin miner transaction fee rate;  revert to the Bisq network's bitcoin miner transaction fee rate.
	UnsetTxFeeRatePreference(ctx context.Context, in *UnsetTxFeeRatePreferenceRequest, opts ...grpc.CallOption) (*UnsetTxFeeRatePreferenceReply, error)
	// Get a bitcoin transactions.
	GetTransactions(ctx context.Context, in *GetTransactionsRequest, opts ...grpc.CallOption) (*GetTransactionsReply, error)
	// Get a bitcoin transaction summary.
	GetTransaction(ctx context.Context, in *GetTransactionRequest, opts ...grpc.CallOption) (*GetTransactionReply, error)
	// Get all bitcoin receiving addresses in the Bisq BTC wallet.
	GetFundingAddresses(ctx context.Context, in *GetFundingAddressesRequest, opts ...grpc.CallOption) (*GetFundingAddressesReply, error)
	// Set the Bisq wallet's encryption password.
	SetWalletPassword(ctx context.Context, in *SetWalletPasswordRequest, opts ...grpc.CallOption) (*SetWalletPasswordReply, error)
	// Remove the encryption password from the Bisq wallet.
	RemoveWalletPassword(ctx context.Context, in *RemoveWalletPasswordRequest, opts ...grpc.CallOption) (*RemoveWalletPasswordReply, error)
	// Lock an encrypted Bisq wallet before the UnlockWallet rpc method's timeout period has expired.
	LockWallet(ctx context.Context, in *LockWalletRequest, opts ...grpc.CallOption) (*LockWalletReply, error)
	// Unlock a Bisq encrypted wallet before calling wallet sensitive rpc methods: CreateOffer, TakeOffer, GetBalances,
	// etc., for a timeout period in seconds.  An unlocked wallet will automatically lock itself after the timeout
	// period has expired, or a LockWallet request has been made, whichever is first.  An unlocked wallet's timeout
	// setting can be overridden by subsequent UnlockWallet calls.
	UnlockWallet(ctx context.Context, in *UnlockWalletRequest, opts ...grpc.CallOption) (*UnlockWalletReply, error)
}

WalletsClient is the client API for Wallets service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewWalletsClient added in v0.1.4

func NewWalletsClient(cc grpc.ClientConnInterface) WalletsClient

type WalletsServer added in v0.1.4

type WalletsServer interface {
	// Get the name of the BTC / BSQ network (mainnet, testnet3, or regtest).
	GetNetwork(context.Context, *GetNetworkRequest) (*GetNetworkReply, error)
	// Get the Bisq wallet's current BSQ and BTC balances.
	GetBalances(context.Context, *GetBalancesRequest) (*GetBalancesReply, error)
	// Get BTC balance for a wallet address.
	GetAddressBalance(context.Context, *GetAddressBalanceRequest) (*GetAddressBalanceReply, error)
	// Get an unused BSQ wallet address.
	GetUnusedBsqAddress(context.Context, *GetUnusedBsqAddressRequest) (*GetUnusedBsqAddressReply, error)
	// Send an amount of BSQ to an external address.
	SendBsq(context.Context, *SendBsqRequest) (*SendBsqReply, error)
	// Send an amount of BTC to an external address.
	SendBtc(context.Context, *SendBtcRequest) (*SendBtcReply, error)
	// Verify a specific amount of BSQ was received by a BSQ wallet address.
	// This is a problematic way of verifying BSQ payment has been received for a v1 trade protocol BSQ-BTC trade,
	// which has been solved by the introduction of BSQ swap trades, which use a different, unused BSQ address for each trade.
	VerifyBsqSentToAddress(context.Context, *VerifyBsqSentToAddressRequest) (*VerifyBsqSentToAddressReply, error)
	// Get the Bisq network's most recently available bitcoin miner transaction fee rate, or custom fee rate if set.
	GetTxFeeRate(context.Context, *GetTxFeeRateRequest) (*GetTxFeeRateReply, error)
	// Set the Bisq daemon's custom bitcoin miner transaction fee rate, in sats/byte.
	SetTxFeeRatePreference(context.Context, *SetTxFeeRatePreferenceRequest) (*SetTxFeeRatePreferenceReply, error)
	// Remove the custom bitcoin miner transaction fee rate;  revert to the Bisq network's bitcoin miner transaction fee rate.
	UnsetTxFeeRatePreference(context.Context, *UnsetTxFeeRatePreferenceRequest) (*UnsetTxFeeRatePreferenceReply, error)
	// Get a bitcoin transactions.
	GetTransactions(context.Context, *GetTransactionsRequest) (*GetTransactionsReply, error)
	// Get a bitcoin transaction summary.
	GetTransaction(context.Context, *GetTransactionRequest) (*GetTransactionReply, error)
	// Get all bitcoin receiving addresses in the Bisq BTC wallet.
	GetFundingAddresses(context.Context, *GetFundingAddressesRequest) (*GetFundingAddressesReply, error)
	// Set the Bisq wallet's encryption password.
	SetWalletPassword(context.Context, *SetWalletPasswordRequest) (*SetWalletPasswordReply, error)
	// Remove the encryption password from the Bisq wallet.
	RemoveWalletPassword(context.Context, *RemoveWalletPasswordRequest) (*RemoveWalletPasswordReply, error)
	// Lock an encrypted Bisq wallet before the UnlockWallet rpc method's timeout period has expired.
	LockWallet(context.Context, *LockWalletRequest) (*LockWalletReply, error)
	// Unlock a Bisq encrypted wallet before calling wallet sensitive rpc methods: CreateOffer, TakeOffer, GetBalances,
	// etc., for a timeout period in seconds.  An unlocked wallet will automatically lock itself after the timeout
	// period has expired, or a LockWallet request has been made, whichever is first.  An unlocked wallet's timeout
	// setting can be overridden by subsequent UnlockWallet calls.
	UnlockWallet(context.Context, *UnlockWalletRequest) (*UnlockWalletReply, error)
	// contains filtered or unexported methods
}

WalletsServer is the server API for Wallets service. All implementations must embed UnimplementedWalletsServer for forward compatibility

type WeChatPayAccountPayload added in v0.1.4

type WeChatPayAccountPayload struct {
	AccountNr string `protobuf:"bytes,1,opt,name=account_nr,json=accountNr,proto3" json:"account_nr,omitempty"`
	// contains filtered or unexported fields
}

func (*WeChatPayAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use WeChatPayAccountPayload.ProtoReflect.Descriptor instead.

func (*WeChatPayAccountPayload) GetAccountNr added in v0.1.4

func (x *WeChatPayAccountPayload) GetAccountNr() string

func (*WeChatPayAccountPayload) ProtoMessage added in v0.1.4

func (*WeChatPayAccountPayload) ProtoMessage()

func (*WeChatPayAccountPayload) ProtoReflect added in v0.1.4

func (x *WeChatPayAccountPayload) ProtoReflect() protoreflect.Message

func (*WeChatPayAccountPayload) Reset added in v0.1.4

func (x *WeChatPayAccountPayload) Reset()

func (*WeChatPayAccountPayload) String added in v0.1.4

func (x *WeChatPayAccountPayload) String() string

type WesternUnionAccountPayload added in v0.1.4

type WesternUnionAccountPayload struct {
	HolderName string `protobuf:"bytes,1,opt,name=holder_name,json=holderName,proto3" json:"holder_name,omitempty"`
	City       string `protobuf:"bytes,2,opt,name=city,proto3" json:"city,omitempty"`
	State      string `protobuf:"bytes,3,opt,name=state,proto3" json:"state,omitempty"`
	Email      string `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*WesternUnionAccountPayload) Descriptor deprecated added in v0.1.4

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

Deprecated: Use WesternUnionAccountPayload.ProtoReflect.Descriptor instead.

func (*WesternUnionAccountPayload) GetCity added in v0.1.4

func (x *WesternUnionAccountPayload) GetCity() string

func (*WesternUnionAccountPayload) GetEmail added in v0.1.4

func (x *WesternUnionAccountPayload) GetEmail() string

func (*WesternUnionAccountPayload) GetHolderName added in v0.1.4

func (x *WesternUnionAccountPayload) GetHolderName() string

func (*WesternUnionAccountPayload) GetState added in v0.1.4

func (x *WesternUnionAccountPayload) GetState() string

func (*WesternUnionAccountPayload) ProtoMessage added in v0.1.4

func (*WesternUnionAccountPayload) ProtoMessage()

func (*WesternUnionAccountPayload) ProtoReflect added in v0.1.4

func (*WesternUnionAccountPayload) Reset added in v0.1.4

func (x *WesternUnionAccountPayload) Reset()

func (*WesternUnionAccountPayload) String added in v0.1.4

func (x *WesternUnionAccountPayload) String() string

type WithdrawFundsReply added in v0.1.4

type WithdrawFundsReply struct {
	// contains filtered or unexported fields
}

func (*WithdrawFundsReply) Descriptor deprecated added in v0.1.4

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

Deprecated: Use WithdrawFundsReply.ProtoReflect.Descriptor instead.

func (*WithdrawFundsReply) ProtoMessage added in v0.1.4

func (*WithdrawFundsReply) ProtoMessage()

func (*WithdrawFundsReply) ProtoReflect added in v0.1.4

func (x *WithdrawFundsReply) ProtoReflect() protoreflect.Message

func (*WithdrawFundsReply) Reset added in v0.1.4

func (x *WithdrawFundsReply) Reset()

func (*WithdrawFundsReply) String added in v0.1.4

func (x *WithdrawFundsReply) String() string

type WithdrawFundsRequest added in v0.1.4

type WithdrawFundsRequest struct {
	TradeId string `protobuf:"bytes,1,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"` // The unique identifier of the trade.
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`                // The receiver's bitcoin wallet address.
	Memo    string `protobuf:"bytes,3,opt,name=memo,proto3" json:"memo,omitempty"`                      // An optional memo saved with the sent btc transaction.
	// contains filtered or unexported fields
}

func (*WithdrawFundsRequest) Descriptor deprecated added in v0.1.4

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

Deprecated: Use WithdrawFundsRequest.ProtoReflect.Descriptor instead.

func (*WithdrawFundsRequest) GetAddress added in v0.1.4

func (x *WithdrawFundsRequest) GetAddress() string

func (*WithdrawFundsRequest) GetMemo added in v0.1.4

func (x *WithdrawFundsRequest) GetMemo() string

func (*WithdrawFundsRequest) GetTradeId added in v0.1.4

func (x *WithdrawFundsRequest) GetTradeId() string

func (*WithdrawFundsRequest) ProtoMessage added in v0.1.4

func (*WithdrawFundsRequest) ProtoMessage()

func (*WithdrawFundsRequest) ProtoReflect added in v0.1.4

func (x *WithdrawFundsRequest) ProtoReflect() protoreflect.Message

func (*WithdrawFundsRequest) Reset added in v0.1.4

func (x *WithdrawFundsRequest) Reset()

func (*WithdrawFundsRequest) String added in v0.1.4

func (x *WithdrawFundsRequest) String() string

Jump to

Keyboard shortcuts

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