diff options
Diffstat (limited to 'core/api-exchange.rst')
-rw-r--r-- | core/api-exchange.rst | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/core/api-exchange.rst b/core/api-exchange.rst index 9b78d39..0043071 100644 --- a/core/api-exchange.rst +++ b/core/api-exchange.rst @@ -378,9 +378,6 @@ Management operations authorized by master key interface FutureKeysResponse { - // Name in the configuration file that defines this denomination. - section_name: string; - // Future denominations to be offered by this exchange // (only those lacking a master signature). future_denoms: FutureDenom[]; @@ -403,16 +400,23 @@ Management operations authorized by master key .. ts:def:: FutureDenom interface FutureDenom { + // Name in the configuration file that defines this denomination. + section_name: string; + // How much are coins of this denomination worth? value: Amount; // When does the denomination key become valid? stamp_start: Timestamp; - // When is it no longer possible to deposit coins + // When is it no longer possible to withdraw coins // of this denomination? stamp_expire_withdraw: Timestamp; + // When is it no longer possible to deposit coins + // of this denomination? + stamp_expire_deposit: Timestamp; + // Timestamp indicating by when legal disputes relating to these coins must // be settled, as the exchange will afterwards destroy its evidence relating to // transactions involving this coin. |