@@ -82,6 +82,10 @@ else ifeq ($(CHAIN),kusd)
|
|||||||
APP_LOAD_PARAMS += --path "44'/91927009'"
|
APP_LOAD_PARAMS += --path "44'/91927009'"
|
||||||
DEFINES += CHAINID_UPCASE=\"KUSD\" CHAINID_COINNAME=\"KUSD\" CHAIN_KIND=CHAIN_KIND_KUSD CHAIN_ID=2
|
DEFINES += CHAINID_UPCASE=\"KUSD\" CHAINID_COINNAME=\"KUSD\" CHAIN_KIND=CHAIN_KIND_KUSD CHAIN_ID=2
|
||||||
APPNAME = "KUSD"
|
APPNAME = "KUSD"
|
||||||
|
else ifeq ($(CHAIN),musicoin)
|
||||||
|
APP_LOAD_PARAMS += --path "44'/184'"
|
||||||
|
DEFINES += CHAINID_UPCASE=\"MUSICOIN\" CHAINID_COINNAME=\"MUSIC\" CHAIN_KIND=CHAIN_KIND_MUSICOIN CHAIN_ID=7762959
|
||||||
|
APPNAME = "Musicoin"
|
||||||
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)
|
$(error Unsupported CHAIN - use ethereum, ethereum_classic, expanse, poa, rsk, rsk_testnet, ubiq, wanchain, kusd)
|
||||||
|
|||||||
BIN
blue_app_musicoin.gif
Normal file
BIN
blue_app_musicoin.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
BIN
glyphs/blue_badge_musicoin.gif
Normal file
BIN
glyphs/blue_badge_musicoin.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
BIN
glyphs/nanos_badge_musicoin.gif
Normal file
BIN
glyphs/nanos_badge_musicoin.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 607 B |
BIN
nanos_app_musicoin.gif
Normal file
BIN
nanos_app_musicoin.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 604 B |
@@ -14,7 +14,8 @@ typedef enum chain_kind_e {
|
|||||||
CHAIN_KIND_WANCHAIN,
|
CHAIN_KIND_WANCHAIN,
|
||||||
CHAIN_KIND_KUSD,
|
CHAIN_KIND_KUSD,
|
||||||
CHAIN_KIND_PIRL,
|
CHAIN_KIND_PIRL,
|
||||||
CHAIN_KIND_AKROMA
|
CHAIN_KIND_AKROMA,
|
||||||
|
CHAIN_KIND_MUSICOIN
|
||||||
} chain_kind_t;
|
} chain_kind_t;
|
||||||
|
|
||||||
typedef struct chain_config_s {
|
typedef struct chain_config_s {
|
||||||
|
|||||||
@@ -1290,6 +1290,9 @@ void handleSign(uint8_t p1, uint8_t p2, uint8_t *workBuffer, uint16_t dataLength
|
|||||||
case CHAIN_KIND_KUSD:
|
case CHAIN_KIND_KUSD:
|
||||||
numTokens = NUM_TOKENS_KUSD;
|
numTokens = NUM_TOKENS_KUSD;
|
||||||
break;
|
break;
|
||||||
|
case CHAIN_KIND_MUSICOIN:
|
||||||
|
numTokens = NUM_TOKENS_MUSICOIN;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
for (i=0; i<numTokens; i++) {
|
for (i=0; i<numTokens; i++) {
|
||||||
tokenDefinition_t *currentToken = NULL;
|
tokenDefinition_t *currentToken = NULL;
|
||||||
@@ -1324,6 +1327,9 @@ void handleSign(uint8_t p1, uint8_t p2, uint8_t *workBuffer, uint16_t dataLength
|
|||||||
case CHAIN_KIND_KUSD:
|
case CHAIN_KIND_KUSD:
|
||||||
currentToken = PIC(&TOKENS_KUSD[i]);
|
currentToken = PIC(&TOKENS_KUSD[i]);
|
||||||
break;
|
break;
|
||||||
|
case CHAIN_KIND_MUSICOIN:
|
||||||
|
currentToken = PIC(&TOKENS_MUSICOIN[i]);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
if (os_memcmp(currentToken->address, tmpContent.txContent.destination, 20) == 0) {
|
if (os_memcmp(currentToken->address, tmpContent.txContent.destination, 20) == 0) {
|
||||||
dataPresent = false;
|
dataPresent = false;
|
||||||
|
|||||||
@@ -721,3 +721,5 @@ const tokenDefinition_t const TOKENS_EXPANSE[NUM_TOKENS_EXPANSE] = {};
|
|||||||
const tokenDefinition_t const TOKENS_WANCHAIN[NUM_TOKENS_WANCHAIN] = {};
|
const tokenDefinition_t const TOKENS_WANCHAIN[NUM_TOKENS_WANCHAIN] = {};
|
||||||
|
|
||||||
const tokenDefinition_t const TOKENS_KUSD[NUM_TOKENS_KUSD] = {};
|
const tokenDefinition_t const TOKENS_KUSD[NUM_TOKENS_KUSD] = {};
|
||||||
|
|
||||||
|
const tokenDefinition_t const TOKENS_MUSICOIN[NUM_TOKENS_MUSICOIN] = {};
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ typedef struct tokenDefinition_t {
|
|||||||
#define NUM_TOKENS_EXPANSE 0
|
#define NUM_TOKENS_EXPANSE 0
|
||||||
#define NUM_TOKENS_WANCHAIN 0
|
#define NUM_TOKENS_WANCHAIN 0
|
||||||
#define NUM_TOKENS_KUSD 0
|
#define NUM_TOKENS_KUSD 0
|
||||||
|
#define NUM_TOKENS_MUSICOIN 0
|
||||||
|
|
||||||
extern tokenDefinition_t const TOKENS_AKROMA[NUM_TOKENS_AKROMA];
|
extern tokenDefinition_t const TOKENS_AKROMA[NUM_TOKENS_AKROMA];
|
||||||
extern tokenDefinition_t const TOKENS_ETHEREUM[NUM_TOKENS_ETHEREUM];
|
extern tokenDefinition_t const TOKENS_ETHEREUM[NUM_TOKENS_ETHEREUM];
|
||||||
@@ -44,3 +45,4 @@ extern tokenDefinition_t const TOKENS_UBIQ[NUM_TOKENS_UBIQ];
|
|||||||
extern tokenDefinition_t const TOKENS_EXPANSE[NUM_TOKENS_EXPANSE];
|
extern tokenDefinition_t const TOKENS_EXPANSE[NUM_TOKENS_EXPANSE];
|
||||||
extern tokenDefinition_t const TOKENS_WANCHAIN[NUM_TOKENS_WANCHAIN];
|
extern tokenDefinition_t const TOKENS_WANCHAIN[NUM_TOKENS_WANCHAIN];
|
||||||
extern tokenDefinition_t const TOKENS_KUSD[NUM_TOKENS_KUSD];
|
extern tokenDefinition_t const TOKENS_KUSD[NUM_TOKENS_KUSD];
|
||||||
|
extern tokenDefinition_t const TOKENS_MUSICOIN[NUM_TOKENS_MUSICOIN];
|
||||||
|
|||||||
Reference in New Issue
Block a user