What is the maximum character length when sending a NXT message?

1

I'm looking to see whats the limit of characters a nxt message can contain.

Patoshi パトシ

Posted 2014-08-25T19:17:16.517

Reputation: 8 911

Answers

2

In V1.5 this has been increased to 42K but your message will be pruned after 14 days leaving only its hash. You can still store permanent messages 1000 bytes long but this is likely to be reduced in the future.

lyaffe

Posted 2014-08-25T19:17:16.517

Reputation: 1 480

2

Right now it's 1000 bytes. Text is converted into bytes by using UTF-8 encoding.

Don't hardcode this limit, use "maxArbitraryMessageLength" parameter returned by "getConstants" API request.

Come-from-Beyond

Posted 2014-08-25T19:17:16.517

Reputation: 621