Adding time and date to the transaction

+1 vote
Is there a way to add time and date to the transaction?

Is it possible to add additional transaction ID of our choice to the transaction details.?
asked Apr 21, 2017 by amitsh

1 Answer

+1 vote

Yes. you can achieve this by adding through custom fields

issue address name qty (units=1) ({"custom-field-1":"x","custom-field-2":"y"...})

answered Apr 21, 2017 by saravana
I want to add Time and Date at which transaction is done.
Date and time is stored against the transactions, pls see below

listAddressTransactions

    {   .....
    .....   
        "time" : 1492504465,
        "timereceived" : 1492504465
    }

The time and timereceived are in UTC format.. convert into your timezone and format you want, the equivalent date and time is 2017-04-18 02:04:25 PM

and..
custom field in "issue" command will store the custom information in assets.. You will have to use with transaction commands to store custom information in transactions.
...