diff --git a/app/src/main/java/com/tangem/data/network/ServerApiPayId.java b/app/src/main/java/com/tangem/data/network/ServerApiPayId.java index a2f545b580..e0ebf5a849 100644 --- a/app/src/main/java/com/tangem/data/network/ServerApiPayId.java +++ b/app/src/main/java/com/tangem/data/network/ServerApiPayId.java @@ -23,7 +23,9 @@ public class ServerApiPayId { switch (blockchain) { case Ripple: return "application/xrpl-mainnet+json"; case Bitcoin: return "application/btc-mainnet+json"; - case Ethereum: return "application/eth-mainnet+json"; + case Ethereum: + case Token: + return "application/eth-mainnet+json"; default: throw new InvalidParameterException("PayID is not supported for " + blockchain.getOfficialName()); } }