update dist

This commit is contained in:
woodser 2022-05-10 14:57:20 -04:00
parent f9a1d11400
commit dcdc72f719
10 changed files with 346 additions and 6 deletions

View file

@ -858,6 +858,9 @@ export class WalletsClient {
this.methodInfoGetBalances = new grpcWeb.MethodDescriptor('/io.bisq.protobuffer.Wallets/GetBalances', grpcWeb.MethodType.UNARY, grpc_pb.GetBalancesRequest, grpc_pb.GetBalancesReply, (request) => {
return request.serializeBinary();
}, grpc_pb.GetBalancesReply.deserializeBinary);
this.methodInfoGetXmrSeed = new grpcWeb.MethodDescriptor('/io.bisq.protobuffer.Wallets/GetXmrSeed', grpcWeb.MethodType.UNARY, grpc_pb.GetXmrSeedRequest, grpc_pb.GetXmrSeedReply, (request) => {
return request.serializeBinary();
}, grpc_pb.GetXmrSeedReply.deserializeBinary);
this.methodInfoGetNewDepositAddress = new grpcWeb.MethodDescriptor('/io.bisq.protobuffer.Wallets/GetNewDepositAddress', grpcWeb.MethodType.UNARY, grpc_pb.GetNewDepositAddressRequest, grpc_pb.GetNewDepositAddressReply, (request) => {
return request.serializeBinary();
}, grpc_pb.GetNewDepositAddressReply.deserializeBinary);
@ -921,6 +924,14 @@ export class WalletsClient {
return this.client_.unaryCall(this.hostname_ +
'/io.bisq.protobuffer.Wallets/GetBalances', request, metadata || {}, this.methodInfoGetBalances);
}
getXmrSeed(request, metadata, callback) {
if (callback !== undefined) {
return this.client_.rpcCall(this.hostname_ +
'/io.bisq.protobuffer.Wallets/GetXmrSeed', request, metadata || {}, this.methodInfoGetXmrSeed, callback);
}
return this.client_.unaryCall(this.hostname_ +
'/io.bisq.protobuffer.Wallets/GetXmrSeed', request, metadata || {}, this.methodInfoGetXmrSeed);
}
getNewDepositAddress(request, metadata, callback) {
if (callback !== undefined) {
return this.client_.rpcCall(this.hostname_ +