Accounts
Creating accounts that will interact with the blockchain.
Create
ret_code_t
vertices_account_new_from_b32(
char *public_b32,
account_info_t **account);Parameters
typedef struct
{
char public_b32[PUBLIC_B32_STR_MAX_LENGTH]; //!< b32 public address, with `\0` termination character
unsigned char public_key[ADDRESS_LENGTH]; //!< 32-bytes public key
int32_t amount; //!< amount of tokens on account
} account_info_t;Return codes
Update
Parameters
Return codes
Delete
Parameters
Return codes
Last updated
Was this helpful?