2014-04-29 12:26:51 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the TREZOR project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Pavol Rusnak <stick@satoshilabs.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 __COINS_H__
|
|
|
|
#define __COINS_H__
|
|
|
|
|
2017-08-14 12:42:59 +00:00
|
|
|
#include "messages.pb.h"
|
2014-04-29 12:26:51 +00:00
|
|
|
#include "types.pb.h"
|
|
|
|
|
2017-08-13 19:11:23 +00:00
|
|
|
#if DEBUG_LINK
|
|
|
|
#define COINS_COUNT 10
|
|
|
|
#else
|
|
|
|
#define COINS_COUNT 8
|
|
|
|
#endif
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2017-08-14 12:42:59 +00:00
|
|
|
_Static_assert(pb_arraysize(Features, coins) >= COINS_COUNT, "Features.coins max_count not large enough");
|
|
|
|
|
2014-04-29 12:26:51 +00:00
|
|
|
extern const CoinType coins[COINS_COUNT];
|
|
|
|
|
|
|
|
const CoinType *coinByName(const char *name);
|
2016-10-09 19:38:51 +00:00
|
|
|
const CoinType *coinByAddressType(uint32_t address_type);
|
2016-10-25 15:02:02 +00:00
|
|
|
bool coinExtractAddressType(const CoinType *coin, const char *addr, uint32_t *address_type);
|
|
|
|
bool coinExtractAddressTypeRaw(const CoinType *coin, const uint8_t *addr_raw, uint32_t *address_type);
|
2014-04-29 12:26:51 +00:00
|
|
|
|
|
|
|
#endif
|