cosmos-sdk/tx/textual/internal/testdata/duration.json
Jim Larson 5f01f6f5e5
feat: duration renderer for SIGN_MODE_TEXTUAL (#13312)
* feat: value renderer for durations

* feat: dispatch for duration ValueRenderer

* docs: update duration rendering spec

* feat: error on malformed proto, review feedback, more tests

* fix: silence spurious int overflow warnings

* fix: supress spurious gosec warning on safe operation
2022-10-07 02:26:47 +02:00

20 lines
1.2 KiB
JSON

[
{"proto": {"seconds": 0, "nanos": 0}, "text": "0 seconds"},
{"proto": {"seconds": 1, "nanos": 0}, "text": "1 second"},
{"proto": {"seconds": 2, "nanos": 0}, "text": "2 seconds"},
{"proto": {"seconds": -1, "nanos": 0}, "text": "-1 second"},
{"proto": {"seconds": 0, "nanos": 500000000}, "text": "0.5 seconds"},
{"proto": {"seconds": 0, "nanos": -500000000}, "text": "-0.5 seconds"},
{"proto": {"seconds": -1, "nanos": -500000000}, "text": "-1.5 seconds"},
{"proto": {"seconds": 60, "nanos": 0}, "text": "1 minute"},
{"proto": {"seconds": 3600, "nanos": 0}, "text": "1 hour"},
{"proto": {"seconds": 86400, "nanos": 0}, "text": "1 day"},
{"proto": {"seconds": 604800, "nanos": 0}, "text": "7 days"},
{"proto": {"seconds": 1483530, "nanos": 0}, "text": "17 days, 4 hours, 5 minutes, 30 seconds"},
{"proto": {"seconds": 1468800, "nanos": 100000000}, "text": "17 days, 0 hours, 0 minutes, 0.1 seconds"},
{"proto": {"seconds": 1468860, "nanos": 100000000}, "text": "17 days, 0 hours, 1 minute, 0.1 seconds"},
{"proto": {"seconds": 1, "nanos": -1}, "error": true},
{"proto": {"seconds": -1, "nanos": 1}, "error": true},
{"proto": {"seconds": 1, "nanos": 2000000000}, "error": true}
]