caivega / ipfslib

Other
2 stars 1 forks source link

S3 - jt_sendTransaction&jt_signTransaction:IssueCoin时symbol为中文太短的问题 #90

Closed zyd82 closed 4 years ago

zyd82 commented 4 years ago

IssueCoin时,symbol如果是纯中文,最多只支持4个中文字符,如果为5个中文字符则返回如下。

{
    "id": 1,
    "jsonrpc": "2.0",
    "result": "the length of the symbol must be in the range [3,12]",
    "status": "error"
}

4个中文字符有可能会出现不够用的情况,因此建议改长一些,个人觉得改到16个中文字符应该就够了。

caivega commented 4 years ago

现在symbol顶多20个字节(其中有一部分还用不了。。。),这个是为了兼容老链,,,,,这个是symbol,不是name, 不是用来描述代币的,只是代币的缩写

zyd82 commented 4 years ago

好的,了解。