We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Было бы здорово, если бы можно было указывать значение бинарного поля в base64 формате
{ "version" : 1, "sender": "3FjTpAg1VbmxSH39YWnfFukAUhxMqmKqTEZ", "data": [ {"key": "blob", "type": "binary", "value": "base64:BzWHaQU"} ], "fee": 100000 }
(код из документации)
The text was updated successfully, but these errors were encountered:
For now this library automatically derives types. E.x.
{key:"blob", "value": "base64:BzWHaQU"}
Derived type would be "string". You can convert your base64 string to array before using library "data" function
Sorry, something went wrong.
Можно указывать в бинарном просто value должно быть Uint8Array.from([1,2,3])
Начиная с версии 2.0 можно указывать:
{"key": "blob", "type": "binary", "value": "base64:BzWHaQU"}
тип не будет автоматически выводиться в таком случае
No branches or pull requests
Было бы здорово, если бы можно было указывать значение бинарного поля в base64 формате
(код из документации)
The text was updated successfully, but these errors were encountered: