Add support for EOS Classic (EOSC)

EIP-155 is now properly working with EOS-Classic!! Tested personally on the Ledger Nano S

homepage : https://eos-classic.io
block explorer : https://explorer.eos-classic.io
network statistics : https://stats.eos-classic.io
slip0044 index : 2018
chainId : 20

Proof of EIP-155 in genesis block:
https://github.com/eosclassic/eosclassic/blob/master/params/config.go#L63

cc: @eosclassic
This commit is contained in:
Michael Ira Krufky
2018-08-26 00:10:49 -04:00
committed by GitHub
parent a6fc547fc9
commit 0a5359afa5
10 changed files with 18 additions and 3 deletions

View File

@@ -1561,6 +1561,9 @@ tokenDefinition_t* getKnownToken() {
case CHAIN_KIND_ATHEIOS:
numTokens = NUM_TOKENS_ATHEIOS;
break;
case CHAIN_KIND_EOSCLASSIC:
numTokens = NUM_TOKENS_EOSCLASSIC;
break;
}
for (i=0; i<numTokens; i++) {
switch(chainConfig->kind) {
@@ -1615,6 +1618,9 @@ tokenDefinition_t* getKnownToken() {
case CHAIN_KIND_ATHEIOS:
currentToken = PIC(&TOKENS_ATHEIOS[i]);
break;
case CHAIN_KIND_EOSCLASSIC:
currentToken = PIC(&TOKENS_EOSCLASSIC[i]);
break;
}
if (os_memcmp(currentToken->address, tmpContent.txContent.destination, 20) == 0) {
return currentToken;