mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
46 lines
1.7 KiB
C
46 lines
1.7 KiB
C
/*
|
|
* This file is part of the TREZOR project, https://trezor.io/
|
|
*
|
|
* Copyright (C) 2018 alepop <alepooop@gmail.com>
|
|
*
|
|
* This library is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __LISK_H__
|
|
#define __LISK_H__
|
|
|
|
#include <stdbool.h>
|
|
#include "bip32.h"
|
|
#include "messages-lisk.pb.h"
|
|
|
|
#define MAX_LISK_ADDRESS_SIZE 23
|
|
|
|
void lisk_sign_message(const HDNode *node, const LiskSignMessage *msg, LiskMessageSignature *resp);
|
|
bool lisk_verify_message(const LiskVerifyMessage *msg);
|
|
void lisk_sign_tx(const HDNode *node, LiskSignTx *msg, LiskSignedTx *resp);
|
|
|
|
// Helpers
|
|
void lisk_get_address_from_public_key(const uint8_t *public_key, char *address);
|
|
|
|
// Layout
|
|
void layoutLiskPublicKey(const uint8_t *pubkey);
|
|
void layoutLiskVerifyAddress(const char *address);
|
|
void layoutRequireConfirmTx(char *recipient_id, uint64_t amount);
|
|
void layoutRequireConfirmDelegateRegistration(LiskTransactionAsset *asset);
|
|
void layoutRequireConfirmCastVotes(LiskTransactionAsset *asset);
|
|
void layoutRequireConfirmMultisig(LiskTransactionAsset *asset);
|
|
void layoutRequireConfirmFee(uint64_t fee, uint64_t amount);
|
|
|
|
#endif
|