Add support for High Performance Blockchain
homepage: https://hpb.io block explorer: https://hpbscan.org network statistics : https://hpbscan.org git: https://github.com/hpb-project slip0044 index : 269 chain ID: 269
This commit is contained in:
9
Makefile
9
Makefile
@@ -121,10 +121,13 @@ else ifeq ($(CHAIN),reosc)
|
|||||||
APP_LOAD_PARAMS += --path "44'/2894'"
|
APP_LOAD_PARAMS += --path "44'/2894'"
|
||||||
DEFINES += CHAINID_UPCASE=\"REOSC\" CHAINID_COINNAME=\"REOSC\" CHAIN_KIND=CHAIN_KIND_REOSC CHAIN_ID=2894
|
DEFINES += CHAINID_UPCASE=\"REOSC\" CHAINID_COINNAME=\"REOSC\" CHAIN_KIND=CHAIN_KIND_REOSC CHAIN_ID=2894
|
||||||
APPNAME = "REOSC"
|
APPNAME = "REOSC"
|
||||||
|
else ifeq ($(CHAIN),hpb)
|
||||||
|
APP_LOAD_PARAMS += --path "44'/269'"
|
||||||
|
DEFINES += CHAINID_UPCASE=\"HPB\" CHAINID_COINNAME=\"HPB\" CHAIN_KIND=CHAIN_KIND_HPB CHAIN_ID=269
|
||||||
|
APPNAME = "HPB"
|
||||||
else
|
else
|
||||||
ifeq ($(filter clean,$(MAKECMDGOALS)),)
|
ifeq ($(filter clean,$(MAKECMDGOALS)),)
|
||||||
$(error Unsupported CHAIN - use ethereum, ethereum_classic, expanse, poa, rsk, rsk_testnet, ubiq, wanchain, kusd, musicoin, pirl, akroma, atheios, callisto, ethersocial, ellaism, ether1, ethergem, gochain, mix, reosc)
|
$(error Unsupported CHAIN - use ethereum, ethereum_classic, expanse, poa, rsk, rsk_testnet, ubiq, wanchain, kusd, musicoin, pirl, akroma, atheios, callisto, ethersocial, ellaism, ether1, ethergem, gochain, mix, reosc, hpb)
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
APP_LOAD_PARAMS += $(APP_LOAD_FLAGS) --path "44'/1'"
|
APP_LOAD_PARAMS += $(APP_LOAD_FLAGS) --path "44'/1'"
|
||||||
@@ -215,4 +218,4 @@ include $(BOLOS_SDK)/Makefile.rules
|
|||||||
dep/%.d: %.c Makefile
|
dep/%.d: %.c Makefile
|
||||||
|
|
||||||
listvariants:
|
listvariants:
|
||||||
@echo VARIANTS CHAIN ethereum ethereum_classic expanse poa rsk rsk_testnet ubiq wanchain kusd pirl akroma atheios callisto ethersocial ether1 gochain musicoin ethergem mix ellaism reosc
|
@echo VARIANTS CHAIN ethereum ethereum_classic expanse poa rsk rsk_testnet ubiq wanchain kusd pirl akroma atheios callisto ethersocial ether1 gochain musicoin ethergem mix ellaism reosc hpb
|
||||||
|
|||||||
BIN
blue_app_hpb.gif
Normal file
BIN
blue_app_hpb.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 579 B |
BIN
glyphs/blue_badge_hpb.gif
Normal file
BIN
glyphs/blue_badge_hpb.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 434 B |
BIN
glyphs/nanos_badge_hpb.gif
Normal file
BIN
glyphs/nanos_badge_hpb.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 84 B |
BIN
nanos_app_hpb.gif
Normal file
BIN
nanos_app_hpb.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 79 B |
@@ -24,7 +24,8 @@ typedef enum chain_kind_e {
|
|||||||
CHAIN_KIND_ATHEIOS,
|
CHAIN_KIND_ATHEIOS,
|
||||||
CHAIN_KIND_GOCHAIN,
|
CHAIN_KIND_GOCHAIN,
|
||||||
CHAIN_KIND_MIX,
|
CHAIN_KIND_MIX,
|
||||||
CHAIN_KIND_REOSC
|
CHAIN_KIND_REOSC,
|
||||||
|
CHAIN_KIND_HPB
|
||||||
} chain_kind_t;
|
} chain_kind_t;
|
||||||
|
|
||||||
typedef struct chain_config_s {
|
typedef struct chain_config_s {
|
||||||
|
|||||||
@@ -1520,6 +1520,9 @@ tokenDefinition_t* getKnownToken() {
|
|||||||
case CHAIN_KIND_REOSC:
|
case CHAIN_KIND_REOSC:
|
||||||
numTokens = NUM_TOKENS_REOSC;
|
numTokens = NUM_TOKENS_REOSC;
|
||||||
break;
|
break;
|
||||||
|
case CHAIN_KIND_HPB:
|
||||||
|
numTokens = NUM_TOKENS_HPB;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
for (i=0; i<numTokens; i++) {
|
for (i=0; i<numTokens; i++) {
|
||||||
switch(chainConfig->kind) {
|
switch(chainConfig->kind) {
|
||||||
@@ -1583,7 +1586,10 @@ tokenDefinition_t* getKnownToken() {
|
|||||||
case CHAIN_KIND_REOSC:
|
case CHAIN_KIND_REOSC:
|
||||||
currentToken = (tokenDefinition_t *)PIC(&TOKENS_REOSC[i]);
|
currentToken = (tokenDefinition_t *)PIC(&TOKENS_REOSC[i]);
|
||||||
break;
|
break;
|
||||||
}
|
case CHAIN_KIND_HPB:
|
||||||
|
currentToken = (tokenDefinition_t *)PIC(&TOKENS_HPB[i]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
if (os_memcmp(currentToken->address, tmpContent.txContent.destination, 20) == 0) {
|
if (os_memcmp(currentToken->address, tmpContent.txContent.destination, 20) == 0) {
|
||||||
return currentToken;
|
return currentToken;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1173,3 +1173,5 @@ const tokenDefinition_t const TOKENS_GOCHAIN[NUM_TOKENS_GOCHAIN] = {};
|
|||||||
const tokenDefinition_t const TOKENS_MIX[NUM_TOKENS_MIX] = {};
|
const tokenDefinition_t const TOKENS_MIX[NUM_TOKENS_MIX] = {};
|
||||||
|
|
||||||
const tokenDefinition_t const TOKENS_REOSC[NUM_TOKENS_REOSC] = {};
|
const tokenDefinition_t const TOKENS_REOSC[NUM_TOKENS_REOSC] = {};
|
||||||
|
|
||||||
|
const tokenDefinition_t const TOKENS_HPB[NUM_TOKENS_HPB] = {};
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ typedef struct tokenDefinition_t {
|
|||||||
#define NUM_TOKENS_GOCHAIN 0
|
#define NUM_TOKENS_GOCHAIN 0
|
||||||
#define NUM_TOKENS_MIX 0
|
#define NUM_TOKENS_MIX 0
|
||||||
#define NUM_TOKENS_REOSC 0
|
#define NUM_TOKENS_REOSC 0
|
||||||
|
#define NUM_TOKENS_HPB 0
|
||||||
|
|
||||||
extern tokenDefinition_t const TOKENS_AKROMA[NUM_TOKENS_AKROMA];
|
extern tokenDefinition_t const TOKENS_AKROMA[NUM_TOKENS_AKROMA];
|
||||||
extern tokenDefinition_t const TOKENS_ELLAISM[NUM_TOKENS_ELLAISM];
|
extern tokenDefinition_t const TOKENS_ELLAISM[NUM_TOKENS_ELLAISM];
|
||||||
@@ -64,3 +65,4 @@ extern tokenDefinition_t const TOKENS_ATHEIOS[NUM_TOKENS_ATHEIOS];
|
|||||||
extern tokenDefinition_t const TOKENS_GOCHAIN[NUM_TOKENS_GOCHAIN];
|
extern tokenDefinition_t const TOKENS_GOCHAIN[NUM_TOKENS_GOCHAIN];
|
||||||
extern tokenDefinition_t const TOKENS_MIX[NUM_TOKENS_MIX];
|
extern tokenDefinition_t const TOKENS_MIX[NUM_TOKENS_MIX];
|
||||||
extern tokenDefinition_t const TOKENS_REOSC[NUM_TOKENS_REOSC];
|
extern tokenDefinition_t const TOKENS_REOSC[NUM_TOKENS_REOSC];
|
||||||
|
extern tokenDefinition_t const TOKENS_HPB[NUM_TOKENS_HPB];
|
||||||
|
|||||||
Reference in New Issue
Block a user