bump version, update docs and dist

This commit is contained in:
woodser 2022-06-07 17:48:04 -04:00
parent f4d1b6a0a2
commit 6640dcb2ee
849 changed files with 8355 additions and 1766 deletions

View File

@ -403,14 +403,14 @@ export default class HavenoClient {
* @param {bigint} amount - amount of XMR to trade
* @param {string} assetCode - asset code to trade for XMR
* @param {string} paymentAccountId - payment account id
* @param {number} buyerSecurityDeposit - buyer security deposit as % of trade amount
* @param {number} buyerSecurityDepositPct - buyer security deposit as % of trade amount
* @param {number} price - trade price (optional, default to market price)
* @param {number} marketPriceMargin - if using market price, % from market price to accept (optional, default 0%)
* @param {number} marketPriceMarginPct - if using market price, % from market price to accept (optional, default 0%)
* @param {bigint} minAmount - minimum amount to trade (optional, default to fixed amount)
* @param {number} triggerPrice - price to remove offer (optional)
* @return {OfferInfo} the posted offer
*/
postOffer(direction: string, amount: bigint, assetCode: string, paymentAccountId: string, buyerSecurityDeposit: number, price?: number, marketPriceMargin?: number, triggerPrice?: number, minAmount?: bigint): Promise<OfferInfo>;
postOffer(direction: string, amount: bigint, assetCode: string, paymentAccountId: string, buyerSecurityDepositPct: number, price?: number, marketPriceMarginPct?: number, triggerPrice?: number, minAmount?: bigint): Promise<OfferInfo>;
/**
* Remove a posted offer, releasing its reserved funds.
*

1580
dist/HavenoClient.js vendored

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

2
dist/index.d.ts vendored
View File

@ -1,6 +1,8 @@
import HavenoClient from "./HavenoClient";
import HavenoError from "./utils/HavenoError";
import HavenoUtils from "./utils/HavenoUtils";
export { HavenoClient };
export { HavenoError };
export { HavenoUtils };
export * from "./protobuf/grpc_pb";
export * from "./protobuf/pb_pb";

4
dist/index.js vendored
View File

@ -17,9 +17,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.HavenoUtils = exports.HavenoClient = void 0;
exports.HavenoUtils = exports.HavenoError = exports.HavenoClient = void 0;
const HavenoClient_1 = __importDefault(require("./HavenoClient"));
exports.HavenoClient = HavenoClient_1.default;
const HavenoError_1 = __importDefault(require("./utils/HavenoError"));
exports.HavenoError = HavenoError_1.default;
const HavenoUtils_1 = __importDefault(require("./utils/HavenoUtils"));
exports.HavenoUtils = HavenoUtils_1.default;
__exportStar(require("./protobuf/grpc_pb"), exports);

2
dist/index.js.map vendored
View File

@ -1 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,kEAA0C;AAGjC,uBAHF,sBAAY,CAGE;AAFrB,sEAA8C;AAGrC,sBAHF,qBAAW,CAGE;AACpB,qDAAmC;AACnC,mDAAiC"}
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,kEAA0C;AAIjC,uBAJF,sBAAY,CAIE;AAHrB,sEAA8C;AAIrC,sBAJF,qBAAW,CAIE;AAHpB,sEAA8C;AAIrC,sBAJF,qBAAW,CAIE;AACpB,qDAAmC;AACnC,mDAAiC"}

View File

@ -1447,8 +1447,8 @@ export class CreateOfferRequest extends jspb.Message {
getUseMarketBasedPrice(): boolean;
setUseMarketBasedPrice(value: boolean): CreateOfferRequest;
getMarketPriceMargin(): number;
setMarketPriceMargin(value: number): CreateOfferRequest;
getMarketPriceMarginPct(): number;
setMarketPriceMarginPct(value: number): CreateOfferRequest;
getAmount(): string;
setAmount(value: string): CreateOfferRequest;
@ -1456,8 +1456,8 @@ export class CreateOfferRequest extends jspb.Message {
getMinAmount(): string;
setMinAmount(value: string): CreateOfferRequest;
getBuyerSecurityDeposit(): number;
setBuyerSecurityDeposit(value: number): CreateOfferRequest;
getBuyerSecurityDepositPct(): number;
setBuyerSecurityDepositPct(value: number): CreateOfferRequest;
getTriggerPrice(): string;
setTriggerPrice(value: string): CreateOfferRequest;
@ -1479,10 +1479,10 @@ export namespace CreateOfferRequest {
direction: string,
price: string,
useMarketBasedPrice: boolean,
marketPriceMargin: number,
marketPriceMarginPct: number,
amount: string,
minAmount: string,
buyerSecurityDeposit: number,
buyerSecurityDepositPct: number,
triggerPrice: string,
paymentAccountId: string,
}
@ -1547,14 +1547,14 @@ export class OfferInfo extends jspb.Message {
getDirection(): string;
setDirection(value: string): OfferInfo;
getPrice(): number;
setPrice(value: number): OfferInfo;
getPrice(): string;
setPrice(value: string): OfferInfo;
getUseMarketBasedPrice(): boolean;
setUseMarketBasedPrice(value: boolean): OfferInfo;
getMarketPriceMargin(): number;
setMarketPriceMargin(value: number): OfferInfo;
getMarketPriceMarginPct(): number;
setMarketPriceMarginPct(value: number): OfferInfo;
getAmount(): number;
setAmount(value: number): OfferInfo;
@ -1562,17 +1562,17 @@ export class OfferInfo extends jspb.Message {
getMinAmount(): number;
setMinAmount(value: number): OfferInfo;
getVolume(): number;
setVolume(value: number): OfferInfo;
getVolume(): string;
setVolume(value: string): OfferInfo;
getMinVolume(): number;
setMinVolume(value: number): OfferInfo;
getMinVolume(): string;
setMinVolume(value: string): OfferInfo;
getBuyerSecurityDeposit(): number;
setBuyerSecurityDeposit(value: number): OfferInfo;
getTriggerPrice(): number;
setTriggerPrice(value: number): OfferInfo;
getTriggerPrice(): string;
setTriggerPrice(value: string): OfferInfo;
getPaymentAccountId(): string;
setPaymentAccountId(value: string): OfferInfo;
@ -1607,6 +1607,24 @@ export class OfferInfo extends jspb.Message {
getMakerFee(): number;
setMakerFee(value: number): OfferInfo;
getIsActivated(): boolean;
setIsActivated(value: boolean): OfferInfo;
getIsMyOffer(): boolean;
setIsMyOffer(value: boolean): OfferInfo;
getOwnerNodeAddress(): string;
setOwnerNodeAddress(value: string): OfferInfo;
getPubKeyRing(): string;
setPubKeyRing(value: string): OfferInfo;
getVersionNr(): string;
setVersionNr(value: string): OfferInfo;
getProtocolVersion(): number;
setProtocolVersion(value: number): OfferInfo;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): OfferInfo.AsObject;
static toObject(includeInstance: boolean, msg: OfferInfo): OfferInfo.AsObject;
@ -1619,15 +1637,15 @@ export namespace OfferInfo {
export type AsObject = {
id: string,
direction: string,
price: number,
price: string,
useMarketBasedPrice: boolean,
marketPriceMargin: number,
marketPriceMarginPct: number,
amount: number,
minAmount: number,
volume: number,
minVolume: number,
volume: string,
minVolume: string,
buyerSecurityDeposit: number,
triggerPrice: number,
triggerPrice: string,
paymentAccountId: string,
paymentMethodId: string,
paymentMethodShortName: string,
@ -1639,6 +1657,12 @@ export namespace OfferInfo {
offerFeePaymentTxId: string,
txFee: number,
makerFee: number,
isActivated: boolean,
isMyOffer: boolean,
ownerNodeAddress: string,
pubKeyRing: string,
versionNr: string,
protocolVersion: number,
}
}
@ -2275,6 +2299,9 @@ export namespace GetTradeReply {
}
export class GetTradesRequest extends jspb.Message {
getCategory(): GetTradesRequest.Category;
setCategory(value: GetTradesRequest.Category): GetTradesRequest;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): GetTradesRequest.AsObject;
static toObject(includeInstance: boolean, msg: GetTradesRequest): GetTradesRequest.AsObject;
@ -2285,6 +2312,13 @@ export class GetTradesRequest extends jspb.Message {
export namespace GetTradesRequest {
export type AsObject = {
category: GetTradesRequest.Category,
}
export enum Category {
OPEN = 0,
CLOSED = 1,
FAILED = 2,
}
}
@ -2484,11 +2518,11 @@ export class TradeInfo extends jspb.Message {
getPayoutTxId(): string;
setPayoutTxId(value: string): TradeInfo;
getTradeAmountAsLong(): number;
setTradeAmountAsLong(value: number): TradeInfo;
getAmountAsLong(): number;
setAmountAsLong(value: number): TradeInfo;
getTradePrice(): number;
setTradePrice(value: number): TradeInfo;
getPrice(): string;
setPrice(value: string): TradeInfo;
getTradingPeerNodeAddress(): string;
setTradingPeerNodeAddress(value: string): TradeInfo;
@ -2499,8 +2533,8 @@ export class TradeInfo extends jspb.Message {
getPhase(): string;
setPhase(value: string): TradeInfo;
getTradePeriodState(): string;
setTradePeriodState(value: string): TradeInfo;
getPeriodState(): string;
setPeriodState(value: string): TradeInfo;
getIsDepositPublished(): boolean;
setIsDepositPublished(value: boolean): TradeInfo;
@ -2517,8 +2551,8 @@ export class TradeInfo extends jspb.Message {
getIsPayoutPublished(): boolean;
setIsPayoutPublished(value: boolean): TradeInfo;
getIsWithdrawn(): boolean;
setIsWithdrawn(value: boolean): TradeInfo;
getIsCompleted(): boolean;
setIsCompleted(value: boolean): TradeInfo;
getContractAsJson(): string;
setContractAsJson(value: string): TradeInfo;
@ -2528,6 +2562,9 @@ export class TradeInfo extends jspb.Message {
hasContract(): boolean;
clearContract(): TradeInfo;
getTradeVolume(): string;
setTradeVolume(value: string): TradeInfo;
getMakerDepositTxId(): string;
setMakerDepositTxId(value: string): TradeInfo;
@ -2553,20 +2590,21 @@ export namespace TradeInfo {
takerFeeAsLong: number,
takerFeeTxId: string,
payoutTxId: string,
tradeAmountAsLong: number,
tradePrice: number,
amountAsLong: number,
price: string,
tradingPeerNodeAddress: string,
state: string,
phase: string,
tradePeriodState: string,
periodState: string,
isDepositPublished: boolean,
isDepositUnlocked: boolean,
isPaymentSent: boolean,
isPaymentReceived: boolean,
isPayoutPublished: boolean,
isWithdrawn: boolean,
isCompleted: boolean,
contractAsJson: string,
contract?: ContractInfo.AsObject,
tradeVolume: string,
makerDepositTxId: string,
takerDepositTxId: string,
}
@ -2644,6 +2682,9 @@ export class PaymentAccountPayloadInfo extends jspb.Message {
getAddress(): string;
setAddress(value: string): PaymentAccountPayloadInfo;
getPaymentDetails(): string;
setPaymentDetails(value: string): PaymentAccountPayloadInfo;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): PaymentAccountPayloadInfo.AsObject;
static toObject(includeInstance: boolean, msg: PaymentAccountPayloadInfo): PaymentAccountPayloadInfo.AsObject;
@ -2657,6 +2698,7 @@ export namespace PaymentAccountPayloadInfo {
id: string,
paymentMethodId: string,
address: string,
paymentDetails: string,
}
}

View File

@ -98,6 +98,7 @@ goog.exportSymbol('proto.io.bisq.protobuffer.GetTradeStatisticsReply', null, glo
goog.exportSymbol('proto.io.bisq.protobuffer.GetTradeStatisticsRequest', null, global);
goog.exportSymbol('proto.io.bisq.protobuffer.GetTradesReply', null, global);
goog.exportSymbol('proto.io.bisq.protobuffer.GetTradesRequest', null, global);
goog.exportSymbol('proto.io.bisq.protobuffer.GetTradesRequest.Category', null, global);
goog.exportSymbol('proto.io.bisq.protobuffer.GetTransactionReply', null, global);
goog.exportSymbol('proto.io.bisq.protobuffer.GetTransactionRequest', null, global);
goog.exportSymbol('proto.io.bisq.protobuffer.GetTxFeeRateReply', null, global);
@ -14374,10 +14375,10 @@ proto.io.bisq.protobuffer.CreateOfferRequest.toObject = function(includeInstance
direction: jspb.Message.getFieldWithDefault(msg, 2, ""),
price: jspb.Message.getFieldWithDefault(msg, 3, ""),
useMarketBasedPrice: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
marketPriceMargin: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
marketPriceMarginPct: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
amount: jspb.Message.getFieldWithDefault(msg, 6, "0"),
minAmount: jspb.Message.getFieldWithDefault(msg, 7, "0"),
buyerSecurityDeposit: jspb.Message.getFloatingPointFieldWithDefault(msg, 8, 0.0),
buyerSecurityDepositPct: jspb.Message.getFloatingPointFieldWithDefault(msg, 8, 0.0),
triggerPrice: jspb.Message.getFieldWithDefault(msg, 9, ""),
paymentAccountId: jspb.Message.getFieldWithDefault(msg, 10, "")
};
@ -14434,7 +14435,7 @@ proto.io.bisq.protobuffer.CreateOfferRequest.deserializeBinaryFromReader = funct
break;
case 5:
var value = /** @type {number} */ (reader.readDouble());
msg.setMarketPriceMargin(value);
msg.setMarketPriceMarginPct(value);
break;
case 6:
var value = /** @type {string} */ (reader.readUint64String());
@ -14446,7 +14447,7 @@ proto.io.bisq.protobuffer.CreateOfferRequest.deserializeBinaryFromReader = funct
break;
case 8:
var value = /** @type {number} */ (reader.readDouble());
msg.setBuyerSecurityDeposit(value);
msg.setBuyerSecurityDepositPct(value);
break;
case 9:
var value = /** @type {string} */ (reader.readString());
@ -14513,7 +14514,7 @@ proto.io.bisq.protobuffer.CreateOfferRequest.serializeBinaryToWriter = function(
f
);
}
f = message.getMarketPriceMargin();
f = message.getMarketPriceMarginPct();
if (f !== 0.0) {
writer.writeDouble(
5,
@ -14534,7 +14535,7 @@ proto.io.bisq.protobuffer.CreateOfferRequest.serializeBinaryToWriter = function(
f
);
}
f = message.getBuyerSecurityDeposit();
f = message.getBuyerSecurityDepositPct();
if (f !== 0.0) {
writer.writeDouble(
8,
@ -14631,10 +14632,10 @@ proto.io.bisq.protobuffer.CreateOfferRequest.prototype.setUseMarketBasedPrice =
/**
* optional double market_price_margin = 5;
* optional double market_price_margin_pct = 5;
* @return {number}
*/
proto.io.bisq.protobuffer.CreateOfferRequest.prototype.getMarketPriceMargin = function() {
proto.io.bisq.protobuffer.CreateOfferRequest.prototype.getMarketPriceMarginPct = function() {
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 5, 0.0));
};
@ -14643,7 +14644,7 @@ proto.io.bisq.protobuffer.CreateOfferRequest.prototype.getMarketPriceMargin = fu
* @param {number} value
* @return {!proto.io.bisq.protobuffer.CreateOfferRequest} returns this
*/
proto.io.bisq.protobuffer.CreateOfferRequest.prototype.setMarketPriceMargin = function(value) {
proto.io.bisq.protobuffer.CreateOfferRequest.prototype.setMarketPriceMarginPct = function(value) {
return jspb.Message.setProto3FloatField(this, 5, value);
};
@ -14685,10 +14686,10 @@ proto.io.bisq.protobuffer.CreateOfferRequest.prototype.setMinAmount = function(v
/**
* optional double buyer_security_deposit = 8;
* optional double buyer_security_deposit_pct = 8;
* @return {number}
*/
proto.io.bisq.protobuffer.CreateOfferRequest.prototype.getBuyerSecurityDeposit = function() {
proto.io.bisq.protobuffer.CreateOfferRequest.prototype.getBuyerSecurityDepositPct = function() {
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 8, 0.0));
};
@ -14697,7 +14698,7 @@ proto.io.bisq.protobuffer.CreateOfferRequest.prototype.getBuyerSecurityDeposit =
* @param {number} value
* @return {!proto.io.bisq.protobuffer.CreateOfferRequest} returns this
*/
proto.io.bisq.protobuffer.CreateOfferRequest.prototype.setBuyerSecurityDeposit = function(value) {
proto.io.bisq.protobuffer.CreateOfferRequest.prototype.setBuyerSecurityDepositPct = function(value) {
return jspb.Message.setProto3FloatField(this, 8, value);
};
@ -15154,15 +15155,15 @@ proto.io.bisq.protobuffer.OfferInfo.toObject = function(includeInstance, msg) {
var f, obj = {
id: jspb.Message.getFieldWithDefault(msg, 1, ""),
direction: jspb.Message.getFieldWithDefault(msg, 2, ""),
price: jspb.Message.getFieldWithDefault(msg, 3, 0),
price: jspb.Message.getFieldWithDefault(msg, 3, ""),
useMarketBasedPrice: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
marketPriceMargin: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
marketPriceMarginPct: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
amount: jspb.Message.getFieldWithDefault(msg, 6, 0),
minAmount: jspb.Message.getFieldWithDefault(msg, 7, 0),
volume: jspb.Message.getFieldWithDefault(msg, 8, 0),
minVolume: jspb.Message.getFieldWithDefault(msg, 9, 0),
volume: jspb.Message.getFieldWithDefault(msg, 8, ""),
minVolume: jspb.Message.getFieldWithDefault(msg, 9, ""),
buyerSecurityDeposit: jspb.Message.getFieldWithDefault(msg, 10, 0),
triggerPrice: jspb.Message.getFieldWithDefault(msg, 11, 0),
triggerPrice: jspb.Message.getFieldWithDefault(msg, 11, ""),
paymentAccountId: jspb.Message.getFieldWithDefault(msg, 12, ""),
paymentMethodId: jspb.Message.getFieldWithDefault(msg, 13, ""),
paymentMethodShortName: jspb.Message.getFieldWithDefault(msg, 14, ""),
@ -15173,7 +15174,13 @@ proto.io.bisq.protobuffer.OfferInfo.toObject = function(includeInstance, msg) {
sellerSecurityDeposit: jspb.Message.getFieldWithDefault(msg, 19, 0),
offerFeePaymentTxId: jspb.Message.getFieldWithDefault(msg, 20, ""),
txFee: jspb.Message.getFieldWithDefault(msg, 21, 0),
makerFee: jspb.Message.getFieldWithDefault(msg, 22, 0)
makerFee: jspb.Message.getFieldWithDefault(msg, 22, 0),
isActivated: jspb.Message.getBooleanFieldWithDefault(msg, 23, false),
isMyOffer: jspb.Message.getBooleanFieldWithDefault(msg, 24, false),
ownerNodeAddress: jspb.Message.getFieldWithDefault(msg, 25, ""),
pubKeyRing: jspb.Message.getFieldWithDefault(msg, 26, ""),
versionNr: jspb.Message.getFieldWithDefault(msg, 27, ""),
protocolVersion: jspb.Message.getFieldWithDefault(msg, 28, 0)
};
if (includeInstance) {
@ -15219,7 +15226,7 @@ proto.io.bisq.protobuffer.OfferInfo.deserializeBinaryFromReader = function(msg,
msg.setDirection(value);
break;
case 3:
var value = /** @type {number} */ (reader.readUint64());
var value = /** @type {string} */ (reader.readString());
msg.setPrice(value);
break;
case 4:
@ -15228,7 +15235,7 @@ proto.io.bisq.protobuffer.OfferInfo.deserializeBinaryFromReader = function(msg,
break;
case 5:
var value = /** @type {number} */ (reader.readDouble());
msg.setMarketPriceMargin(value);
msg.setMarketPriceMarginPct(value);
break;
case 6:
var value = /** @type {number} */ (reader.readUint64());
@ -15239,11 +15246,11 @@ proto.io.bisq.protobuffer.OfferInfo.deserializeBinaryFromReader = function(msg,
msg.setMinAmount(value);
break;
case 8:
var value = /** @type {number} */ (reader.readUint64());
var value = /** @type {string} */ (reader.readString());
msg.setVolume(value);
break;
case 9:
var value = /** @type {number} */ (reader.readUint64());
var value = /** @type {string} */ (reader.readString());
msg.setMinVolume(value);
break;
case 10:
@ -15251,7 +15258,7 @@ proto.io.bisq.protobuffer.OfferInfo.deserializeBinaryFromReader = function(msg,
msg.setBuyerSecurityDeposit(value);
break;
case 11:
var value = /** @type {number} */ (reader.readUint64());
var value = /** @type {string} */ (reader.readString());
msg.setTriggerPrice(value);
break;
case 12:
@ -15298,6 +15305,30 @@ proto.io.bisq.protobuffer.OfferInfo.deserializeBinaryFromReader = function(msg,
var value = /** @type {number} */ (reader.readUint64());
msg.setMakerFee(value);
break;
case 23:
var value = /** @type {boolean} */ (reader.readBool());
msg.setIsActivated(value);
break;
case 24:
var value = /** @type {boolean} */ (reader.readBool());
msg.setIsMyOffer(value);
break;
case 25:
var value = /** @type {string} */ (reader.readString());
msg.setOwnerNodeAddress(value);
break;
case 26:
var value = /** @type {string} */ (reader.readString());
msg.setPubKeyRing(value);
break;
case 27:
var value = /** @type {string} */ (reader.readString());
msg.setVersionNr(value);
break;
case 28:
var value = /** @type {number} */ (reader.readInt32());
msg.setProtocolVersion(value);
break;
default:
reader.skipField();
break;
@ -15342,8 +15373,8 @@ proto.io.bisq.protobuffer.OfferInfo.serializeBinaryToWriter = function(message,
);
}
f = message.getPrice();
if (f !== 0) {
writer.writeUint64(
if (f.length > 0) {
writer.writeString(
3,
f
);
@ -15355,7 +15386,7 @@ proto.io.bisq.protobuffer.OfferInfo.serializeBinaryToWriter = function(message,
f
);
}
f = message.getMarketPriceMargin();
f = message.getMarketPriceMarginPct();
if (f !== 0.0) {
writer.writeDouble(
5,
@ -15377,15 +15408,15 @@ proto.io.bisq.protobuffer.OfferInfo.serializeBinaryToWriter = function(message,
);
}
f = message.getVolume();
if (f !== 0) {
writer.writeUint64(
if (f.length > 0) {
writer.writeString(
8,
f
);
}
f = message.getMinVolume();
if (f !== 0) {
writer.writeUint64(
if (f.length > 0) {
writer.writeString(
9,
f
);
@ -15398,8 +15429,8 @@ proto.io.bisq.protobuffer.OfferInfo.serializeBinaryToWriter = function(message,
);
}
f = message.getTriggerPrice();
if (f !== 0) {
writer.writeUint64(
if (f.length > 0) {
writer.writeString(
11,
f
);
@ -15481,6 +15512,48 @@ proto.io.bisq.protobuffer.OfferInfo.serializeBinaryToWriter = function(message,
f
);
}
f = message.getIsActivated();
if (f) {
writer.writeBool(
23,
f
);
}
f = message.getIsMyOffer();
if (f) {
writer.writeBool(
24,
f
);
}
f = message.getOwnerNodeAddress();
if (f.length > 0) {
writer.writeString(
25,
f
);
}
f = message.getPubKeyRing();
if (f.length > 0) {
writer.writeString(
26,
f
);
}
f = message.getVersionNr();
if (f.length > 0) {
writer.writeString(
27,
f
);
}
f = message.getProtocolVersion();
if (f !== 0) {
writer.writeInt32(
28,
f
);
}
};
@ -15521,20 +15594,20 @@ proto.io.bisq.protobuffer.OfferInfo.prototype.setDirection = function(value) {
/**
* optional uint64 price = 3;
* @return {number}
* optional string price = 3;
* @return {string}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getPrice = function() {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
};
/**
* @param {number} value
* @param {string} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setPrice = function(value) {
return jspb.Message.setProto3IntField(this, 3, value);
return jspb.Message.setProto3StringField(this, 3, value);
};
@ -15557,10 +15630,10 @@ proto.io.bisq.protobuffer.OfferInfo.prototype.setUseMarketBasedPrice = function(
/**
* optional double market_price_margin = 5;
* optional double market_price_margin_pct = 5;
* @return {number}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getMarketPriceMargin = function() {
proto.io.bisq.protobuffer.OfferInfo.prototype.getMarketPriceMarginPct = function() {
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 5, 0.0));
};
@ -15569,7 +15642,7 @@ proto.io.bisq.protobuffer.OfferInfo.prototype.getMarketPriceMargin = function()
* @param {number} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setMarketPriceMargin = function(value) {
proto.io.bisq.protobuffer.OfferInfo.prototype.setMarketPriceMarginPct = function(value) {
return jspb.Message.setProto3FloatField(this, 5, value);
};
@ -15611,38 +15684,38 @@ proto.io.bisq.protobuffer.OfferInfo.prototype.setMinAmount = function(value) {
/**
* optional uint64 volume = 8;
* @return {number}
* optional string volume = 8;
* @return {string}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getVolume = function() {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
};
/**
* @param {number} value
* @param {string} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setVolume = function(value) {
return jspb.Message.setProto3IntField(this, 8, value);
return jspb.Message.setProto3StringField(this, 8, value);
};
/**
* optional uint64 min_volume = 9;
* @return {number}
* optional string min_volume = 9;
* @return {string}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getMinVolume = function() {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
};
/**
* @param {number} value
* @param {string} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setMinVolume = function(value) {
return jspb.Message.setProto3IntField(this, 9, value);
return jspb.Message.setProto3StringField(this, 9, value);
};
@ -15665,20 +15738,20 @@ proto.io.bisq.protobuffer.OfferInfo.prototype.setBuyerSecurityDeposit = function
/**
* optional uint64 trigger_price = 11;
* @return {number}
* optional string trigger_price = 11;
* @return {string}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getTriggerPrice = function() {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 11, 0));
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
};
/**
* @param {number} value
* @param {string} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setTriggerPrice = function(value) {
return jspb.Message.setProto3IntField(this, 11, value);
return jspb.Message.setProto3StringField(this, 11, value);
};
@ -15880,6 +15953,114 @@ proto.io.bisq.protobuffer.OfferInfo.prototype.setMakerFee = function(value) {
};
/**
* optional bool is_activated = 23;
* @return {boolean}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getIsActivated = function() {
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 23, false));
};
/**
* @param {boolean} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setIsActivated = function(value) {
return jspb.Message.setProto3BooleanField(this, 23, value);
};
/**
* optional bool is_my_offer = 24;
* @return {boolean}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getIsMyOffer = function() {
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 24, false));
};
/**
* @param {boolean} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setIsMyOffer = function(value) {
return jspb.Message.setProto3BooleanField(this, 24, value);
};
/**
* optional string owner_node_address = 25;
* @return {string}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getOwnerNodeAddress = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 25, ""));
};
/**
* @param {string} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setOwnerNodeAddress = function(value) {
return jspb.Message.setProto3StringField(this, 25, value);
};
/**
* optional string pub_key_ring = 26;
* @return {string}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getPubKeyRing = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 26, ""));
};
/**
* @param {string} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setPubKeyRing = function(value) {
return jspb.Message.setProto3StringField(this, 26, value);
};
/**
* optional string version_nr = 27;
* @return {string}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getVersionNr = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
};
/**
* @param {string} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setVersionNr = function(value) {
return jspb.Message.setProto3StringField(this, 27, value);
};
/**
* optional int32 protocol_version = 28;
* @return {number}
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.getProtocolVersion = function() {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 28, 0));
};
/**
* @param {number} value
* @return {!proto.io.bisq.protobuffer.OfferInfo} returns this
*/
proto.io.bisq.protobuffer.OfferInfo.prototype.setProtocolVersion = function(value) {
return jspb.Message.setProto3IntField(this, 28, value);
};
@ -20638,7 +20819,7 @@ proto.io.bisq.protobuffer.GetTradesRequest.prototype.toObject = function(opt_inc
*/
proto.io.bisq.protobuffer.GetTradesRequest.toObject = function(includeInstance, msg) {
var f, obj = {
category: jspb.Message.getFieldWithDefault(msg, 1, 0)
};
if (includeInstance) {
@ -20675,6 +20856,10 @@ proto.io.bisq.protobuffer.GetTradesRequest.deserializeBinaryFromReader = functio
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {!proto.io.bisq.protobuffer.GetTradesRequest.Category} */ (reader.readEnum());
msg.setCategory(value);
break;
default:
reader.skipField();
break;
@ -20704,6 +20889,40 @@ proto.io.bisq.protobuffer.GetTradesRequest.prototype.serializeBinary = function(
*/
proto.io.bisq.protobuffer.GetTradesRequest.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getCategory();
if (f !== 0.0) {
writer.writeEnum(
1,
f
);
}
};
/**
* @enum {number}
*/
proto.io.bisq.protobuffer.GetTradesRequest.Category = {
OPEN: 0,
CLOSED: 1,
FAILED: 2
};
/**
* optional Category category = 1;
* @return {!proto.io.bisq.protobuffer.GetTradesRequest.Category}
*/
proto.io.bisq.protobuffer.GetTradesRequest.prototype.getCategory = function() {
return /** @type {!proto.io.bisq.protobuffer.GetTradesRequest.Category} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
};
/**
* @param {!proto.io.bisq.protobuffer.GetTradesRequest.Category} value
* @return {!proto.io.bisq.protobuffer.GetTradesRequest} returns this
*/
proto.io.bisq.protobuffer.GetTradesRequest.prototype.setCategory = function(value) {
return jspb.Message.setProto3EnumField(this, 1, value);
};
@ -21981,20 +22200,21 @@ proto.io.bisq.protobuffer.TradeInfo.toObject = function(includeInstance, msg) {
takerFeeAsLong: jspb.Message.getFieldWithDefault(msg, 8, 0),
takerFeeTxId: jspb.Message.getFieldWithDefault(msg, 9, ""),
payoutTxId: jspb.Message.getFieldWithDefault(msg, 11, ""),
tradeAmountAsLong: jspb.Message.getFieldWithDefault(msg, 12, 0),
tradePrice: jspb.Message.getFieldWithDefault(msg, 13, 0),
amountAsLong: jspb.Message.getFieldWithDefault(msg, 12, 0),
price: jspb.Message.getFieldWithDefault(msg, 13, ""),
tradingPeerNodeAddress: jspb.Message.getFieldWithDefault(msg, 14, ""),
state: jspb.Message.getFieldWithDefault(msg, 15, ""),
phase: jspb.Message.getFieldWithDefault(msg, 16, ""),
tradePeriodState: jspb.Message.getFieldWithDefault(msg, 17, ""),
periodState: jspb.Message.getFieldWithDefault(msg, 17, ""),
isDepositPublished: jspb.Message.getBooleanFieldWithDefault(msg, 18, false),
isDepositUnlocked: jspb.Message.getBooleanFieldWithDefault(msg, 19, false),
isPaymentSent: jspb.Message.getBooleanFieldWithDefault(msg, 20, false),
isPaymentReceived: jspb.Message.getBooleanFieldWithDefault(msg, 21, false),
isPayoutPublished: jspb.Message.getBooleanFieldWithDefault(msg, 22, false),
isWithdrawn: jspb.Message.getBooleanFieldWithDefault(msg, 23, false),
isCompleted: jspb.Message.getBooleanFieldWithDefault(msg, 23, false),
contractAsJson: jspb.Message.getFieldWithDefault(msg, 24, ""),
contract: (f = msg.getContract()) && proto.io.bisq.protobuffer.ContractInfo.toObject(includeInstance, f),
tradeVolume: jspb.Message.getFieldWithDefault(msg, 26, ""),
makerDepositTxId: jspb.Message.getFieldWithDefault(msg, 100, ""),
takerDepositTxId: jspb.Message.getFieldWithDefault(msg, 101, "")
};
@ -22072,11 +22292,11 @@ proto.io.bisq.protobuffer.TradeInfo.deserializeBinaryFromReader = function(msg,
break;
case 12:
var value = /** @type {number} */ (reader.readUint64());
msg.setTradeAmountAsLong(value);
msg.setAmountAsLong(value);
break;
case 13:
var value = /** @type {number} */ (reader.readUint64());
msg.setTradePrice(value);
var value = /** @type {string} */ (reader.readString());
msg.setPrice(value);
break;
case 14:
var value = /** @type {string} */ (reader.readString());
@ -22092,7 +22312,7 @@ proto.io.bisq.protobuffer.TradeInfo.deserializeBinaryFromReader = function(msg,
break;
case 17:
var value = /** @type {string} */ (reader.readString());
msg.setTradePeriodState(value);
msg.setPeriodState(value);
break;
case 18:
var value = /** @type {boolean} */ (reader.readBool());
@ -22116,7 +22336,7 @@ proto.io.bisq.protobuffer.TradeInfo.deserializeBinaryFromReader = function(msg,
break;
case 23:
var value = /** @type {boolean} */ (reader.readBool());
msg.setIsWithdrawn(value);
msg.setIsCompleted(value);
break;
case 24:
var value = /** @type {string} */ (reader.readString());
@ -22127,6 +22347,10 @@ proto.io.bisq.protobuffer.TradeInfo.deserializeBinaryFromReader = function(msg,
reader.readMessage(value,proto.io.bisq.protobuffer.ContractInfo.deserializeBinaryFromReader);
msg.setContract(value);
break;
case 26:
var value = /** @type {string} */ (reader.readString());
msg.setTradeVolume(value);
break;
case 100:
var value = /** @type {string} */ (reader.readString());
msg.setMakerDepositTxId(value);
@ -22228,16 +22452,16 @@ proto.io.bisq.protobuffer.TradeInfo.serializeBinaryToWriter = function(message,
f
);
}
f = message.getTradeAmountAsLong();
f = message.getAmountAsLong();
if (f !== 0) {
writer.writeUint64(
12,
f
);
}
f = message.getTradePrice();
if (f !== 0) {
writer.writeUint64(
f = message.getPrice();
if (f.length > 0) {
writer.writeString(
13,
f
);
@ -22263,7 +22487,7 @@ proto.io.bisq.protobuffer.TradeInfo.serializeBinaryToWriter = function(message,
f
);
}
f = message.getTradePeriodState();
f = message.getPeriodState();
if (f.length > 0) {
writer.writeString(
17,
@ -22305,7 +22529,7 @@ proto.io.bisq.protobuffer.TradeInfo.serializeBinaryToWriter = function(message,
f
);
}
f = message.getIsWithdrawn();
f = message.getIsCompleted();
if (f) {
writer.writeBool(
23,
@ -22327,6 +22551,13 @@ proto.io.bisq.protobuffer.TradeInfo.serializeBinaryToWriter = function(message,
proto.io.bisq.protobuffer.ContractInfo.serializeBinaryToWriter
);
}
f = message.getTradeVolume();
if (f.length > 0) {
writer.writeString(
26,
f
);
}
f = message.getMakerDepositTxId();
if (f.length > 0) {
writer.writeString(
@ -22526,10 +22757,10 @@ proto.io.bisq.protobuffer.TradeInfo.prototype.setPayoutTxId = function(value) {
/**
* optional uint64 trade_amount_as_long = 12;
* optional uint64 amount_as_long = 12;
* @return {number}
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.getTradeAmountAsLong = function() {
proto.io.bisq.protobuffer.TradeInfo.prototype.getAmountAsLong = function() {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
};
@ -22538,26 +22769,26 @@ proto.io.bisq.protobuffer.TradeInfo.prototype.getTradeAmountAsLong = function()
* @param {number} value
* @return {!proto.io.bisq.protobuffer.TradeInfo} returns this
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.setTradeAmountAsLong = function(value) {
proto.io.bisq.protobuffer.TradeInfo.prototype.setAmountAsLong = function(value) {
return jspb.Message.setProto3IntField(this, 12, value);
};
/**
* optional uint64 trade_price = 13;
* @return {number}
* optional string price = 13;
* @return {string}
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.getTradePrice = function() {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
proto.io.bisq.protobuffer.TradeInfo.prototype.getPrice = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
};
/**
* @param {number} value
* @param {string} value
* @return {!proto.io.bisq.protobuffer.TradeInfo} returns this
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.setTradePrice = function(value) {
return jspb.Message.setProto3IntField(this, 13, value);
proto.io.bisq.protobuffer.TradeInfo.prototype.setPrice = function(value) {
return jspb.Message.setProto3StringField(this, 13, value);
};
@ -22616,10 +22847,10 @@ proto.io.bisq.protobuffer.TradeInfo.prototype.setPhase = function(value) {
/**
* optional string trade_period_state = 17;
* optional string period_state = 17;
* @return {string}
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.getTradePeriodState = function() {
proto.io.bisq.protobuffer.TradeInfo.prototype.getPeriodState = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
};
@ -22628,7 +22859,7 @@ proto.io.bisq.protobuffer.TradeInfo.prototype.getTradePeriodState = function() {
* @param {string} value
* @return {!proto.io.bisq.protobuffer.TradeInfo} returns this
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.setTradePeriodState = function(value) {
proto.io.bisq.protobuffer.TradeInfo.prototype.setPeriodState = function(value) {
return jspb.Message.setProto3StringField(this, 17, value);
};
@ -22724,10 +22955,10 @@ proto.io.bisq.protobuffer.TradeInfo.prototype.setIsPayoutPublished = function(va
/**
* optional bool is_withdrawn = 23;
* optional bool is_completed = 23;
* @return {boolean}
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.getIsWithdrawn = function() {
proto.io.bisq.protobuffer.TradeInfo.prototype.getIsCompleted = function() {
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 23, false));
};
@ -22736,7 +22967,7 @@ proto.io.bisq.protobuffer.TradeInfo.prototype.getIsWithdrawn = function() {
* @param {boolean} value
* @return {!proto.io.bisq.protobuffer.TradeInfo} returns this
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.setIsWithdrawn = function(value) {
proto.io.bisq.protobuffer.TradeInfo.prototype.setIsCompleted = function(value) {
return jspb.Message.setProto3BooleanField(this, 23, value);
};
@ -22796,6 +23027,24 @@ proto.io.bisq.protobuffer.TradeInfo.prototype.hasContract = function() {
};
/**
* optional string trade_volume = 26;
* @return {string}
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.getTradeVolume = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 26, ""));
};
/**
* @param {string} value
* @return {!proto.io.bisq.protobuffer.TradeInfo} returns this
*/
proto.io.bisq.protobuffer.TradeInfo.prototype.setTradeVolume = function(value) {
return jspb.Message.setProto3StringField(this, 26, value);
};
/**
* optional string maker_deposit_tx_id = 100;
* @return {string}
@ -23338,7 +23587,8 @@ proto.io.bisq.protobuffer.PaymentAccountPayloadInfo.toObject = function(includeI
var f, obj = {
id: jspb.Message.getFieldWithDefault(msg, 1, ""),
paymentMethodId: jspb.Message.getFieldWithDefault(msg, 2, ""),
address: jspb.Message.getFieldWithDefault(msg, 3, "")
address: jspb.Message.getFieldWithDefault(msg, 3, ""),
paymentDetails: jspb.Message.getFieldWithDefault(msg, 4, "")
};
if (includeInstance) {
@ -23387,6 +23637,10 @@ proto.io.bisq.protobuffer.PaymentAccountPayloadInfo.deserializeBinaryFromReader
var value = /** @type {string} */ (reader.readString());
msg.setAddress(value);
break;
case 4:
var value = /** @type {string} */ (reader.readString());
msg.setPaymentDetails(value);
break;
default:
reader.skipField();
break;
@ -23437,6 +23691,13 @@ proto.io.bisq.protobuffer.PaymentAccountPayloadInfo.serializeBinaryToWriter = fu
f
);
}
f = message.getPaymentDetails();
if (f.length > 0) {
writer.writeString(
4,
f
);
}
};
@ -23494,6 +23755,24 @@ proto.io.bisq.protobuffer.PaymentAccountPayloadInfo.prototype.setAddress = funct
};
/**
* optional string payment_details = 4;
* @return {string}
*/
proto.io.bisq.protobuffer.PaymentAccountPayloadInfo.prototype.getPaymentDetails = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
};
/**
* @param {string} value
* @return {!proto.io.bisq.protobuffer.PaymentAccountPayloadInfo} returns this
*/
proto.io.bisq.protobuffer.PaymentAccountPayloadInfo.prototype.setPaymentDetails = function(value) {
return jspb.Message.setProto3StringField(this, 4, value);
};

View File

@ -3481,8 +3481,8 @@ export class TradeStatistics2 extends jspb.Message {
getCounterCurrency(): string;
setCounterCurrency(value: string): TradeStatistics2;
getDirection(): OfferPayload.Direction;
setDirection(value: OfferPayload.Direction): TradeStatistics2;
getDirection(): OfferDirection;
setDirection(value: OfferDirection): TradeStatistics2;
getTradePrice(): number;
setTradePrice(value: number): TradeStatistics2;
@ -3543,7 +3543,7 @@ export namespace TradeStatistics2 {
export type AsObject = {
baseCurrency: string,
counterCurrency: string,
direction: OfferPayload.Direction,
direction: OfferDirection,
tradePrice: number,
tradeAmount: number,
tradeDate: number,
@ -3671,14 +3671,14 @@ export class OfferPayload extends jspb.Message {
hasPubKeyRing(): boolean;
clearPubKeyRing(): OfferPayload;
getDirection(): OfferPayload.Direction;
setDirection(value: OfferPayload.Direction): OfferPayload;
getDirection(): OfferDirection;
setDirection(value: OfferDirection): OfferPayload;
getPrice(): number;
setPrice(value: number): OfferPayload;
getMarketPriceMargin(): number;
setMarketPriceMargin(value: number): OfferPayload;
getMarketPriceMarginPct(): number;
setMarketPriceMarginPct(value: number): OfferPayload;
getUseMarketBasedPrice(): boolean;
setUseMarketBasedPrice(value: boolean): OfferPayload;
@ -3795,9 +3795,9 @@ export namespace OfferPayload {
date: number,
ownerNodeAddress?: NodeAddress.AsObject,
pubKeyRing?: PubKeyRing.AsObject,
direction: OfferPayload.Direction,
direction: OfferDirection,
price: number,
marketPriceMargin: number,
marketPriceMarginPct: number,
useMarketBasedPrice: boolean,
amount: number,
minAmount: number,
@ -3830,12 +3830,6 @@ export namespace OfferPayload {
arbitratorSignature: string,
reserveTxKeyImagesList: Array<string>,
}
export enum Direction {
PB_ERROR = 0,
BUY = 1,
SELL = 2,
}
}
export class AccountAgeWitness extends jspb.Message {
@ -4514,6 +4508,41 @@ export class PaymentAccountPayload extends jspb.Message {
hasCashByMailAccountPayload(): boolean;
clearCashByMailAccountPayload(): PaymentAccountPayload;
getCapitualAccountPayload(): CapitualAccountPayload | undefined;
setCapitualAccountPayload(value?: CapitualAccountPayload): PaymentAccountPayload;
hasCapitualAccountPayload(): boolean;
clearCapitualAccountPayload(): PaymentAccountPayload;
getPayseraAccountPayload(): PayseraAccountPayload | undefined;
setPayseraAccountPayload(value?: PayseraAccountPayload): PaymentAccountPayload;
hasPayseraAccountPayload(): boolean;
clearPayseraAccountPayload(): PaymentAccountPayload;
getPaxumAccountPayload(): PaxumAccountPayload | undefined;
setPaxumAccountPayload(value?: PaxumAccountPayload): PaymentAccountPayload;
hasPaxumAccountPayload(): boolean;
clearPaxumAccountPayload(): PaymentAccountPayload;
getSwiftAccountPayload(): SwiftAccountPayload | undefined;
setSwiftAccountPayload(value?: SwiftAccountPayload): PaymentAccountPayload;
hasSwiftAccountPayload(): boolean;
clearSwiftAccountPayload(): PaymentAccountPayload;
getCelPayAccountPayload(): CelPayAccountPayload | undefined;
setCelPayAccountPayload(value?: CelPayAccountPayload): PaymentAccountPayload;
hasCelPayAccountPayload(): boolean;
clearCelPayAccountPayload(): PaymentAccountPayload;
getMoneseAccountPayload(): MoneseAccountPayload | undefined;
setMoneseAccountPayload(value?: MoneseAccountPayload): PaymentAccountPayload;
hasMoneseAccountPayload(): boolean;
clearMoneseAccountPayload(): PaymentAccountPayload;
getVerseAccountPayload(): VerseAccountPayload | undefined;
setVerseAccountPayload(value?: VerseAccountPayload): PaymentAccountPayload;
hasVerseAccountPayload(): boolean;
clearVerseAccountPayload(): PaymentAccountPayload;
getExcludeFromJsonDataMap(): jspb.Map<string, string>;
clearExcludeFromJsonDataMap(): PaymentAccountPayload;
@ -4560,6 +4589,13 @@ export namespace PaymentAccountPayload {
australiaPayidPayload?: AustraliaPayidPayload.AsObject,
amazonGiftCardAccountPayload?: AmazonGiftCardAccountPayload.AsObject,
cashByMailAccountPayload?: CashByMailAccountPayload.AsObject,
capitualAccountPayload?: CapitualAccountPayload.AsObject,
payseraAccountPayload?: PayseraAccountPayload.AsObject,
paxumAccountPayload?: PaxumAccountPayload.AsObject,
swiftAccountPayload?: SwiftAccountPayload.AsObject,
celPayAccountPayload?: CelPayAccountPayload.AsObject,
moneseAccountPayload?: MoneseAccountPayload.AsObject,
verseAccountPayload?: VerseAccountPayload.AsObject,
excludeFromJsonDataMap: Array<[string, string]>,
}
@ -4593,6 +4629,13 @@ export namespace PaymentAccountPayload {
AUSTRALIA_PAYID_PAYLOAD = 30,
AMAZON_GIFT_CARD_ACCOUNT_PAYLOAD = 31,
CASH_BY_MAIL_ACCOUNT_PAYLOAD = 32,
CAPITUAL_ACCOUNT_PAYLOAD = 33,
PAYSERA_ACCOUNT_PAYLOAD = 34,
PAXUM_ACCOUNT_PAYLOAD = 35,
SWIFT_ACCOUNT_PAYLOAD = 36,
CEL_PAY_ACCOUNT_PAYLOAD = 37,
MONESE_ACCOUNT_PAYLOAD = 38,
VERSE_ACCOUNT_PAYLOAD = 39,
}
}
@ -4710,6 +4753,56 @@ export class CountryBasedPaymentAccountPayload extends jspb.Message {
hasF2fAccountPayload(): boolean;
clearF2fAccountPayload(): CountryBasedPaymentAccountPayload;
getUpiAccountPayload(): UpiAccountPayload | undefined;
setUpiAccountPayload(value?: UpiAccountPayload): CountryBasedPaymentAccountPayload;
hasUpiAccountPayload(): boolean;
clearUpiAccountPayload(): CountryBasedPaymentAccountPayload;
getPaytmAccountPayload(): PaytmAccountPayload | undefined;
setPaytmAccountPayload(value?: PaytmAccountPayload): CountryBasedPaymentAccountPayload;
hasPaytmAccountPayload(): boolean;
clearPaytmAccountPayload(): CountryBasedPaymentAccountPayload;
getIfscBasedAccountPayload(): IfscBasedAccountPayload | undefined;
setIfscBasedAccountPayload(value?: IfscBasedAccountPayload): CountryBasedPaymentAccountPayload;
hasIfscBasedAccountPayload(): boolean;
clearIfscBasedAccountPayload(): CountryBasedPaymentAccountPayload;
getNequiAccountPayload(): NequiAccountPayload | undefined;
setNequiAccountPayload(value?: NequiAccountPayload): CountryBasedPaymentAccountPayload;
hasNequiAccountPayload(): boolean;
clearNequiAccountPayload(): CountryBasedPaymentAccountPayload;
getBizumAccountPayload(): BizumAccountPayload | undefined;
setBizumAccountPayload(value?: BizumAccountPayload): CountryBasedPaymentAccountPayload;
hasBizumAccountPayload(): boolean;
clearBizumAccountPayload(): CountryBasedPaymentAccountPayload;
getPixAccountPayload(): PixAccountPayload | undefined;
setPixAccountPayload(value?: PixAccountPayload): CountryBasedPaymentAccountPayload;
hasPixAccountPayload(): boolean;
clearPixAccountPayload(): CountryBasedPaymentAccountPayload;
getSatispayAccountPayload(): SatispayAccountPayload | undefined;
setSatispayAccountPayload(value?: SatispayAccountPayload): CountryBasedPaymentAccountPayload;
hasSatispayAccountPayload(): boolean;
clearSatispayAccountPayload(): CountryBasedPaymentAccountPayload;
getStrikeAccountPayload(): StrikeAccountPayload | undefined;
setStrikeAccountPayload(value?: StrikeAccountPayload): CountryBasedPaymentAccountPayload;
hasStrikeAccountPayload(): boolean;
clearStrikeAccountPayload(): CountryBasedPaymentAccountPayload;
getTikkieAccountPayload(): TikkieAccountPayload | undefined;
setTikkieAccountPayload(value?: TikkieAccountPayload): CountryBasedPaymentAccountPayload;
hasTikkieAccountPayload(): boolean;
clearTikkieAccountPayload(): CountryBasedPaymentAccountPayload;
getTransferwiseUsdAccountPayload(): TransferwiseUsdAccountPayload | undefined;
setTransferwiseUsdAccountPayload(value?: TransferwiseUsdAccountPayload): CountryBasedPaymentAccountPayload;
hasTransferwiseUsdAccountPayload(): boolean;
clearTransferwiseUsdAccountPayload(): CountryBasedPaymentAccountPayload;
getMessageCase(): CountryBasedPaymentAccountPayload.MessageCase;
serializeBinary(): Uint8Array;
@ -4729,6 +4822,16 @@ export namespace CountryBasedPaymentAccountPayload {
westernUnionAccountPayload?: WesternUnionAccountPayload.AsObject,
sepaInstantAccountPayload?: SepaInstantAccountPayload.AsObject,
f2fAccountPayload?: F2FAccountPayload.AsObject,
upiAccountPayload?: UpiAccountPayload.AsObject,
paytmAccountPayload?: PaytmAccountPayload.AsObject,
ifscBasedAccountPayload?: IfscBasedAccountPayload.AsObject,
nequiAccountPayload?: NequiAccountPayload.AsObject,
bizumAccountPayload?: BizumAccountPayload.AsObject,
pixAccountPayload?: PixAccountPayload.AsObject,
satispayAccountPayload?: SatispayAccountPayload.AsObject,
strikeAccountPayload?: StrikeAccountPayload.AsObject,
tikkieAccountPayload?: TikkieAccountPayload.AsObject,
transferwiseUsdAccountPayload?: TransferwiseUsdAccountPayload.AsObject,
}
export enum MessageCase {
@ -4739,6 +4842,16 @@ export namespace CountryBasedPaymentAccountPayload {
WESTERN_UNION_ACCOUNT_PAYLOAD = 5,
SEPA_INSTANT_ACCOUNT_PAYLOAD = 6,
F2F_ACCOUNT_PAYLOAD = 7,
UPI_ACCOUNT_PAYLOAD = 9,
PAYTM_ACCOUNT_PAYLOAD = 10,
IFSC_BASED_ACCOUNT_PAYLOAD = 11,
NEQUI_ACCOUNT_PAYLOAD = 12,
BIZUM_ACCOUNT_PAYLOAD = 13,
PIX_ACCOUNT_PAYLOAD = 14,
SATISPAY_ACCOUNT_PAYLOAD = 15,
STRIKE_ACCOUNT_PAYLOAD = 16,
TIKKIE_ACCOUNT_PAYLOAD = 17,
TRANSFERWISE_USD_ACCOUNT_PAYLOAD = 18,
}
}
@ -4782,6 +4895,16 @@ export class BankAccountPayload extends jspb.Message {
hasSpecificBanksAccountPayload(): boolean;
clearSpecificBanksAccountPayload(): BankAccountPayload;
getAchTransferAccountPayload(): AchTransferAccountPayload | undefined;
setAchTransferAccountPayload(value?: AchTransferAccountPayload): BankAccountPayload;
hasAchTransferAccountPayload(): boolean;
clearAchTransferAccountPayload(): BankAccountPayload;
getDomesticWireTransferAccountPayload(): DomesticWireTransferAccountPayload | undefined;
setDomesticWireTransferAccountPayload(value?: DomesticWireTransferAccountPayload): BankAccountPayload;
hasDomesticWireTransferAccountPayload(): boolean;
clearDomesticWireTransferAccountPayload(): BankAccountPayload;
getNationalAccountId(): string;
setNationalAccountId(value: string): BankAccountPayload;
@ -4808,6 +4931,8 @@ export namespace BankAccountPayload {
nationalBankAccountPayload?: NationalBankAccountPayload.AsObject,
sameBankAccontPayload?: SameBankAccountPayload.AsObject,
specificBanksAccountPayload?: SpecificBanksAccountPayload.AsObject,
achTransferAccountPayload?: AchTransferAccountPayload.AsObject,
domesticWireTransferAccountPayload?: DomesticWireTransferAccountPayload.AsObject,
nationalAccountId: string,
}
@ -4816,6 +4941,44 @@ export namespace BankAccountPayload {
NATIONAL_BANK_ACCOUNT_PAYLOAD = 9,
SAME_BANK_ACCONT_PAYLOAD = 10,
SPECIFIC_BANKS_ACCOUNT_PAYLOAD = 11,
ACH_TRANSFER_ACCOUNT_PAYLOAD = 13,
DOMESTIC_WIRE_TRANSFER_ACCOUNT_PAYLOAD = 14,
}
}
export class AchTransferAccountPayload extends jspb.Message {
getHolderAddress(): string;
setHolderAddress(value: string): AchTransferAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): AchTransferAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: AchTransferAccountPayload): AchTransferAccountPayload.AsObject;
static serializeBinaryToWriter(message: AchTransferAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): AchTransferAccountPayload;
static deserializeBinaryFromReader(message: AchTransferAccountPayload, reader: jspb.BinaryReader): AchTransferAccountPayload;
}
export namespace AchTransferAccountPayload {
export type AsObject = {
holderAddress: string,
}
}
export class DomesticWireTransferAccountPayload extends jspb.Message {
getHolderAddress(): string;
setHolderAddress(value: string): DomesticWireTransferAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): DomesticWireTransferAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: DomesticWireTransferAccountPayload): DomesticWireTransferAccountPayload.AsObject;
static serializeBinaryToWriter(message: DomesticWireTransferAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): DomesticWireTransferAccountPayload;
static deserializeBinaryFromReader(message: DomesticWireTransferAccountPayload, reader: jspb.BinaryReader): DomesticWireTransferAccountPayload;
}
export namespace DomesticWireTransferAccountPayload {
export type AsObject = {
holderAddress: string,
}
}
@ -5267,6 +5430,9 @@ export class UpholdAccountPayload extends jspb.Message {
getAccountId(): string;
setAccountId(value: string): UpholdAccountPayload;
getAccountOwner(): string;
setAccountOwner(value: string): UpholdAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): UpholdAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: UpholdAccountPayload): UpholdAccountPayload.AsObject;
@ -5278,6 +5444,7 @@ export class UpholdAccountPayload extends jspb.Message {
export namespace UpholdAccountPayload {
export type AsObject = {
accountId: string,
accountOwner: string,
}
}
@ -5471,6 +5638,137 @@ export namespace F2FAccountPayload {
}
}
export class IfscBasedAccountPayload extends jspb.Message {
getHolderName(): string;
setHolderName(value: string): IfscBasedAccountPayload;
getAccountNr(): string;
setAccountNr(value: string): IfscBasedAccountPayload;
getIfsc(): string;
setIfsc(value: string): IfscBasedAccountPayload;
getNeftAccountPayload(): NeftAccountPayload | undefined;
setNeftAccountPayload(value?: NeftAccountPayload): IfscBasedAccountPayload;
hasNeftAccountPayload(): boolean;
clearNeftAccountPayload(): IfscBasedAccountPayload;
getRtgsAccountPayload(): RtgsAccountPayload | undefined;
setRtgsAccountPayload(value?: RtgsAccountPayload): IfscBasedAccountPayload;
hasRtgsAccountPayload(): boolean;
clearRtgsAccountPayload(): IfscBasedAccountPayload;
getImpsAccountPayload(): ImpsAccountPayload | undefined;
setImpsAccountPayload(value?: ImpsAccountPayload): IfscBasedAccountPayload;
hasImpsAccountPayload(): boolean;
clearImpsAccountPayload(): IfscBasedAccountPayload;
getMessageCase(): IfscBasedAccountPayload.MessageCase;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): IfscBasedAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: IfscBasedAccountPayload): IfscBasedAccountPayload.AsObject;
static serializeBinaryToWriter(message: IfscBasedAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): IfscBasedAccountPayload;
static deserializeBinaryFromReader(message: IfscBasedAccountPayload, reader: jspb.BinaryReader): IfscBasedAccountPayload;
}
export namespace IfscBasedAccountPayload {
export type AsObject = {
holderName: string,
accountNr: string,
ifsc: string,
neftAccountPayload?: NeftAccountPayload.AsObject,
rtgsAccountPayload?: RtgsAccountPayload.AsObject,
impsAccountPayload?: ImpsAccountPayload.AsObject,
}
export enum MessageCase {
MESSAGE_NOT_SET = 0,
NEFT_ACCOUNT_PAYLOAD = 4,
RTGS_ACCOUNT_PAYLOAD = 5,
IMPS_ACCOUNT_PAYLOAD = 6,
}
}
export class NeftAccountPayload extends jspb.Message {
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): NeftAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: NeftAccountPayload): NeftAccountPayload.AsObject;
static serializeBinaryToWriter(message: NeftAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): NeftAccountPayload;
static deserializeBinaryFromReader(message: NeftAccountPayload, reader: jspb.BinaryReader): NeftAccountPayload;
}
export namespace NeftAccountPayload {
export type AsObject = {
}
}
export class RtgsAccountPayload extends jspb.Message {
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): RtgsAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: RtgsAccountPayload): RtgsAccountPayload.AsObject;
static serializeBinaryToWriter(message: RtgsAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): RtgsAccountPayload;
static deserializeBinaryFromReader(message: RtgsAccountPayload, reader: jspb.BinaryReader): RtgsAccountPayload;
}
export namespace RtgsAccountPayload {
export type AsObject = {
}
}
export class ImpsAccountPayload extends jspb.Message {
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): ImpsAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: ImpsAccountPayload): ImpsAccountPayload.AsObject;
static serializeBinaryToWriter(message: ImpsAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): ImpsAccountPayload;
static deserializeBinaryFromReader(message: ImpsAccountPayload, reader: jspb.BinaryReader): ImpsAccountPayload;
}
export namespace ImpsAccountPayload {
export type AsObject = {
}
}
export class UpiAccountPayload extends jspb.Message {
getVirtualPaymentAddress(): string;
setVirtualPaymentAddress(value: string): UpiAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): UpiAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: UpiAccountPayload): UpiAccountPayload.AsObject;
static serializeBinaryToWriter(message: UpiAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): UpiAccountPayload;
static deserializeBinaryFromReader(message: UpiAccountPayload, reader: jspb.BinaryReader): UpiAccountPayload;
}
export namespace UpiAccountPayload {
export type AsObject = {
virtualPaymentAddress: string,
}
}
export class PaytmAccountPayload extends jspb.Message {
getEmailOrMobileNr(): string;
setEmailOrMobileNr(value: string): PaytmAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): PaytmAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: PaytmAccountPayload): PaytmAccountPayload.AsObject;
static serializeBinaryToWriter(message: PaytmAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): PaytmAccountPayload;
static deserializeBinaryFromReader(message: PaytmAccountPayload, reader: jspb.BinaryReader): PaytmAccountPayload;
}
export namespace PaytmAccountPayload {
export type AsObject = {
emailOrMobileNr: string,
}
}
export class CashByMailAccountPayload extends jspb.Message {
getPostalAddress(): string;
setPostalAddress(value: string): CashByMailAccountPayload;
@ -5551,6 +5849,334 @@ export namespace TransferwiseAccountPayload {
}
}
export class TransferwiseUsdAccountPayload extends jspb.Message {
getEmail(): string;
setEmail(value: string): TransferwiseUsdAccountPayload;
getHolderName(): string;
setHolderName(value: string): TransferwiseUsdAccountPayload;
getBeneficiaryAddress(): string;
setBeneficiaryAddress(value: string): TransferwiseUsdAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): TransferwiseUsdAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: TransferwiseUsdAccountPayload): TransferwiseUsdAccountPayload.AsObject;
static serializeBinaryToWriter(message: TransferwiseUsdAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): TransferwiseUsdAccountPayload;
static deserializeBinaryFromReader(message: TransferwiseUsdAccountPayload, reader: jspb.BinaryReader): TransferwiseUsdAccountPayload;
}
export namespace TransferwiseUsdAccountPayload {
export type AsObject = {
email: string,
holderName: string,
beneficiaryAddress: string,
}
}
export class PayseraAccountPayload extends jspb.Message {
getEmail(): string;
setEmail(value: string): PayseraAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): PayseraAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: PayseraAccountPayload): PayseraAccountPayload.AsObject;
static serializeBinaryToWriter(message: PayseraAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): PayseraAccountPayload;
static deserializeBinaryFromReader(message: PayseraAccountPayload, reader: jspb.BinaryReader): PayseraAccountPayload;
}
export namespace PayseraAccountPayload {
export type AsObject = {
email: string,
}
}
export class PaxumAccountPayload extends jspb.Message {
getEmail(): string;
setEmail(value: string): PaxumAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): PaxumAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: PaxumAccountPayload): PaxumAccountPayload.AsObject;
static serializeBinaryToWriter(message: PaxumAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): PaxumAccountPayload;
static deserializeBinaryFromReader(message: PaxumAccountPayload, reader: jspb.BinaryReader): PaxumAccountPayload;
}
export namespace PaxumAccountPayload {
export type AsObject = {
email: string,
}
}
export class CapitualAccountPayload extends jspb.Message {
getAccountNr(): string;
setAccountNr(value: string): CapitualAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): CapitualAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: CapitualAccountPayload): CapitualAccountPayload.AsObject;
static serializeBinaryToWriter(message: CapitualAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): CapitualAccountPayload;
static deserializeBinaryFromReader(message: CapitualAccountPayload, reader: jspb.BinaryReader): CapitualAccountPayload;
}
export namespace CapitualAccountPayload {
export type AsObject = {
accountNr: string,
}
}
export class CelPayAccountPayload extends jspb.Message {
getEmail(): string;
setEmail(value: string): CelPayAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): CelPayAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: CelPayAccountPayload): CelPayAccountPayload.AsObject;
static serializeBinaryToWriter(message: CelPayAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): CelPayAccountPayload;
static deserializeBinaryFromReader(message: CelPayAccountPayload, reader: jspb.BinaryReader): CelPayAccountPayload;
}
export namespace CelPayAccountPayload {
export type AsObject = {
email: string,
}
}
export class NequiAccountPayload extends jspb.Message {
getMobileNr(): string;
setMobileNr(value: string): NequiAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): NequiAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: NequiAccountPayload): NequiAccountPayload.AsObject;
static serializeBinaryToWriter(message: NequiAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): NequiAccountPayload;
static deserializeBinaryFromReader(message: NequiAccountPayload, reader: jspb.BinaryReader): NequiAccountPayload;
}
export namespace NequiAccountPayload {
export type AsObject = {
mobileNr: string,
}
}
export class BizumAccountPayload extends jspb.Message {
getMobileNr(): string;
setMobileNr(value: string): BizumAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): BizumAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: BizumAccountPayload): BizumAccountPayload.AsObject;
static serializeBinaryToWriter(message: BizumAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): BizumAccountPayload;
static deserializeBinaryFromReader(message: BizumAccountPayload, reader: jspb.BinaryReader): BizumAccountPayload;
}
export namespace BizumAccountPayload {
export type AsObject = {
mobileNr: string,
}
}
export class PixAccountPayload extends jspb.Message {
getPixKey(): string;
setPixKey(value: string): PixAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): PixAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: PixAccountPayload): PixAccountPayload.AsObject;
static serializeBinaryToWriter(message: PixAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): PixAccountPayload;
static deserializeBinaryFromReader(message: PixAccountPayload, reader: jspb.BinaryReader): PixAccountPayload;
}
export namespace PixAccountPayload {
export type AsObject = {
pixKey: string,
}
}
export class MoneseAccountPayload extends jspb.Message {
getMobileNr(): string;
setMobileNr(value: string): MoneseAccountPayload;
getHolderName(): string;
setHolderName(value: string): MoneseAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): MoneseAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: MoneseAccountPayload): MoneseAccountPayload.AsObject;
static serializeBinaryToWriter(message: MoneseAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): MoneseAccountPayload;
static deserializeBinaryFromReader(message: MoneseAccountPayload, reader: jspb.BinaryReader): MoneseAccountPayload;
}
export namespace MoneseAccountPayload {
export type AsObject = {
mobileNr: string,
holderName: string,
}
}
export class SatispayAccountPayload extends jspb.Message {
getMobileNr(): string;
setMobileNr(value: string): SatispayAccountPayload;
getHolderName(): string;
setHolderName(value: string): SatispayAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): SatispayAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: SatispayAccountPayload): SatispayAccountPayload.AsObject;
static serializeBinaryToWriter(message: SatispayAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): SatispayAccountPayload;
static deserializeBinaryFromReader(message: SatispayAccountPayload, reader: jspb.BinaryReader): SatispayAccountPayload;
}
export namespace SatispayAccountPayload {
export type AsObject = {
mobileNr: string,
holderName: string,
}
}
export class StrikeAccountPayload extends jspb.Message {
getHolderName(): string;
setHolderName(value: string): StrikeAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): StrikeAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: StrikeAccountPayload): StrikeAccountPayload.AsObject;
static serializeBinaryToWriter(message: StrikeAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): StrikeAccountPayload;
static deserializeBinaryFromReader(message: StrikeAccountPayload, reader: jspb.BinaryReader): StrikeAccountPayload;
}
export namespace StrikeAccountPayload {
export type AsObject = {
holderName: string,
}
}
export class TikkieAccountPayload extends jspb.Message {
getIban(): string;
setIban(value: string): TikkieAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): TikkieAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: TikkieAccountPayload): TikkieAccountPayload.AsObject;
static serializeBinaryToWriter(message: TikkieAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): TikkieAccountPayload;
static deserializeBinaryFromReader(message: TikkieAccountPayload, reader: jspb.BinaryReader): TikkieAccountPayload;
}
export namespace TikkieAccountPayload {
export type AsObject = {
iban: string,
}
}
export class VerseAccountPayload extends jspb.Message {
getHolderName(): string;
setHolderName(value: string): VerseAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): VerseAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: VerseAccountPayload): VerseAccountPayload.AsObject;
static serializeBinaryToWriter(message: VerseAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): VerseAccountPayload;
static deserializeBinaryFromReader(message: VerseAccountPayload, reader: jspb.BinaryReader): VerseAccountPayload;
}
export namespace VerseAccountPayload {
export type AsObject = {
holderName: string,
}
}
export class SwiftAccountPayload extends jspb.Message {
getBeneficiaryName(): string;
setBeneficiaryName(value: string): SwiftAccountPayload;
getBeneficiaryAccountNr(): string;
setBeneficiaryAccountNr(value: string): SwiftAccountPayload;
getBeneficiaryAddress(): string;
setBeneficiaryAddress(value: string): SwiftAccountPayload;
getBeneficiaryCity(): string;
setBeneficiaryCity(value: string): SwiftAccountPayload;
getBeneficiaryPhone(): string;
setBeneficiaryPhone(value: string): SwiftAccountPayload;
getSpecialInstructions(): string;
setSpecialInstructions(value: string): SwiftAccountPayload;
getBankSwiftCode(): string;
setBankSwiftCode(value: string): SwiftAccountPayload;
getBankCountryCode(): string;
setBankCountryCode(value: string): SwiftAccountPayload;
getBankName(): string;
setBankName(value: string): SwiftAccountPayload;
getBankBranch(): string;
setBankBranch(value: string): SwiftAccountPayload;
getBankAddress(): string;
setBankAddress(value: string): SwiftAccountPayload;
getIntermediarySwiftCode(): string;
setIntermediarySwiftCode(value: string): SwiftAccountPayload;
getIntermediaryCountryCode(): string;
setIntermediaryCountryCode(value: string): SwiftAccountPayload;
getIntermediaryName(): string;
setIntermediaryName(value: string): SwiftAccountPayload;
getIntermediaryBranch(): string;
setIntermediaryBranch(value: string): SwiftAccountPayload;
getIntermediaryAddress(): string;
setIntermediaryAddress(value: string): SwiftAccountPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): SwiftAccountPayload.AsObject;
static toObject(includeInstance: boolean, msg: SwiftAccountPayload): SwiftAccountPayload.AsObject;
static serializeBinaryToWriter(message: SwiftAccountPayload, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): SwiftAccountPayload;
static deserializeBinaryFromReader(message: SwiftAccountPayload, reader: jspb.BinaryReader): SwiftAccountPayload;
}
export namespace SwiftAccountPayload {
export type AsObject = {
beneficiaryName: string,
beneficiaryAccountNr: string,
beneficiaryAddress: string,
beneficiaryCity: string,
beneficiaryPhone: string,
specialInstructions: string,
bankSwiftCode: string,
bankCountryCode: string,
bankName: string,
bankBranch: string,
bankAddress: string,
intermediarySwiftCode: string,
intermediaryCountryCode: string,
intermediaryName: string,
intermediaryBranch: string,
intermediaryAddress: string,
}
}
export class PersistableEnvelope extends jspb.Message {
getSequenceNumberMap(): SequenceNumberMap | undefined;
setSequenceNumberMap(value?: SequenceNumberMap): PersistableEnvelope;
@ -6149,12 +6775,11 @@ export namespace Offer {
export enum State {
PB_ERROR = 0,
UNKNOWN = 1,
SCHEDULED = 2,
OFFER_FEE_RESERVED = 3,
AVAILABLE = 4,
NOT_AVAILABLE = 5,
REMOVED = 6,
MAKER_OFFLINE = 7,
OFFER_FEE_RESERVED = 2,
AVAILABLE = 3,
NOT_AVAILABLE = 4,
REMOVED = 5,
MAKER_OFFLINE = 6,
}
}
@ -6364,8 +6989,8 @@ export class Trade extends jspb.Message {
getPayoutTxId(): string;
setPayoutTxId(value: string): Trade;
getTradeAmountAsLong(): number;
setTradeAmountAsLong(value: number): Trade;
getAmountAsLong(): number;
setAmountAsLong(value: number): Trade;
getTxFeeAsLong(): number;
setTxFeeAsLong(value: number): Trade;
@ -6376,8 +7001,8 @@ export class Trade extends jspb.Message {
getTakeOfferDate(): number;
setTakeOfferDate(value: number): Trade;
getTradePrice(): number;
setTradePrice(value: number): Trade;
getPrice(): number;
setPrice(value: number): Trade;
getState(): Trade.State;
setState(value: Trade.State): Trade;
@ -6385,8 +7010,8 @@ export class Trade extends jspb.Message {
getDisputeState(): Trade.DisputeState;
setDisputeState(value: Trade.DisputeState): Trade;
getTradePeriodState(): Trade.TradePeriodState;
setTradePeriodState(value: Trade.TradePeriodState): Trade;
getPeriodState(): Trade.TradePeriodState;
setPeriodState(value: Trade.TradePeriodState): Trade;
getContract(): Contract | undefined;
setContract(value?: Contract): Trade;
@ -6510,14 +7135,14 @@ export namespace Trade {
processModel?: ProcessModel.AsObject,
takerFeeTxId: string,
payoutTxId: string,
tradeAmountAsLong: number,
amountAsLong: number,
txFeeAsLong: number,
takerFeeAsLong: number,
takeOfferDate: number,
tradePrice: number,
price: number,
state: Trade.State,
disputeState: Trade.DisputeState,
tradePeriodState: Trade.TradePeriodState,
periodState: Trade.TradePeriodState,
contract?: Contract.AsObject,
contractAsJson: string,
contractHash: Uint8Array | string,
@ -7322,6 +7947,9 @@ export class PreferencesPayload extends jspb.Message {
clearAutoConfirmSettingsList(): PreferencesPayload;
addAutoConfirmSettings(value?: AutoConfirmSettings, index?: number): AutoConfirmSettings;
getBsqAverageTrimThreshold(): number;
setBsqAverageTrimThreshold(value: number): PreferencesPayload;
getHideNonAccountPaymentMethods(): boolean;
setHideNonAccountPaymentMethods(value: boolean): PreferencesPayload;
@ -7339,6 +7967,15 @@ export class PreferencesPayload extends jspb.Message {
hasMoneroNodeSettings(): boolean;
clearMoneroNodeSettings(): PreferencesPayload;
getClearDataAfterDays(): number;
setClearDataAfterDays(value: number): PreferencesPayload;
getBuyScreenCryptoCurrencyCode(): string;
setBuyScreenCryptoCurrencyCode(value: string): PreferencesPayload;
getSellScreenCryptoCurrencyCode(): string;
setSellScreenCryptoCurrencyCode(value: string): PreferencesPayload;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): PreferencesPayload.AsObject;
static toObject(includeInstance: boolean, msg: PreferencesPayload): PreferencesPayload.AsObject;
@ -7402,11 +8039,15 @@ export namespace PreferencesPayload {
cssTheme: number,
tacAcceptedV120: boolean,
autoConfirmSettingsList: Array<AutoConfirmSettings.AsObject>,
bsqAverageTrimThreshold: number,
hideNonAccountPaymentMethods: boolean,
showOffersMatchingMyAccounts: boolean,
denyApiTaker: boolean,
notifyOnPreRelease: boolean,
moneroNodeSettings?: MoneroNodeSettings.AsObject,
clearDataAfterDays: number,
buyScreenCryptoCurrencyCode: string,
sellScreenCryptoCurrencyCode: string,
}
}
@ -7952,6 +8593,11 @@ export enum SupportType {
TRADE = 2,
REFUND = 3,
}
export enum OfferDirection {
OFFER_DIRECTION_ERROR = 0,
BUY = 1,
SELL = 2,
}
export enum AvailabilityResult {
PB_ERROR = 0,
UNKNOWN_FAILURE = 1,

5415
dist/protobuf/pb_pb.js vendored

File diff suppressed because it is too large Load Diff

13
dist/utils/HavenoError.d.ts vendored Normal file
View File

@ -0,0 +1,13 @@
/**
* Haveno error with message and code.
*/
export default class HavenoError extends Error {
code: number | undefined;
/**
* Create the error with a message and code.
*
* @param {string} msg - the error message
* @param {number} code
*/
constructor(msg: string, code?: number);
}

19
dist/utils/HavenoError.js vendored Normal file
View File

@ -0,0 +1,19 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Haveno error with message and code.
*/
class HavenoError extends Error {
/**
* Create the error with a message and code.
*
* @param {string} msg - the error message
* @param {number} code
*/
constructor(msg, code) {
super(msg);
this.code = code;
}
}
exports.default = HavenoError;
//# sourceMappingURL=HavenoError.js.map

1
dist/utils/HavenoError.js.map vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"HavenoError.js","sourceRoot":"","sources":["../../src/utils/HavenoError.ts"],"names":[],"mappings":";;AAAA;;GAEG;AACH,MAAqB,WAAY,SAAQ,KAAK;IAI5C;;;;;OAKG;IACH,YAAY,GAAW,EAAE,IAAa;QACpC,KAAK,CAAC,GAAG,CAAC,CAAC;QACX,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;CACF;AAdD,8BAcC"}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -3,4 +3,4 @@
</div><dl class="tsd-comment-tags"><dt>see</dt><dd><p><a href="https://v8.dev/docs/stack-trace-api#customizing-stack-traces">https://v8.dev/docs/stack-trace-api#customizing-stack-traces</a></p>
</dd></dl></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>err: <span class="tsd-signature-type">Error</span></h5></li><li><h5>stackTraces: <a href="../interfaces/HavenoClient._internal_.CallSite.html" class="tsd-signature-type" data-tsd-kind="Interface">CallSite</a><span class="tsd-signature-symbol">[]</span></h5></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4></li></ul></li></ul></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><a id="stackTraceLimit" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagStatic">Static</span> stack<wbr/>Trace<wbr/>Limit<a href="#stackTraceLimit" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">stack<wbr/>Trace<wbr/>Limit<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><p>Inherited from Error.stackTraceLimit</p><ul><li>Defined in node_modules/@types/node/globals.d.ts:13</li></ul></aside></section></section><section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external"><h2>Methods</h2><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><a id="captureStackTrace" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagStatic">Static</span> capture<wbr/>Stack<wbr/>Trace<a href="#captureStackTrace" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><li class="tsd-signature tsd-kind-icon">capture<wbr/>Stack<wbr/>Trace<span class="tsd-signature-symbol">(</span>targetObject<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span>, constructorOpt<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><p>Inherited from Error.captureStackTrace</p><ul><li>Defined in node_modules/@types/node/globals.d.ts:4</li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
<p>Create .stack property on a target object</p>
</div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>targetObject: <span class="tsd-signature-type">object</span></h5></li><li><h5><span class="tsd-flag ts-flagOptional">Optional</span> constructorOpt: <span class="tsd-signature-type">Function</span></h5></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class="current tsd-kind-module"><a href="../modules/HavenoClient.html">Haveno<wbr/>Client</a><ul><li class="current tsd-kind-namespace tsd-parent-kind-module"><a href="../modules/HavenoClient._internal_.html">&lt;internal&gt;</a></li></ul></li><li class=" tsd-kind-module"><a href="../modules/index.html">index</a></li><li class=" tsd-kind-module"><a href="../modules/index.html">index</a></li><li class=" tsd-kind-module"><a href="../modules/protobuf_GrpcServiceClientPb.html">protobuf/<wbr/>Grpc<wbr/>Service<wbr/>Client<wbr/>Pb</a></li><li class=" tsd-kind-module"><a href="../modules/protobuf_grpc_pb.html">protobuf/grpc_<wbr/>pb</a></li><li class=" tsd-kind-module"><a href="../modules/protobuf_pb_pb.html">protobuf/pb_<wbr/>pb</a></li><li class=" tsd-kind-module"><a href="../modules/utils_HavenoUtils.html">utils/<wbr/>Haveno<wbr/>Utils</a></li><li class=" tsd-kind-module"><a href="../modules/utils_TaskLooper.html">utils/<wbr/>Task<wbr/>Looper</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-class tsd-parent-kind-namespace tsd-is-external"><a href="HavenoClient._internal_.RpcError.html" class="tsd-kind-icon">Rpc<wbr/>Error</a><ul><li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#constructor" class="tsd-kind-icon">constructor</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#cause" class="tsd-kind-icon">cause</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#code" class="tsd-kind-icon">code</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#message" class="tsd-kind-icon">message</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#metadata" class="tsd-kind-icon">metadata</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#name" class="tsd-kind-icon">name</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#stack" class="tsd-kind-icon">stack</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#prepareStackTrace" class="tsd-kind-icon">prepare<wbr/>Stack<wbr/>Trace</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#stackTraceLimit" class="tsd-kind-icon">stack<wbr/>Trace<wbr/>Limit</a></li><li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#captureStackTrace" class="tsd-kind-icon">capture<wbr/>Stack<wbr/>Trace</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-namespace"><span class="tsd-kind-icon">Namespace</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
</div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>targetObject: <span class="tsd-signature-type">object</span></h5></li><li><h5><span class="tsd-flag ts-flagOptional">Optional</span> constructorOpt: <span class="tsd-signature-type">Function</span></h5></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class="current tsd-kind-module"><a href="../modules/HavenoClient.html">Haveno<wbr/>Client</a><ul><li class="current tsd-kind-namespace tsd-parent-kind-module"><a href="../modules/HavenoClient._internal_.html">&lt;internal&gt;</a></li></ul></li><li class=" tsd-kind-module"><a href="../modules/index.html">index</a></li><li class=" tsd-kind-module"><a href="../modules/index.html">index</a></li><li class=" tsd-kind-module"><a href="../modules/protobuf_GrpcServiceClientPb.html">protobuf/<wbr/>Grpc<wbr/>Service<wbr/>Client<wbr/>Pb</a></li><li class=" tsd-kind-module"><a href="../modules/protobuf_grpc_pb.html">protobuf/grpc_<wbr/>pb</a></li><li class=" tsd-kind-module"><a href="../modules/protobuf_pb_pb.html">protobuf/pb_<wbr/>pb</a></li><li class=" tsd-kind-module"><a href="../modules/utils_HavenoError.html">utils/<wbr/>Haveno<wbr/>Error</a></li><li class=" tsd-kind-module"><a href="../modules/utils_HavenoUtils.html">utils/<wbr/>Haveno<wbr/>Utils</a></li><li class=" tsd-kind-module"><a href="../modules/utils_TaskLooper.html">utils/<wbr/>Task<wbr/>Looper</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-class tsd-parent-kind-namespace tsd-is-external"><a href="HavenoClient._internal_.RpcError.html" class="tsd-kind-icon">Rpc<wbr/>Error</a><ul><li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#constructor" class="tsd-kind-icon">constructor</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#cause" class="tsd-kind-icon">cause</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#code" class="tsd-kind-icon">code</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#message" class="tsd-kind-icon">message</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#metadata" class="tsd-kind-icon">metadata</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#name" class="tsd-kind-icon">name</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#stack" class="tsd-kind-icon">stack</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#prepareStackTrace" class="tsd-kind-icon">prepare<wbr/>Stack<wbr/>Trace</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#stackTraceLimit" class="tsd-kind-icon">stack<wbr/>Trace<wbr/>Limit</a></li><li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><a href="HavenoClient._internal_.RpcError.html#captureStackTrace" class="tsd-kind-icon">capture<wbr/>Stack<wbr/>Trace</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-namespace"><span class="tsd-kind-icon">Namespace</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More