2015-12-25 22:42:14 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2015 GNUnet e.V.
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
2016-07-07 17:59:29 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2015-12-25 22:42:14 +01:00
|
|
|
*/
|
|
|
|
|
2016-01-05 15:42:46 +01:00
|
|
|
/**
|
|
|
|
* High-level wallet operations that should be indepentent from the underlying
|
|
|
|
* browser extension interface.
|
|
|
|
* @module Wallet
|
|
|
|
* @author Florian Dold
|
|
|
|
*/
|
|
|
|
|
2016-05-24 01:53:56 +02:00
|
|
|
import {
|
|
|
|
AmountJson,
|
|
|
|
CreateReserveResponse,
|
|
|
|
IExchangeInfo,
|
|
|
|
Denomination,
|
|
|
|
Notifier,
|
2016-10-13 02:23:24 +02:00
|
|
|
WireInfo, RefreshSession, ReserveRecord
|
2016-05-24 01:53:56 +02:00
|
|
|
} from "./types";
|
2016-10-13 02:23:24 +02:00
|
|
|
import {HttpResponse, RequestException} from "./http";
|
|
|
|
import {QueryRoot} from "./query";
|
|
|
|
import {Checkable} from "./checkable";
|
|
|
|
import {canonicalizeBaseUrl} from "./helpers";
|
|
|
|
import {ReserveCreationInfo, Amounts} from "./types";
|
|
|
|
import {PreCoin} from "./types";
|
|
|
|
import {CryptoApi} from "./cryptoApi";
|
|
|
|
import {Coin} from "./types";
|
|
|
|
import {PayCoinInfo} from "./types";
|
|
|
|
import {CheckRepurchaseResult} from "./types";
|
|
|
|
import {Contract} from "./types";
|
|
|
|
import {ExchangeHandle} from "./types";
|
2016-01-05 15:42:46 +01:00
|
|
|
|
2016-01-05 18:37:21 +01:00
|
|
|
"use strict";
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
export interface CoinWithDenom {
|
|
|
|
coin: Coin;
|
|
|
|
denom: Denomination;
|
|
|
|
}
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
|
|
|
|
@Checkable.Class
|
|
|
|
export class KeysJson {
|
|
|
|
@Checkable.List(Checkable.Value(Denomination))
|
2016-02-10 02:03:31 +01:00
|
|
|
denoms: Denomination[];
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
@Checkable.String
|
|
|
|
master_public_key: string;
|
|
|
|
|
|
|
|
@Checkable.Any
|
|
|
|
auditors: any[];
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
list_issue_date: string;
|
|
|
|
|
|
|
|
@Checkable.Any
|
|
|
|
signkeys: any;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
eddsa_pub: string;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
eddsa_sig: string;
|
|
|
|
|
|
|
|
static checked: (obj: any) => KeysJson;
|
2016-02-10 02:03:31 +01:00
|
|
|
}
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
@Checkable.Class
|
|
|
|
export class CreateReserveRequest {
|
|
|
|
/**
|
|
|
|
* The initial amount for the reserve.
|
|
|
|
*/
|
|
|
|
@Checkable.Value(AmountJson)
|
|
|
|
amount: AmountJson;
|
|
|
|
|
|
|
|
/**
|
2016-03-01 19:39:17 +01:00
|
|
|
* Exchange URL where the bank should create the reserve.
|
2016-02-10 02:03:31 +01:00
|
|
|
*/
|
|
|
|
@Checkable.String
|
2016-03-01 19:39:17 +01:00
|
|
|
exchange: string;
|
2016-02-10 02:03:31 +01:00
|
|
|
|
|
|
|
static checked: (obj: any) => CreateReserveRequest;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Checkable.Class
|
|
|
|
export class ConfirmReserveRequest {
|
|
|
|
/**
|
|
|
|
* Public key of then reserve that should be marked
|
|
|
|
* as confirmed.
|
|
|
|
*/
|
|
|
|
@Checkable.String
|
|
|
|
reservePub: string;
|
|
|
|
|
|
|
|
static checked: (obj: any) => ConfirmReserveRequest;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Checkable.Class
|
2016-02-11 18:17:02 +01:00
|
|
|
export class Offer {
|
2016-02-10 02:03:31 +01:00
|
|
|
@Checkable.Value(Contract)
|
|
|
|
contract: Contract;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
merchant_sig: string;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
H_contract: string;
|
|
|
|
|
|
|
|
static checked: (obj: any) => Offer;
|
|
|
|
}
|
|
|
|
|
2016-09-28 23:41:34 +02:00
|
|
|
export interface HistoryRecord {
|
|
|
|
type: string;
|
|
|
|
timestamp: number;
|
|
|
|
subjectId?: string;
|
|
|
|
detail: any;
|
2016-09-29 01:40:29 +02:00
|
|
|
level: HistoryLevel;
|
2016-09-28 23:41:34 +02:00
|
|
|
}
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
|
2016-03-01 19:39:17 +01:00
|
|
|
interface ExchangeCoins {
|
|
|
|
[exchangeUrl: string]: CoinWithDenom[];
|
2015-12-17 22:56:24 +01:00
|
|
|
}
|
|
|
|
|
2016-01-05 01:10:31 +01:00
|
|
|
|
|
|
|
interface Transaction {
|
|
|
|
contractHash: string;
|
2016-02-23 14:07:53 +01:00
|
|
|
contract: Contract;
|
2016-01-05 01:10:31 +01:00
|
|
|
payReq: any;
|
2016-02-23 14:07:53 +01:00
|
|
|
merchantSig: string;
|
2016-01-05 01:10:31 +01:00
|
|
|
}
|
|
|
|
|
2016-09-29 01:40:29 +02:00
|
|
|
export enum HistoryLevel {
|
|
|
|
Trace = 1,
|
|
|
|
Developer = 2,
|
|
|
|
Expert = 3,
|
|
|
|
User = 4,
|
|
|
|
}
|
|
|
|
|
2016-01-05 01:10:31 +01:00
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
export interface Badge {
|
|
|
|
setText(s: string): void;
|
|
|
|
setColor(c: string): void;
|
2016-09-12 17:41:12 +02:00
|
|
|
startBusy(): void;
|
|
|
|
stopBusy(): void;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
|
|
|
|
2016-09-28 23:41:34 +02:00
|
|
|
export function canonicalJson(obj: any): string {
|
|
|
|
// Check for cycles, etc.
|
|
|
|
JSON.stringify(obj);
|
|
|
|
if (typeof obj == "string" || typeof obj == "number" || obj === null) {
|
|
|
|
return JSON.stringify(obj)
|
|
|
|
}
|
|
|
|
if (Array.isArray(obj)) {
|
|
|
|
let objs: string[] = obj.map((e) => canonicalJson(e));
|
|
|
|
return `[${objs.join(',')}]`;
|
|
|
|
}
|
|
|
|
let keys: string[] = [];
|
|
|
|
for (let key in obj) {
|
|
|
|
keys.push(key);
|
|
|
|
}
|
|
|
|
keys.sort();
|
|
|
|
let s = "{";
|
|
|
|
for (let i = 0; i < keys.length; i++) {
|
|
|
|
let key = keys[i];
|
|
|
|
s += JSON.stringify(key) + ":" + canonicalJson(obj[key]);
|
|
|
|
if (i != keys.length - 1) {
|
|
|
|
s += ",";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s + "}";
|
|
|
|
}
|
|
|
|
|
2015-12-17 22:56:24 +01:00
|
|
|
|
2016-09-12 17:41:12 +02:00
|
|
|
function deepEquals(x: any, y: any): boolean {
|
2016-02-19 04:23:00 +01:00
|
|
|
if (x === y) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Array.isArray(x) && x.length !== y.length) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var p = Object.keys(x);
|
|
|
|
return Object.keys(y).every((i) => p.indexOf(i) !== -1) &&
|
|
|
|
p.every((i) => deepEquals(x[i], y[i]));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-24 00:36:20 +02:00
|
|
|
function flatMap<T, U>(xs: T[], f: (x: T) => U[]): U[] {
|
|
|
|
return xs.reduce((acc: U[], next: T) => [...f(next), ...acc], []);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-12 02:55:53 +02:00
|
|
|
function getTalerStampSec(stamp: string): number | null {
|
2016-02-10 02:03:31 +01:00
|
|
|
const m = stamp.match(/\/?Date\(([0-9]*)\)\/?/);
|
|
|
|
if (!m) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return parseInt(m[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-12 17:41:12 +02:00
|
|
|
function setTimeout(f: any, t: number) {
|
2016-05-24 01:18:23 +02:00
|
|
|
return chrome.extension.getBackgroundPage().setTimeout(f, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
function isWithdrawableDenom(d: Denomination) {
|
|
|
|
const now_sec = (new Date).getTime() / 1000;
|
|
|
|
const stamp_withdraw_sec = getTalerStampSec(d.stamp_expire_withdraw);
|
|
|
|
// Withdraw if still possible to withdraw within a minute
|
|
|
|
if (stamp_withdraw_sec + 60 > now_sec) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
interface HttpRequestLibrary {
|
2016-01-06 15:58:18 +01:00
|
|
|
req(method: string,
|
2016-10-13 02:23:24 +02:00
|
|
|
url: string | uri.URI,
|
|
|
|
options?: any): Promise<HttpResponse>;
|
2016-01-06 15:58:18 +01:00
|
|
|
|
2016-10-12 02:55:53 +02:00
|
|
|
get(url: string | uri.URI): Promise<HttpResponse>;
|
2016-01-05 01:10:31 +01:00
|
|
|
|
2016-10-12 02:55:53 +02:00
|
|
|
postJson(url: string | uri.URI, body: any): Promise<HttpResponse>;
|
2016-01-06 15:58:18 +01:00
|
|
|
|
2016-10-12 02:55:53 +02:00
|
|
|
postForm(url: string | uri.URI, form: any): Promise<HttpResponse>;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-17 22:56:24 +01:00
|
|
|
|
|
|
|
|
2016-09-12 17:41:12 +02:00
|
|
|
function copy(o: any) {
|
2016-01-06 15:39:22 +01:00
|
|
|
return JSON.parse(JSON.stringify(o));
|
2015-12-17 22:56:24 +01:00
|
|
|
}
|
|
|
|
|
2016-05-24 17:30:27 +02:00
|
|
|
/**
|
|
|
|
* Result of updating exisiting information
|
|
|
|
* about an exchange with a new '/keys' response.
|
|
|
|
*/
|
|
|
|
interface KeyUpdateInfo {
|
|
|
|
updatedExchangeInfo: IExchangeInfo;
|
|
|
|
addedDenominations: Denomination[];
|
|
|
|
removedDenominations: Denomination[];
|
|
|
|
}
|
|
|
|
|
2015-12-17 22:56:24 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Get a list of denominations (with repetitions possible)
|
|
|
|
* whose total value is as close as possible to the available
|
|
|
|
* amount, but never larger.
|
|
|
|
*/
|
|
|
|
function getWithdrawDenomList(amountAvailable: AmountJson,
|
2016-10-13 02:23:24 +02:00
|
|
|
denoms: Denomination[]): Denomination[] {
|
2016-02-22 23:13:28 +01:00
|
|
|
let remaining = Amounts.copy(amountAvailable);
|
2016-09-12 17:41:12 +02:00
|
|
|
const ds: Denomination[] = [];
|
2016-02-11 18:17:02 +01:00
|
|
|
|
|
|
|
denoms = denoms.filter(isWithdrawableDenom);
|
2016-02-22 23:13:28 +01:00
|
|
|
denoms.sort((d1, d2) => Amounts.cmp(d2.value, d1.value));
|
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
// This is an arbitrary number of coins
|
|
|
|
// we can withdraw in one go. It's not clear if this limit
|
|
|
|
// is useful ...
|
|
|
|
for (let i = 0; i < 1000; i++) {
|
|
|
|
let found = false;
|
|
|
|
for (let d of denoms) {
|
2016-02-22 23:13:28 +01:00
|
|
|
let cost = Amounts.add(d.value, d.fee_withdraw).amount;
|
|
|
|
if (Amounts.cmp(remaining, cost) < 0) {
|
2016-02-11 18:17:02 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
found = true;
|
2016-02-22 23:13:28 +01:00
|
|
|
remaining = Amounts.sub(remaining, cost).amount;
|
2016-02-11 18:17:02 +01:00
|
|
|
ds.push(d);
|
2016-02-22 23:13:28 +01:00
|
|
|
break;
|
2016-02-11 18:17:02 +01:00
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ds;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
export class Wallet {
|
2016-01-06 15:39:22 +01:00
|
|
|
private db: IDBDatabase;
|
|
|
|
private http: HttpRequestLibrary;
|
|
|
|
private badge: Badge;
|
2016-02-18 23:41:29 +01:00
|
|
|
private notifier: Notifier;
|
2016-02-22 19:21:06 +01:00
|
|
|
public cryptoApi: CryptoApi;
|
2016-01-05 14:20:13 +01:00
|
|
|
|
2016-05-24 02:05:19 +02:00
|
|
|
/**
|
|
|
|
* Set of identifiers for running operations.
|
|
|
|
*/
|
|
|
|
private runningOperations: Set<string> = new Set();
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
q(): QueryRoot {
|
|
|
|
return new QueryRoot(this.db);
|
|
|
|
}
|
|
|
|
|
2016-02-18 23:41:29 +01:00
|
|
|
constructor(db: IDBDatabase,
|
2016-10-13 02:23:24 +02:00
|
|
|
http: HttpRequestLibrary,
|
|
|
|
badge: Badge,
|
|
|
|
notifier: Notifier) {
|
2016-01-06 15:39:22 +01:00
|
|
|
this.db = db;
|
|
|
|
this.http = http;
|
|
|
|
this.badge = badge;
|
2016-02-18 23:41:29 +01:00
|
|
|
this.notifier = notifier;
|
2016-02-22 19:21:06 +01:00
|
|
|
this.cryptoApi = new CryptoApi();
|
2016-05-24 01:18:23 +02:00
|
|
|
|
|
|
|
this.resumePendingFromDb();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-24 02:05:19 +02:00
|
|
|
private startOperation(operationId: string) {
|
|
|
|
this.runningOperations.add(operationId);
|
|
|
|
this.badge.startBusy();
|
|
|
|
}
|
|
|
|
|
|
|
|
private stopOperation(operationId: string) {
|
|
|
|
this.runningOperations.delete(operationId);
|
|
|
|
if (this.runningOperations.size == 0) {
|
|
|
|
this.badge.stopBusy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-24 17:30:27 +02:00
|
|
|
updateExchanges(): void {
|
|
|
|
console.log("updating exchanges");
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
this.q()
|
|
|
|
.iter("exchanges")
|
|
|
|
.reduce((exchange: IExchangeInfo) => {
|
|
|
|
this.updateExchangeFromUrl(exchange.baseUrl)
|
|
|
|
.catch((e) => {
|
|
|
|
console.error("updating exchange failed", e);
|
|
|
|
});
|
|
|
|
});
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
|
|
|
|
2016-05-24 01:18:23 +02:00
|
|
|
/**
|
|
|
|
* Resume various pending operations that are pending
|
|
|
|
* by looking at the database.
|
|
|
|
*/
|
|
|
|
private resumePendingFromDb(): void {
|
|
|
|
console.log("resuming pending operations from db");
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
this.q()
|
|
|
|
.iter("reserves")
|
|
|
|
.reduce((reserve: any) => {
|
|
|
|
console.log("resuming reserve", reserve.reserve_pub);
|
|
|
|
this.processReserve(reserve);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.q()
|
|
|
|
.iter("precoins")
|
|
|
|
.reduce((preCoin: any) => {
|
|
|
|
console.log("resuming precoin");
|
|
|
|
this.processPreCoin(preCoin);
|
|
|
|
});
|
2016-01-05 14:20:13 +01:00
|
|
|
}
|
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
/**
|
2016-03-01 19:39:17 +01:00
|
|
|
* Get exchanges and associated coins that are still spendable,
|
2016-01-06 15:39:22 +01:00
|
|
|
* but only if the sum the coins' remaining value exceeds the payment amount.
|
|
|
|
*/
|
2016-09-28 19:09:10 +02:00
|
|
|
private async getPossibleExchangeCoins(paymentAmount: AmountJson,
|
2016-10-13 02:23:24 +02:00
|
|
|
depositFeeLimit: AmountJson,
|
|
|
|
allowedExchanges: ExchangeHandle[]): Promise<ExchangeCoins> {
|
2016-03-01 19:39:17 +01:00
|
|
|
// Mapping from exchange base URL to list of coins together with their
|
2016-02-17 18:59:27 +01:00
|
|
|
// denomination
|
2016-03-01 19:39:17 +01:00
|
|
|
let m: ExchangeCoins = {};
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-05-13 13:51:46 +02:00
|
|
|
let x: number;
|
2016-04-06 02:06:57 +02:00
|
|
|
|
2016-09-12 17:41:12 +02:00
|
|
|
function storeExchangeCoin(mc: any, url: string) {
|
2016-03-01 19:39:17 +01:00
|
|
|
let exchange: IExchangeInfo = mc[0];
|
2016-03-05 01:36:38 +01:00
|
|
|
console.log("got coin for exchange", url);
|
2016-02-19 13:03:45 +01:00
|
|
|
let coin: Coin = mc[1];
|
2016-05-24 17:30:27 +02:00
|
|
|
if (coin.suspended) {
|
|
|
|
console.log("skipping suspended coin",
|
2016-10-13 02:23:24 +02:00
|
|
|
coin.denomPub,
|
|
|
|
"from exchange",
|
|
|
|
exchange.baseUrl);
|
2016-05-24 17:30:27 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-09-14 15:55:10 +02:00
|
|
|
let denom = exchange.active_denoms.find((e) => e.denom_pub === coin.denomPub);
|
|
|
|
if (!denom) {
|
2016-05-24 17:30:27 +02:00
|
|
|
console.warn("denom not found (database inconsistent)");
|
|
|
|
return;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-09-14 15:55:10 +02:00
|
|
|
if (denom.value.currency !== paymentAmount.currency) {
|
2016-02-19 13:03:45 +01:00
|
|
|
console.warn("same pubkey for different currencies");
|
|
|
|
return;
|
|
|
|
}
|
2016-10-13 02:23:24 +02:00
|
|
|
let cd = {coin, denom};
|
2016-03-05 01:36:38 +01:00
|
|
|
let x = m[url];
|
2016-01-06 15:39:22 +01:00
|
|
|
if (!x) {
|
2016-03-05 01:36:38 +01:00
|
|
|
m[url] = [cd];
|
2016-01-06 15:39:22 +01:00
|
|
|
} else {
|
|
|
|
x.push(cd);
|
|
|
|
}
|
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-03-05 01:36:38 +01:00
|
|
|
// Make sure that we don't look up coins
|
|
|
|
// for the same URL twice ...
|
|
|
|
let handledExchanges = new Set();
|
|
|
|
|
2016-05-24 00:36:20 +02:00
|
|
|
let ps = flatMap(allowedExchanges, (info: ExchangeHandle) => {
|
2016-03-05 01:36:38 +01:00
|
|
|
if (handledExchanges.has(info.url)) {
|
2016-05-24 00:36:20 +02:00
|
|
|
return [];
|
2016-03-05 01:36:38 +01:00
|
|
|
}
|
|
|
|
handledExchanges.add(info.url);
|
2016-03-01 19:39:17 +01:00
|
|
|
console.log("Checking for merchant's exchange", JSON.stringify(info));
|
2016-05-24 01:53:56 +02:00
|
|
|
return [
|
2016-10-13 02:23:24 +02:00
|
|
|
this.q()
|
|
|
|
.iter("exchanges", {indexName: "pubKey", only: info.master_pub})
|
|
|
|
.indexJoin("coins",
|
|
|
|
"exchangeBaseUrl",
|
|
|
|
(exchange) => exchange.baseUrl)
|
|
|
|
.reduce((x) => storeExchangeCoin(x, info.url))
|
2016-05-24 01:53:56 +02:00
|
|
|
];
|
2016-01-06 15:39:22 +01:00
|
|
|
});
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-09-28 19:09:10 +02:00
|
|
|
await Promise.all(ps);
|
2016-01-06 15:39:22 +01:00
|
|
|
|
2016-09-28 19:09:10 +02:00
|
|
|
let ret: ExchangeCoins = {};
|
2016-02-17 18:59:27 +01:00
|
|
|
|
2016-09-28 19:09:10 +02:00
|
|
|
if (Object.keys(m).length == 0) {
|
|
|
|
console.log("not suitable exchanges found");
|
|
|
|
}
|
|
|
|
|
|
|
|
console.dir(m);
|
|
|
|
|
|
|
|
// We try to find the first exchange where we have
|
|
|
|
// enough coins to cover the paymentAmount with fees
|
|
|
|
// under depositFeeLimit
|
|
|
|
|
|
|
|
nextExchange:
|
2016-10-13 02:23:24 +02:00
|
|
|
for (let key in m) {
|
|
|
|
let coins = m[key];
|
|
|
|
// Sort by ascending deposit fee
|
|
|
|
coins.sort((o1, o2) => Amounts.cmp(o1.denom.fee_deposit,
|
|
|
|
o2.denom.fee_deposit));
|
|
|
|
let maxFee = Amounts.copy(depositFeeLimit);
|
|
|
|
let minAmount = Amounts.copy(paymentAmount);
|
|
|
|
let accFee = Amounts.copy(coins[0].denom.fee_deposit);
|
|
|
|
let accAmount = Amounts.getZero(coins[0].coin.currentAmount.currency);
|
|
|
|
let usableCoins: CoinWithDenom[] = [];
|
|
|
|
nextCoin:
|
|
|
|
for (let i = 0; i < coins.length; i++) {
|
|
|
|
let coinAmount = Amounts.copy(coins[i].coin.currentAmount);
|
|
|
|
let coinFee = coins[i].denom.fee_deposit;
|
|
|
|
if (Amounts.cmp(coinAmount, coinFee) <= 0) {
|
|
|
|
continue nextCoin;
|
|
|
|
}
|
|
|
|
accFee = Amounts.add(accFee, coinFee).amount;
|
|
|
|
accAmount = Amounts.add(accAmount, coinAmount).amount;
|
|
|
|
if (Amounts.cmp(accFee, maxFee) >= 0) {
|
|
|
|
// FIXME: if the fees are too high, we have
|
|
|
|
// to cover them ourselves ....
|
|
|
|
console.log("too much fees");
|
|
|
|
continue nextExchange;
|
|
|
|
}
|
|
|
|
usableCoins.push(coins[i]);
|
|
|
|
if (Amounts.cmp(accAmount, minAmount) >= 0) {
|
|
|
|
ret[key] = usableCoins;
|
|
|
|
continue nextExchange;
|
|
|
|
}
|
|
|
|
}
|
2016-09-28 19:09:10 +02:00
|
|
|
}
|
|
|
|
return ret;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
/**
|
|
|
|
* Record all information that is necessary to
|
|
|
|
* pay for a contract in the wallet's database.
|
|
|
|
*/
|
2016-09-28 18:00:13 +02:00
|
|
|
private async recordConfirmPay(offer: Offer,
|
2016-10-13 02:23:24 +02:00
|
|
|
payCoinInfo: PayCoinInfo,
|
|
|
|
chosenExchange: string): Promise<void> {
|
2016-09-12 17:41:12 +02:00
|
|
|
let payReq: any = {};
|
2016-02-01 15:10:20 +01:00
|
|
|
payReq["amount"] = offer.contract.amount;
|
|
|
|
payReq["coins"] = payCoinInfo.map((x) => x.sig);
|
2016-01-06 15:39:22 +01:00
|
|
|
payReq["H_contract"] = offer.H_contract;
|
2016-02-01 15:10:20 +01:00
|
|
|
payReq["max_fee"] = offer.contract.max_fee;
|
|
|
|
payReq["merchant_sig"] = offer.merchant_sig;
|
2016-03-01 19:39:17 +01:00
|
|
|
payReq["exchange"] = URI(chosenExchange).href();
|
2016-02-01 15:10:20 +01:00
|
|
|
payReq["refund_deadline"] = offer.contract.refund_deadline;
|
2016-01-06 15:39:22 +01:00
|
|
|
payReq["timestamp"] = offer.contract.timestamp;
|
2016-02-01 15:10:20 +01:00
|
|
|
payReq["transaction_id"] = offer.contract.transaction_id;
|
2016-01-06 15:39:22 +01:00
|
|
|
let t: Transaction = {
|
|
|
|
contractHash: offer.H_contract,
|
|
|
|
contract: offer.contract,
|
2016-01-26 17:21:17 +01:00
|
|
|
payReq: payReq,
|
2016-02-23 14:07:53 +01:00
|
|
|
merchantSig: offer.merchant_sig,
|
2016-01-06 15:39:22 +01:00
|
|
|
};
|
2015-12-14 16:54:47 +01:00
|
|
|
|
2016-01-24 02:29:13 +01:00
|
|
|
let historyEntry = {
|
|
|
|
type: "pay",
|
|
|
|
timestamp: (new Date).getTime(),
|
2016-09-28 23:41:34 +02:00
|
|
|
subjectId: `contract-${offer.H_contract}`,
|
2016-01-24 02:29:13 +01:00
|
|
|
detail: {
|
|
|
|
merchantName: offer.contract.merchant.name,
|
|
|
|
amount: offer.contract.amount,
|
2016-02-01 15:10:20 +01:00
|
|
|
contractHash: offer.H_contract,
|
2016-10-10 03:16:12 +02:00
|
|
|
fulfillmentUrl: offer.contract.fulfillment_url,
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
|
|
|
.put("transactions", t)
|
|
|
|
.put("history", historyEntry)
|
|
|
|
.putAll("coins", payCoinInfo.map((pci) => pci.updatedCoin))
|
|
|
|
.finish();
|
2016-09-28 18:00:13 +02:00
|
|
|
|
|
|
|
this.notifier.notify();
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-14 16:54:47 +01:00
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
|
2016-09-28 23:41:34 +02:00
|
|
|
async putHistory(historyEntry: HistoryRecord): Promise<void> {
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q().put("history", historyEntry).finish();
|
2016-09-29 01:40:29 +02:00
|
|
|
this.notifier.notify();
|
2016-09-28 23:41:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
/**
|
|
|
|
* Add a contract to the wallet and sign coins,
|
|
|
|
* but do not send them yet.
|
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async confirmPay(offer: Offer): Promise<any> {
|
2016-02-15 15:53:59 +01:00
|
|
|
console.log("executing confirmPay");
|
2016-02-22 21:52:53 +01:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
let transaction = await this.q().get("transactions", offer.H_contract);
|
2016-05-24 01:53:56 +02:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
if (transaction) {
|
|
|
|
// Already payed ...
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
let mcs = await this.getPossibleExchangeCoins(offer.contract.amount,
|
2016-10-13 02:23:24 +02:00
|
|
|
offer.contract.max_fee,
|
|
|
|
offer.contract.exchanges);
|
2016-09-28 18:54:48 +02:00
|
|
|
|
|
|
|
if (Object.keys(mcs).length == 0) {
|
|
|
|
console.log("not confirming payment, insufficient coins");
|
|
|
|
return {
|
|
|
|
error: "coins-insufficient",
|
|
|
|
};
|
|
|
|
}
|
|
|
|
let exchangeUrl = Object.keys(mcs)[0];
|
|
|
|
|
|
|
|
let ds = await this.cryptoApi.signDeposit(offer, mcs[exchangeUrl]);
|
|
|
|
await this.recordConfirmPay(offer,
|
2016-10-13 02:23:24 +02:00
|
|
|
ds,
|
|
|
|
exchangeUrl);
|
2016-09-28 18:54:48 +02:00
|
|
|
return {};
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-16 00:38:36 +01:00
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
|
2016-04-27 06:03:04 +02:00
|
|
|
/**
|
|
|
|
* Add a contract to the wallet and sign coins,
|
|
|
|
* but do not send them yet.
|
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async checkPay(offer: Offer): Promise<any> {
|
2016-05-24 01:53:56 +02:00
|
|
|
// First check if we already payed for it.
|
2016-10-13 02:23:24 +02:00
|
|
|
let transaction = await this.q().get("transactions", offer.H_contract);
|
2016-09-28 18:54:48 +02:00
|
|
|
if (transaction) {
|
2016-10-13 02:23:24 +02:00
|
|
|
return {isPayed: true};
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
2016-05-24 01:53:56 +02:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
// If not already payed, check if we could pay for it.
|
|
|
|
let mcs = await this.getPossibleExchangeCoins(offer.contract.amount,
|
2016-10-13 02:23:24 +02:00
|
|
|
offer.contract.max_fee,
|
|
|
|
offer.contract.exchanges);
|
2016-05-24 01:53:56 +02:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
if (Object.keys(mcs).length == 0) {
|
|
|
|
console.log("not confirming payment, insufficient coins");
|
|
|
|
return {
|
|
|
|
error: "coins-insufficient",
|
|
|
|
};
|
|
|
|
}
|
2016-10-13 02:23:24 +02:00
|
|
|
return {isPayed: false};
|
2016-04-27 06:03:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
/**
|
|
|
|
* Retrieve all necessary information for looking up the contract
|
|
|
|
* with the given hash.
|
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async executePayment(H_contract: string): Promise<any> {
|
2016-10-13 02:23:24 +02:00
|
|
|
let t = await this.q().get<Transaction>("transactions", H_contract);
|
2016-09-28 18:54:48 +02:00
|
|
|
if (!t) {
|
|
|
|
return {
|
|
|
|
success: false,
|
|
|
|
contractFound: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let resp = {
|
|
|
|
success: true,
|
|
|
|
payReq: t.payReq,
|
|
|
|
contract: t.contract,
|
|
|
|
};
|
|
|
|
return resp;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-16 00:38:36 +01:00
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* First fetch information requred to withdraw from the reserve,
|
|
|
|
* then deplete the reserve, withdrawing coins until it is empty.
|
|
|
|
*/
|
2016-09-28 23:41:34 +02:00
|
|
|
private async processReserve(reserveRecord: ReserveRecord,
|
2016-10-13 02:23:24 +02:00
|
|
|
retryDelayMs: number = 250): Promise<void> {
|
2016-05-24 02:05:19 +02:00
|
|
|
const opId = "reserve-" + reserveRecord.reserve_pub;
|
|
|
|
this.startOperation(opId);
|
2016-09-28 18:54:48 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
let exchange = await this.updateExchangeFromUrl(reserveRecord.exchange_base_url);
|
|
|
|
let reserve = await this.updateReserve(reserveRecord.reserve_pub,
|
2016-10-13 02:23:24 +02:00
|
|
|
exchange);
|
2016-09-29 01:40:29 +02:00
|
|
|
let n = await this.depleteReserve(reserve, exchange);
|
|
|
|
|
|
|
|
if (n != 0) {
|
|
|
|
let depleted = {
|
|
|
|
type: "depleted-reserve",
|
|
|
|
subjectId: `reserve-progress-${reserveRecord.reserve_pub}`,
|
|
|
|
timestamp: (new Date).getTime(),
|
|
|
|
detail: {
|
2016-10-10 03:16:12 +02:00
|
|
|
exchangeBaseUrl: reserveRecord.exchange_base_url,
|
2016-09-29 01:40:29 +02:00
|
|
|
reservePub: reserveRecord.reserve_pub,
|
|
|
|
requestedAmount: reserveRecord.requested_amount,
|
|
|
|
currentAmount: reserveRecord.current_amount,
|
|
|
|
}
|
|
|
|
};
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q().put("history", depleted).finish();
|
2016-09-29 01:40:29 +02:00
|
|
|
}
|
2016-09-28 18:54:48 +02:00
|
|
|
} catch (e) {
|
|
|
|
// random, exponential backoff truncated at 3 minutes
|
|
|
|
let nextDelay = Math.min(2 * retryDelayMs + retryDelayMs * Math.random(),
|
2016-10-13 02:23:24 +02:00
|
|
|
3000 * 60);
|
2016-09-28 18:54:48 +02:00
|
|
|
console.warn(`Failed to deplete reserve, trying again in ${retryDelayMs} ms`);
|
|
|
|
setTimeout(() => this.processReserve(reserveRecord, nextDelay),
|
2016-10-13 02:23:24 +02:00
|
|
|
retryDelayMs);
|
2016-09-28 18:54:48 +02:00
|
|
|
} finally {
|
|
|
|
this.stopOperation(opId);
|
|
|
|
}
|
2016-05-24 01:18:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-29 01:40:29 +02:00
|
|
|
private async processPreCoin(preCoin: PreCoin,
|
2016-10-13 02:23:24 +02:00
|
|
|
retryDelayMs = 100): Promise<void> {
|
2016-09-28 18:54:48 +02:00
|
|
|
try {
|
|
|
|
const coin = await this.withdrawExecute(preCoin);
|
|
|
|
this.storeCoin(coin);
|
|
|
|
} catch (e) {
|
|
|
|
console.error("Failed to withdraw coin from precoin, retrying in",
|
2016-10-13 02:23:24 +02:00
|
|
|
retryDelayMs,
|
|
|
|
"ms", e);
|
2016-09-28 18:54:48 +02:00
|
|
|
// exponential backoff truncated at one minute
|
|
|
|
let nextRetryDelayMs = Math.min(retryDelayMs * 2, 1000 * 60);
|
|
|
|
setTimeout(() => this.processPreCoin(preCoin, nextRetryDelayMs),
|
2016-10-13 02:23:24 +02:00
|
|
|
retryDelayMs);
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
2016-01-24 19:57:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
/**
|
|
|
|
* Create a reserve, but do not flag it as confirmed yet.
|
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async createReserve(req: CreateReserveRequest): Promise<CreateReserveResponse> {
|
|
|
|
let keypair = await this.cryptoApi.createEddsaKeypair();
|
|
|
|
const now = (new Date).getTime();
|
|
|
|
const canonExchange = canonicalizeBaseUrl(req.exchange);
|
|
|
|
|
2016-09-28 23:41:34 +02:00
|
|
|
const reserveRecord: ReserveRecord = {
|
2016-09-28 18:54:48 +02:00
|
|
|
reserve_pub: keypair.pub,
|
|
|
|
reserve_priv: keypair.priv,
|
|
|
|
exchange_base_url: canonExchange,
|
|
|
|
created: now,
|
|
|
|
last_query: null,
|
|
|
|
current_amount: null,
|
|
|
|
requested_amount: req.amount,
|
|
|
|
confirmed: false,
|
2016-09-29 01:40:29 +02:00
|
|
|
withdrawn_amount: Amounts.getZero(req.amount.currency)
|
2016-09-28 18:54:48 +02:00
|
|
|
};
|
2016-02-09 21:56:06 +01:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
const historyEntry = {
|
|
|
|
type: "create-reserve",
|
2016-10-10 04:07:34 +02:00
|
|
|
level: HistoryLevel.Expert,
|
2016-09-28 18:54:48 +02:00
|
|
|
timestamp: now,
|
2016-09-28 23:41:34 +02:00
|
|
|
subjectId: `reserve-progress-${reserveRecord.reserve_pub}`,
|
2016-09-28 18:54:48 +02:00
|
|
|
detail: {
|
|
|
|
requestedAmount: req.amount,
|
|
|
|
reservePub: reserveRecord.reserve_pub,
|
|
|
|
}
|
|
|
|
};
|
2016-01-06 15:39:22 +01:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
|
|
|
.put("reserves", reserveRecord)
|
|
|
|
.put("history", historyEntry)
|
|
|
|
.finish();
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
let r: CreateReserveResponse = {
|
|
|
|
exchange: canonExchange,
|
|
|
|
reservePub: keypair.pub,
|
|
|
|
};
|
|
|
|
return r;
|
2016-02-09 21:56:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark an existing reserve as confirmed. The wallet will start trying
|
|
|
|
* to withdraw from that reserve. This may not immediately succeed,
|
2016-03-01 19:39:17 +01:00
|
|
|
* since the exchange might not know about the reserve yet, even though the
|
2016-02-09 21:56:06 +01:00
|
|
|
* bank confirmed its creation.
|
|
|
|
*
|
|
|
|
* A confirmed reserve should be shown to the user in the UI, while
|
|
|
|
* an unconfirmed reserve should be hidden.
|
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async confirmReserve(req: ConfirmReserveRequest): Promise<void> {
|
2016-02-09 21:56:06 +01:00
|
|
|
const now = (new Date).getTime();
|
2016-10-13 02:23:24 +02:00
|
|
|
let reserve: ReserveRecord|undefined = await (
|
|
|
|
this.q().get<ReserveRecord>("reserves",
|
|
|
|
req.reservePub));
|
|
|
|
if (!reserve) {
|
|
|
|
console.error("Unable to confirm reserve, not found in DB");
|
|
|
|
return;
|
|
|
|
}
|
2016-02-09 21:56:06 +01:00
|
|
|
const historyEntry = {
|
|
|
|
type: "confirm-reserve",
|
|
|
|
timestamp: now,
|
2016-09-28 23:41:34 +02:00
|
|
|
subjectId: `reserve-progress-${reserve.reserve_pub}`,
|
2016-02-09 21:56:06 +01:00
|
|
|
detail: {
|
2016-10-10 03:16:12 +02:00
|
|
|
exchangeBaseUrl: reserve.exchange_base_url,
|
2016-02-09 21:56:06 +01:00
|
|
|
reservePub: req.reservePub,
|
2016-09-28 23:41:34 +02:00
|
|
|
requestedAmount: reserve.requested_amount,
|
2016-02-09 21:56:06 +01:00
|
|
|
}
|
|
|
|
};
|
2016-09-28 23:41:34 +02:00
|
|
|
reserve.confirmed = true;
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
|
|
|
.put("reserves", reserve)
|
|
|
|
.put("history", historyEntry)
|
|
|
|
.finish();
|
2016-09-28 19:09:10 +02:00
|
|
|
|
2016-09-28 23:41:34 +02:00
|
|
|
this.processReserve(reserve);
|
2015-12-16 05:53:55 +01:00
|
|
|
}
|
2016-01-05 01:10:31 +01:00
|
|
|
|
2016-01-24 19:57:09 +01:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
private async withdrawExecute(pc: PreCoin): Promise<Coin> {
|
2016-10-13 02:23:24 +02:00
|
|
|
let reserve = await this.q().get<ReserveRecord>("reserves", pc.reservePub);
|
|
|
|
|
|
|
|
if (!reserve) {
|
|
|
|
throw Error("db inconsistent");
|
|
|
|
}
|
2016-09-28 18:54:48 +02:00
|
|
|
|
|
|
|
let wd: any = {};
|
|
|
|
wd.denom_pub = pc.denomPub;
|
|
|
|
wd.reserve_pub = pc.reservePub;
|
|
|
|
wd.reserve_sig = pc.withdrawSig;
|
|
|
|
wd.coin_ev = pc.coinEv;
|
|
|
|
let reqUrl = URI("reserve/withdraw").absoluteTo(reserve.exchange_base_url);
|
|
|
|
let resp = await this.http.postJson(reqUrl, wd);
|
|
|
|
|
|
|
|
|
|
|
|
if (resp.status != 200) {
|
|
|
|
throw new RequestException({
|
|
|
|
hint: "Withdrawal failed",
|
|
|
|
status: resp.status
|
2016-01-06 15:39:22 +01:00
|
|
|
});
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
|
|
|
let r = JSON.parse(resp.responseText);
|
|
|
|
let denomSig = await this.cryptoApi.rsaUnblind(r.ev_sig,
|
2016-10-13 02:23:24 +02:00
|
|
|
pc.blindingKey,
|
|
|
|
pc.denomPub);
|
2016-09-28 18:54:48 +02:00
|
|
|
let coin: Coin = {
|
|
|
|
coinPub: pc.coinPub,
|
|
|
|
coinPriv: pc.coinPriv,
|
|
|
|
denomPub: pc.denomPub,
|
|
|
|
denomSig: denomSig,
|
|
|
|
currentAmount: pc.coinValue,
|
|
|
|
exchangeBaseUrl: pc.exchangeBaseUrl,
|
|
|
|
};
|
|
|
|
return coin;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
async storeCoin(coin: Coin): Promise<void> {
|
2016-09-23 14:09:07 +02:00
|
|
|
console.log("storing coin", new Date());
|
2016-09-29 01:40:29 +02:00
|
|
|
|
|
|
|
let historyEntry: HistoryRecord = {
|
2016-01-24 02:29:13 +01:00
|
|
|
type: "withdraw",
|
|
|
|
timestamp: (new Date).getTime(),
|
2016-09-29 01:40:29 +02:00
|
|
|
level: HistoryLevel.Expert,
|
2016-01-24 02:29:13 +01:00
|
|
|
detail: {
|
|
|
|
coinPub: coin.coinPub,
|
|
|
|
}
|
|
|
|
};
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
|
|
|
.delete("precoins", coin.coinPub)
|
|
|
|
.add("coins", coin)
|
|
|
|
.add("history", historyEntry)
|
|
|
|
.finish();
|
2016-09-28 18:54:48 +02:00
|
|
|
this.notifier.notify();
|
2015-12-14 16:54:47 +01:00
|
|
|
}
|
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
2016-05-24 01:18:23 +02:00
|
|
|
* Withdraw one coin of the given denomination from the given reserve.
|
2016-02-11 18:17:02 +01:00
|
|
|
*/
|
2016-10-13 02:23:24 +02:00
|
|
|
private async withdraw(denom: Denomination,
|
|
|
|
reserve: ReserveRecord): Promise<void> {
|
2016-02-17 17:51:25 +01:00
|
|
|
console.log("creating pre coin at", new Date());
|
2016-09-28 19:09:10 +02:00
|
|
|
let preCoin = await this.cryptoApi
|
2016-10-13 02:23:24 +02:00
|
|
|
.createPreCoin(denom, reserve);
|
|
|
|
await this.q()
|
|
|
|
.put("precoins", preCoin)
|
|
|
|
.finish();
|
2016-09-28 19:09:10 +02:00
|
|
|
await this.processPreCoin(preCoin);
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
/**
|
|
|
|
* Withdraw coins from a reserve until it is empty.
|
|
|
|
*/
|
2016-09-28 17:52:36 +02:00
|
|
|
private async depleteReserve(reserve: any,
|
2016-10-13 02:23:24 +02:00
|
|
|
exchange: IExchangeInfo): Promise<number> {
|
2016-05-24 17:30:27 +02:00
|
|
|
let denomsAvailable: Denomination[] = copy(exchange.active_denoms);
|
2016-02-11 18:17:02 +01:00
|
|
|
let denomsForWithdraw = getWithdrawDenomList(reserve.current_amount,
|
2016-10-13 02:23:24 +02:00
|
|
|
denomsAvailable);
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2016-09-28 17:52:36 +02:00
|
|
|
let ps = denomsForWithdraw.map((denom) => this.withdraw(denom, reserve));
|
|
|
|
await Promise.all(ps);
|
2016-09-29 01:40:29 +02:00
|
|
|
return ps.length;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
|
|
|
|
2016-01-24 19:57:09 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Update the information about a reserve that is stored in the wallet
|
2016-03-01 19:39:17 +01:00
|
|
|
* by quering the reserve's exchange.
|
2016-02-11 18:17:02 +01:00
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
private async updateReserve(reservePub: string,
|
2016-10-13 02:23:24 +02:00
|
|
|
exchange: IExchangeInfo): Promise<ReserveRecord> {
|
|
|
|
let reserve = await this.q()
|
|
|
|
.get<ReserveRecord>("reserves", reservePub);
|
|
|
|
if (!reserve) {
|
|
|
|
throw Error("reserve not in db");
|
|
|
|
}
|
2016-09-28 19:09:10 +02:00
|
|
|
let reqUrl = URI("reserve/status").absoluteTo(exchange.baseUrl);
|
2016-10-13 02:23:24 +02:00
|
|
|
reqUrl.query({'reserve_pub': reservePub});
|
2016-09-28 19:09:10 +02:00
|
|
|
let resp = await this.http.get(reqUrl);
|
|
|
|
if (resp.status != 200) {
|
|
|
|
throw Error();
|
|
|
|
}
|
|
|
|
let reserveInfo = JSON.parse(resp.responseText);
|
|
|
|
if (!reserveInfo) {
|
|
|
|
throw Error();
|
|
|
|
}
|
|
|
|
let oldAmount = reserve.current_amount;
|
|
|
|
let newAmount = reserveInfo.balance;
|
|
|
|
reserve.current_amount = reserveInfo.balance;
|
|
|
|
let historyEntry = {
|
|
|
|
type: "reserve-update",
|
|
|
|
timestamp: (new Date).getTime(),
|
2016-09-28 23:41:34 +02:00
|
|
|
subjectId: `reserve-progress-${reserve.reserve_pub}`,
|
2016-09-28 19:09:10 +02:00
|
|
|
detail: {
|
|
|
|
reservePub,
|
2016-09-28 23:41:34 +02:00
|
|
|
requestedAmount: reserve.requested_amount,
|
2016-09-28 19:09:10 +02:00
|
|
|
oldAmount,
|
|
|
|
newAmount
|
|
|
|
}
|
|
|
|
};
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
|
|
|
.put("reserves", reserve)
|
|
|
|
.finish();
|
2016-09-28 19:09:10 +02:00
|
|
|
return reserve;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-05-24 00:36:20 +02:00
|
|
|
/**
|
|
|
|
* Get the wire information for the exchange with the given base URL.
|
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async getWireInfo(exchangeBaseUrl: string): Promise<WireInfo> {
|
2016-05-24 00:36:20 +02:00
|
|
|
exchangeBaseUrl = canonicalizeBaseUrl(exchangeBaseUrl);
|
|
|
|
let reqUrl = URI("wire").absoluteTo(exchangeBaseUrl);
|
2016-09-28 18:54:48 +02:00
|
|
|
let resp = await this.http.get(reqUrl);
|
2016-04-06 02:06:57 +02:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
if (resp.status != 200) {
|
|
|
|
throw Error("/wire request failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
let wiJson = JSON.parse(resp.responseText);
|
|
|
|
if (!wiJson) {
|
|
|
|
throw Error("/wire response malformed")
|
|
|
|
}
|
|
|
|
return wiJson;
|
2016-04-06 02:06:57 +02:00
|
|
|
}
|
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
async getReserveCreationInfo(baseUrl: string,
|
2016-10-13 02:23:24 +02:00
|
|
|
amount: AmountJson): Promise<ReserveCreationInfo> {
|
2016-09-28 18:54:48 +02:00
|
|
|
let exchangeInfo = await this.updateExchangeFromUrl(baseUrl);
|
2016-04-06 02:06:57 +02:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
let selectedDenoms = getWithdrawDenomList(amount,
|
2016-10-13 02:23:24 +02:00
|
|
|
exchangeInfo.active_denoms);
|
2016-09-28 18:54:48 +02:00
|
|
|
let acc = Amounts.getZero(amount.currency);
|
|
|
|
for (let d of selectedDenoms) {
|
|
|
|
acc = Amounts.add(acc, d.fee_withdraw).amount;
|
|
|
|
}
|
|
|
|
let actualCoinCost = selectedDenoms
|
|
|
|
.map((d: Denomination) => Amounts.add(d.value,
|
2016-10-13 02:23:24 +02:00
|
|
|
d.fee_withdraw).amount)
|
2016-09-28 18:54:48 +02:00
|
|
|
.reduce((a, b) => Amounts.add(a, b).amount);
|
|
|
|
|
|
|
|
let wireInfo = await this.getWireInfo(baseUrl);
|
|
|
|
|
|
|
|
let ret: ReserveCreationInfo = {
|
|
|
|
exchangeInfo,
|
|
|
|
selectedDenoms,
|
|
|
|
wireInfo,
|
|
|
|
withdrawFee: acc,
|
|
|
|
overhead: Amounts.sub(amount, actualCoinCost).amount,
|
|
|
|
};
|
|
|
|
return ret;
|
2016-02-18 22:50:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
/**
|
2016-03-01 19:39:17 +01:00
|
|
|
* Update or add exchange DB entry by fetching the /keys information.
|
2016-01-06 15:39:22 +01:00
|
|
|
* Optionally link the reserve entry to the new or existing
|
2016-03-01 19:39:17 +01:00
|
|
|
* exchange entry in then DB.
|
2016-01-06 15:39:22 +01:00
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async updateExchangeFromUrl(baseUrl: string): Promise<IExchangeInfo> {
|
2016-02-18 22:50:17 +01:00
|
|
|
baseUrl = canonicalizeBaseUrl(baseUrl);
|
2016-01-06 15:39:22 +01:00
|
|
|
let reqUrl = URI("keys").absoluteTo(baseUrl);
|
2016-09-28 18:54:48 +02:00
|
|
|
let resp = await this.http.get(reqUrl);
|
|
|
|
if (resp.status != 200) {
|
|
|
|
throw Error("/keys request failed");
|
|
|
|
}
|
|
|
|
let exchangeKeysJson = KeysJson.checked(JSON.parse(resp.responseText));
|
|
|
|
return this.updateExchangeFromJson(baseUrl, exchangeKeysJson);
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
2016-02-18 22:50:17 +01:00
|
|
|
|
2016-09-28 18:00:13 +02:00
|
|
|
private async suspendCoins(exchangeInfo: IExchangeInfo): Promise<void> {
|
2016-10-13 02:23:24 +02:00
|
|
|
let suspendedCoins = await (
|
|
|
|
this.q()
|
|
|
|
.iter("coins",
|
|
|
|
{indexName: "exchangeBaseUrl", only: exchangeInfo.baseUrl})
|
|
|
|
.reduce((coin: Coin, suspendedCoins: Coin[]) => {
|
|
|
|
if (!exchangeInfo.active_denoms.find((c) => c.denom_pub == coin.denomPub)) {
|
|
|
|
return Array.prototype.concat(suspendedCoins, [coin]);
|
|
|
|
}
|
|
|
|
return Array.prototype.concat(suspendedCoins);
|
|
|
|
}, []));
|
|
|
|
|
|
|
|
let q = this.q();
|
2016-09-28 18:00:13 +02:00
|
|
|
suspendedCoins.map((c) => {
|
|
|
|
console.log("suspending coin", c);
|
|
|
|
c.suspended = true;
|
|
|
|
q.put("coins", c);
|
|
|
|
});
|
|
|
|
await q.finish();
|
|
|
|
}
|
2016-02-18 22:50:17 +01:00
|
|
|
|
2016-09-28 18:00:13 +02:00
|
|
|
|
|
|
|
private async updateExchangeFromJson(baseUrl: string,
|
2016-10-13 02:23:24 +02:00
|
|
|
exchangeKeysJson: KeysJson): Promise<IExchangeInfo> {
|
2016-09-12 17:41:12 +02:00
|
|
|
const updateTimeSec = getTalerStampSec(exchangeKeysJson.list_issue_date);
|
|
|
|
if (updateTimeSec === null) {
|
2016-05-24 17:30:27 +02:00
|
|
|
throw Error("invalid update time");
|
|
|
|
}
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
let r = await this.q().get<IExchangeInfo>("exchanges", baseUrl);
|
2016-09-28 18:00:13 +02:00
|
|
|
|
|
|
|
let exchangeInfo: IExchangeInfo;
|
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
exchangeInfo = {
|
|
|
|
baseUrl,
|
|
|
|
all_denoms: [],
|
|
|
|
active_denoms: [],
|
|
|
|
last_update_time: updateTimeSec,
|
|
|
|
masterPublicKey: exchangeKeysJson.master_public_key,
|
|
|
|
};
|
|
|
|
console.log("making fresh exchange");
|
|
|
|
} else {
|
|
|
|
if (updateTimeSec < r.last_update_time) {
|
|
|
|
console.log("outdated /keys, not updating");
|
|
|
|
return r
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
2016-09-28 18:00:13 +02:00
|
|
|
exchangeInfo = r;
|
|
|
|
console.log("updating old exchange");
|
|
|
|
}
|
2016-05-24 17:30:27 +02:00
|
|
|
|
2016-09-28 18:00:13 +02:00
|
|
|
let updatedExchangeInfo = await this.updateExchangeInfo(exchangeInfo,
|
2016-10-13 02:23:24 +02:00
|
|
|
exchangeKeysJson);
|
2016-09-28 18:00:13 +02:00
|
|
|
await this.suspendCoins(updatedExchangeInfo);
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
|
|
|
.put("exchanges", updatedExchangeInfo)
|
|
|
|
.finish();
|
2016-09-28 18:00:13 +02:00
|
|
|
|
|
|
|
return updatedExchangeInfo;
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
2016-02-18 22:50:17 +01:00
|
|
|
|
2016-02-19 00:49:22 +01:00
|
|
|
|
2016-09-28 19:09:10 +02:00
|
|
|
private async updateExchangeInfo(exchangeInfo: IExchangeInfo,
|
2016-10-13 02:23:24 +02:00
|
|
|
newKeys: KeysJson): Promise<IExchangeInfo> {
|
2016-05-24 17:30:27 +02:00
|
|
|
if (exchangeInfo.masterPublicKey != newKeys.master_public_key) {
|
|
|
|
throw Error("public keys do not match");
|
|
|
|
}
|
|
|
|
|
|
|
|
exchangeInfo.active_denoms = [];
|
|
|
|
|
2016-09-28 19:09:10 +02:00
|
|
|
let denomsToCheck = newKeys.denoms.filter((newDenom) => {
|
2016-05-24 17:30:27 +02:00
|
|
|
// did we find the new denom in the list of all (old) denoms?
|
|
|
|
let found = false;
|
|
|
|
for (let oldDenom of exchangeInfo.all_denoms) {
|
|
|
|
if (oldDenom.denom_pub === newDenom.denom_pub) {
|
2016-09-12 17:41:12 +02:00
|
|
|
let a: any = Object.assign({}, oldDenom);
|
|
|
|
let b: any = Object.assign({}, newDenom);
|
2016-05-24 17:30:27 +02:00
|
|
|
// pub hash is only there for convenience in the wallet
|
|
|
|
delete a["pub_hash"];
|
|
|
|
delete b["pub_hash"];
|
|
|
|
if (!deepEquals(a, b)) {
|
|
|
|
console.error("denomination parameters were modified, old/new:");
|
|
|
|
console.dir(a);
|
|
|
|
console.dir(b);
|
|
|
|
// FIXME: report to auditors
|
|
|
|
}
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) {
|
|
|
|
exchangeInfo.active_denoms.push(newDenom);
|
|
|
|
// No need to check signatures
|
2016-09-28 19:09:10 +02:00
|
|
|
return false;
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
2016-09-28 19:09:10 +02:00
|
|
|
return true;
|
|
|
|
});
|
2016-05-24 17:30:27 +02:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
let ps = denomsToCheck.map(async(denom) => {
|
2016-09-28 19:09:10 +02:00
|
|
|
let valid = await this.cryptoApi
|
2016-10-13 02:23:24 +02:00
|
|
|
.isValidDenom(denom,
|
|
|
|
exchangeInfo.masterPublicKey);
|
2016-09-28 19:09:10 +02:00
|
|
|
if (!valid) {
|
|
|
|
console.error("invalid denomination",
|
2016-10-13 02:23:24 +02:00
|
|
|
denom,
|
|
|
|
"with key",
|
|
|
|
exchangeInfo.masterPublicKey);
|
2016-09-28 19:09:10 +02:00
|
|
|
// FIXME: report to auditors
|
|
|
|
}
|
|
|
|
exchangeInfo.active_denoms.push(denom);
|
|
|
|
exchangeInfo.all_denoms.push(denom);
|
2016-01-05 01:10:31 +01:00
|
|
|
});
|
2016-05-24 17:30:27 +02:00
|
|
|
|
2016-09-28 19:09:10 +02:00
|
|
|
await Promise.all(ps);
|
|
|
|
|
|
|
|
return exchangeInfo;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-01-05 01:10:31 +01:00
|
|
|
|
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Retrieve a mapping from currency name to the amount
|
|
|
|
* that is currenctly available for spending in the wallet.
|
|
|
|
*/
|
2016-09-28 18:00:13 +02:00
|
|
|
async getBalances(): Promise<any> {
|
2016-09-12 17:41:12 +02:00
|
|
|
function collectBalances(c: Coin, byCurrency: any) {
|
2016-05-24 17:30:27 +02:00
|
|
|
if (c.suspended) {
|
|
|
|
return byCurrency;
|
|
|
|
}
|
2016-02-01 15:10:20 +01:00
|
|
|
let acc: AmountJson = byCurrency[c.currentAmount.currency];
|
2016-01-06 15:39:22 +01:00
|
|
|
if (!acc) {
|
2016-02-22 23:13:28 +01:00
|
|
|
acc = Amounts.getZero(c.currentAmount.currency);
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-02-22 23:13:28 +01:00
|
|
|
byCurrency[c.currentAmount.currency] = Amounts.add(c.currentAmount,
|
2016-10-13 02:23:24 +02:00
|
|
|
acc).amount;
|
2016-01-06 15:39:22 +01:00
|
|
|
return byCurrency;
|
2016-01-05 01:10:31 +01:00
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
let byCurrency = await (
|
|
|
|
this.q()
|
|
|
|
.iter("coins")
|
|
|
|
.reduce(collectBalances, {}));
|
|
|
|
|
|
|
|
return {balances: byCurrency};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async refresh(oldCoinPub: string): Promise<void> {
|
|
|
|
// FIXME: this is not running in a transaction.
|
|
|
|
|
|
|
|
let coin = await this.q().get<Coin>("coins", oldCoinPub);
|
|
|
|
|
|
|
|
if (!coin) {
|
|
|
|
console.error("coin not found");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let exchange = await this.q().get<IExchangeInfo>("exchanges",
|
|
|
|
coin.exchangeBaseUrl);
|
|
|
|
if (!exchange) {
|
|
|
|
throw Error("db inconsistent");
|
|
|
|
}
|
|
|
|
|
|
|
|
let oldDenom = exchange.all_denoms.find((d) => d.denom_pub == coin!.denomPub);
|
|
|
|
|
|
|
|
if (!oldDenom) {
|
|
|
|
throw Error("db inconsistent");
|
|
|
|
}
|
|
|
|
|
|
|
|
let availableDenoms: Denomination[] = exchange.active_denoms;
|
|
|
|
|
|
|
|
let newCoinDenoms = getWithdrawDenomList(coin.currentAmount,
|
|
|
|
availableDenoms);
|
|
|
|
|
|
|
|
console.log("refreshing into", newCoinDenoms);
|
|
|
|
|
|
|
|
|
|
|
|
let refreshSession: RefreshSession = await (
|
|
|
|
this.cryptoApi.createWithdrawSession(3,
|
|
|
|
coin,
|
|
|
|
newCoinDenoms,
|
|
|
|
coin.currentAmount,
|
|
|
|
oldDenom.fee_refresh));
|
|
|
|
|
2016-10-13 02:36:33 +02:00
|
|
|
let reqUrl = URI("reserve/withdraw").absoluteTo(exchange!.baseUrl);
|
|
|
|
let resp = await this.http.postJson(reqUrl, {});
|
|
|
|
|
|
|
|
console.log("melt response:", resp.responseText);
|
2016-09-28 18:00:13 +02:00
|
|
|
|
2016-10-13 02:36:33 +02:00
|
|
|
// FIXME: implement rest
|
2016-01-05 01:10:31 +01:00
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Retrive the full event history for this wallet.
|
|
|
|
*/
|
2016-09-28 17:52:36 +02:00
|
|
|
async getHistory(): Promise<any> {
|
2016-09-12 17:41:12 +02:00
|
|
|
function collect(x: any, acc: any) {
|
2016-01-24 02:29:13 +01:00
|
|
|
acc.push(x);
|
2016-03-02 05:23:16 +01:00
|
|
|
return acc;
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
let history = await (
|
|
|
|
this.q()
|
|
|
|
.iter("history", {indexName: "timestamp"})
|
|
|
|
.reduce(collect, []));
|
2016-09-28 17:52:36 +02:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
return {history};
|
2016-10-12 02:55:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async getExchanges(): Promise<IExchangeInfo[]> {
|
2016-10-13 02:23:24 +02:00
|
|
|
return this.q()
|
|
|
|
.iter<IExchangeInfo>("exchanges")
|
|
|
|
.flatMap((e) => [e])
|
|
|
|
.toArray();
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
2016-02-23 14:07:53 +01:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
async getReserves(exchangeBaseUrl: string): Promise<ReserveRecord[]> {
|
|
|
|
return this.q()
|
|
|
|
.iter<ReserveRecord>("reserves")
|
|
|
|
.filter((r: ReserveRecord) => r.exchange_base_url === exchangeBaseUrl)
|
|
|
|
.toArray();
|
2016-10-12 02:55:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async getCoins(exchangeBaseUrl: string): Promise<Coin[]> {
|
2016-10-13 02:23:24 +02:00
|
|
|
return this.q()
|
|
|
|
.iter<Coin>("coins")
|
|
|
|
.filter((c: Coin) => c.exchangeBaseUrl === exchangeBaseUrl)
|
|
|
|
.toArray();
|
2016-10-12 02:55:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async getPreCoins(exchangeBaseUrl: string): Promise<PreCoin[]> {
|
2016-10-13 02:23:24 +02:00
|
|
|
return this.q()
|
|
|
|
.iter<PreCoin>("precoins")
|
|
|
|
.filter((c: PreCoin) => c.exchangeBaseUrl === exchangeBaseUrl)
|
|
|
|
.toArray();
|
2016-10-12 02:55:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-28 23:41:34 +02:00
|
|
|
async hashContract(contract: any): Promise<string> {
|
|
|
|
return this.cryptoApi.hashString(canonicalJson(contract));
|
|
|
|
}
|
|
|
|
|
2016-05-24 00:36:20 +02:00
|
|
|
/**
|
|
|
|
* Check if there's an equivalent contract we've already purchased.
|
|
|
|
*/
|
2016-09-28 17:52:36 +02:00
|
|
|
async checkRepurchase(contract: Contract): Promise<CheckRepurchaseResult> {
|
2016-02-23 14:07:53 +01:00
|
|
|
if (!contract.repurchase_correlation_id) {
|
|
|
|
console.log("no repurchase: no correlation id");
|
2016-10-13 02:23:24 +02:00
|
|
|
return {isRepurchase: false};
|
2016-02-23 14:07:53 +01:00
|
|
|
}
|
2016-10-13 02:23:24 +02:00
|
|
|
let result: Transaction = await (
|
|
|
|
this.q()
|
|
|
|
.getIndexed("transactions",
|
|
|
|
"repurchase",
|
|
|
|
[
|
|
|
|
contract.merchant_pub,
|
|
|
|
contract.repurchase_correlation_id
|
|
|
|
]));
|
2016-09-28 17:52:36 +02:00
|
|
|
|
|
|
|
if (result) {
|
|
|
|
console.assert(result.contract.repurchase_correlation_id == contract.repurchase_correlation_id);
|
|
|
|
return {
|
|
|
|
isRepurchase: true,
|
|
|
|
existingContractHash: result.contractHash,
|
|
|
|
existingFulfillmentUrl: result.contract.fulfillment_url,
|
|
|
|
};
|
|
|
|
} else {
|
2016-10-13 02:23:24 +02:00
|
|
|
return {isRepurchase: false};
|
2016-09-28 17:52:36 +02:00
|
|
|
}
|
2016-02-23 14:07:53 +01:00
|
|
|
}
|
2016-10-10 04:07:34 +02:00
|
|
|
}
|