From a8aa3b0416afd44c4cf8b2bfe6383ccdea879ac8 Mon Sep 17 00:00:00 2001 From: Michael Ira Krufky Date: Tue, 14 Aug 2018 15:45:49 -0400 Subject: [PATCH] Add Pirl support bitcointalk ANN : https://bitcointalk.org/index.php?topic=2120193.0 homepage : https://pirl.io block explorer : https://explorer.pirl.io https://poseidon.pirl.io/explorer network statistics : http://stats.pirl.io slip0044 index : 164 chainId : 3125659152 --- firmware/ethereum.c | 1 + 1 file changed, 1 insertion(+) diff --git a/firmware/ethereum.c b/firmware/ethereum.c index 851d84e16..0ad1324c4 100644 --- a/firmware/ethereum.c +++ b/firmware/ethereum.c @@ -268,6 +268,7 @@ static void ethereumFormatAmount(const bignum256 *amnt, const TokenType *token, case 200625: suffix = " AKA"; break; // Akroma case 1313114: suffix = " ETHO"; break; // Ether-1 case 7762959: suffix = " MUSI"; break; // Musicoin + case 3125659152: suffix = " PIRL"; break; // Pirl default : suffix = " UNKN"; break; // unknown chain } }