| Transaction Data | {:origin #138,:sequence 1,:command (def deposit (deploy (quote (do (def payer nil) (def receiver nil) (def principal 0) (def currency "GBP") (def start-date 0) (def maturity-date 0) (def fixed-rate 0) (def status :created) (defn ^{:callable? true} initialise [p r amt cur sd md rate] (def payer p) (def receiver r) (def principal amt) (def currency cur) (def start-date sd) (def maturity-date md) (def fixed-rate rate) (def status :active) :ok) (defn ^{:callable? true} get-details [] {:payer payer,:currency currency,:start-date start-date,:fixed-rate fixed-rate,:receiver receiver,:principal principal,:maturity-date maturity-date,:status status})))))} | CVX representation of the transaction |