From 279caf6394a801aa271fe81f9c5852547a1ef2d8 Mon Sep 17 00:00:00 2001 From: Teck <41478467+niodamian@users.noreply.github.com> Date: Fri, 19 Sep 2025 14:59:34 +0300 Subject: [PATCH] Create ChainTerraClassic_T.swift --- .../ClassTestnet/ChainTerraClassic_T.swift | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Cosmostation/Chains/ClassTestnet/ChainTerraClassic_T.swift diff --git a/Cosmostation/Chains/ClassTestnet/ChainTerraClassic_T.swift b/Cosmostation/Chains/ClassTestnet/ChainTerraClassic_T.swift new file mode 100644 index 000000000..59fffdf09 --- /dev/null +++ b/Cosmostation/Chains/ClassTestnet/ChainTerraClassic_T.swift @@ -0,0 +1,30 @@ +// +// ChainTerra.swift +// Cosmostation +// +// Created by yongjoo jung on 2023/10/04. +// Copyright © 2023 wannabit. All rights reserved. +// + +import Foundation + +class ChainTerraClassic: BaseChain { + + override init() { + super.init() + + name = "Terra Classic Testnet" + tag = "terraclassic330_T" + chainImg = "chainTerraClassic_T" + apiName = "terra-classic-testnet" + accountKeyType = AccountKeyType(.COSMOS_Secp256k1, "m/44'/330'/0'/0/X") + + + cosmosEndPointType = .UseLCD + stakeDenom = "uluna" + bechAccountPrefix = "terra" + validatorPrefix = "terravaloper" + grpcHost = "rebel-rpc.luncgoblins.com:443" + lcdUrl = "https://rebel-lcd.luncgoblins.com/" + } +}