mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-08-07 05:52:23 -04:00
update dist
This commit is contained in:
parent
46aa6b7648
commit
02b4dfdba1
9 changed files with 396 additions and 7 deletions
11
dist/protobuf/GrpcServiceClientPb.js
vendored
11
dist/protobuf/GrpcServiceClientPb.js
vendored
|
@ -638,6 +638,9 @@ class PaymentAccountsClient {
|
|||
this.methodDescriptorCreateCryptoCurrencyPaymentAccount = new grpcWeb.MethodDescriptor('/io.haveno.protobuffer.PaymentAccounts/CreateCryptoCurrencyPaymentAccount', grpcWeb.MethodType.UNARY, grpc_pb.CreateCryptoCurrencyPaymentAccountRequest, grpc_pb.CreateCryptoCurrencyPaymentAccountReply, (request) => {
|
||||
return request.serializeBinary();
|
||||
}, grpc_pb.CreateCryptoCurrencyPaymentAccountReply.deserializeBinary);
|
||||
this.methodDescriptorDeletePaymentAccount = new grpcWeb.MethodDescriptor('/io.haveno.protobuffer.PaymentAccounts/DeletePaymentAccount', grpcWeb.MethodType.UNARY, grpc_pb.DeletePaymentAccountRequest, grpc_pb.DeletePaymentAccountReply, (request) => {
|
||||
return request.serializeBinary();
|
||||
}, grpc_pb.DeletePaymentAccountReply.deserializeBinary);
|
||||
this.methodDescriptorGetCryptoCurrencyPaymentMethods = new grpcWeb.MethodDescriptor('/io.haveno.protobuffer.PaymentAccounts/GetCryptoCurrencyPaymentMethods', grpcWeb.MethodType.UNARY, grpc_pb.GetCryptoCurrencyPaymentMethodsRequest, grpc_pb.GetCryptoCurrencyPaymentMethodsReply, (request) => {
|
||||
return request.serializeBinary();
|
||||
}, grpc_pb.GetCryptoCurrencyPaymentMethodsReply.deserializeBinary);
|
||||
|
@ -702,6 +705,14 @@ class PaymentAccountsClient {
|
|||
return this.client_.unaryCall(this.hostname_ +
|
||||
'/io.haveno.protobuffer.PaymentAccounts/CreateCryptoCurrencyPaymentAccount', request, metadata || {}, this.methodDescriptorCreateCryptoCurrencyPaymentAccount);
|
||||
}
|
||||
deletePaymentAccount(request, metadata, callback) {
|
||||
if (callback !== undefined) {
|
||||
return this.client_.rpcCall(this.hostname_ +
|
||||
'/io.haveno.protobuffer.PaymentAccounts/DeletePaymentAccount', request, metadata || {}, this.methodDescriptorDeletePaymentAccount, callback);
|
||||
}
|
||||
return this.client_.unaryCall(this.hostname_ +
|
||||
'/io.haveno.protobuffer.PaymentAccounts/DeletePaymentAccount', request, metadata || {}, this.methodDescriptorDeletePaymentAccount);
|
||||
}
|
||||
getCryptoCurrencyPaymentMethods(request, metadata, callback) {
|
||||
if (callback !== undefined) {
|
||||
return this.client_.rpcCall(this.hostname_ +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue