aboutsummaryrefslogtreecommitdiff
path: root/src/types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-15 15:07:17 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-15 15:07:17 +0100
commitded02bf11f31c7b9d9cf8b2c863485a491b4c0ae (patch)
treef6106f1aba8fabecd42e06308b3d5c69243398db /src/types.ts
parenta92b7dc0df64ce647ba55315c386e1bf447e3528 (diff)
downloadwallet-core-ded02bf11f31c7b9d9cf8b2c863485a491b4c0ae.tar.xz
renaming / dce
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/types.ts b/src/types.ts
index f6458955b..1a9d45871 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -132,7 +132,7 @@ export class Denomination {
}
-export interface IExchangeInfo {
+export interface ExchangeRecord {
baseUrl: string;
masterPublicKey: string;
@@ -159,7 +159,7 @@ export interface WireInfo {
}
export interface ReserveCreationInfo {
- exchangeInfo: IExchangeInfo;
+ exchangeInfo: ExchangeRecord;
wireInfo: WireInfo;
selectedDenoms: Denomination[];
withdrawFee: AmountJson;
@@ -170,7 +170,7 @@ export interface ReserveCreationInfo {
/**
* A coin that isn't yet signed by an exchange.
*/
-export interface PreCoin {
+export interface PreCoinRecord {
coinPub: string;
coinPriv: string;
reservePub: string;
@@ -182,7 +182,7 @@ export interface PreCoin {
coinValue: AmountJson;
}
-export interface RefreshPreCoin {
+export interface RefreshPreCoinRecord {
publicKey: string;
privateKey: string;
coinEv: string;
@@ -193,7 +193,7 @@ export interface RefreshPreCoin {
/**
* Ongoing refresh
*/
-export interface RefreshSession {
+export interface RefreshSessionRecord {
/**
* Public key that's being melted in this session.
*/
@@ -222,7 +222,7 @@ export interface RefreshSession {
newDenoms: string[];
- preCoinsForGammas: RefreshPreCoin[][];
+ preCoinsForGammas: RefreshPreCoinRecord[][];
/**
@@ -257,10 +257,10 @@ export interface CoinPaySig {
}
/**
- * Coin as stored in the "coins" data store
+ * CoinRecord as stored in the "coins" data store
* of the wallet database.
*/
-export interface Coin {
+export interface CoinRecord {
/**
* Public key of the coin.
*/
@@ -436,7 +436,7 @@ export class Contract {
}
-export type PayCoinInfo = Array<{ updatedCoin: Coin, sig: CoinPaySig }>;
+export type PayCoinInfo = Array<{ updatedCoin: CoinRecord, sig: CoinPaySig }>;
export namespace Amounts {