Skip to content

Commit 9e02f21

Browse files
feat: rebrand Coreum to TX
Ticket: CGARD-318
1 parent 2c2e523 commit 9e02f21

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

modules/sdk-coin-coreum/test/unit/coreum.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ describe('Coreum', function () {
4141
it('should return the right info', function () {
4242
coreum.getChain().should.equal('coreum');
4343
coreum.getFamily().should.equal('coreum');
44-
coreum.getFullName().should.equal('Coreum');
44+
coreum.getFullName().should.equal('TX');
4545
coreum.getBaseFactor().should.equal(1e6);
4646

4747
tcoreum.getChain().should.equal('tcoreum');
4848
tcoreum.getFamily().should.equal('coreum');
49-
tcoreum.getFullName().should.equal('Testnet Coreum');
49+
tcoreum.getFullName().should.equal('Testnet TX');
5050
tcoreum.getBaseFactor().should.equal(1e6);
5151
});
5252

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ export const allCoinsAndTokens = [
10971097
account(
10981098
'7df858d5-9da3-4071-ab06-399962ea87b7',
10991099
'coreum',
1100-
'Coreum',
1100+
'TX',
11011101
Networks.main.coreum,
11021102
6,
11031103
UnderlyingAsset.COREUM,
@@ -1114,7 +1114,7 @@ export const allCoinsAndTokens = [
11141114
account(
11151115
'df2f040b-89f3-4bb3-8da7-2445c7fdefca',
11161116
'tcoreum',
1117-
'Testnet Coreum',
1117+
'Testnet TX',
11181118
Networks.test.coreum,
11191119
6,
11201120
UnderlyingAsset.COREUM,

modules/statics/src/coins/ofcCoins.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export const ofcCoins = [
134134
UnderlyingAsset.ARBETH,
135135
CoinKind.CRYPTO
136136
),
137-
ofc('8b93e788-52fa-4fd6-b499-40f13fe194fc', 'ofccoreum', 'Coreum', 6, UnderlyingAsset.COREUM, CoinKind.CRYPTO),
137+
ofc('8b93e788-52fa-4fd6-b499-40f13fe194fc', 'ofccoreum', 'TX', 6, UnderlyingAsset.COREUM, CoinKind.CRYPTO),
138138
ofc('a88adc55-c1c8-4a4e-8436-df3868a50daa', 'ofccelo', 'Celo Gold', 18, UnderlyingAsset.CELO, CoinKind.CRYPTO),
139139
ofc('17cf28b5-f958-46c3-be88-53cc42bf0c76', 'ofcchiliz', 'Chiliz', 18, UnderlyingAsset.CHILIZ, CoinKind.CRYPTO),
140140
tofc(
@@ -745,7 +745,7 @@ export const ofcCoins = [
745745
UnderlyingAsset.ARBETH,
746746
CoinKind.CRYPTO
747747
),
748-
tofc('3091d79a-7737-4493-b3e6-6765998b9486', 'ofctcoreum', 'Test Coreum', 6, UnderlyingAsset.COREUM, CoinKind.CRYPTO),
748+
tofc('3091d79a-7737-4493-b3e6-6765998b9486', 'ofctcoreum', 'Testnet TX', 6, UnderlyingAsset.COREUM, CoinKind.CRYPTO),
749749
tofc(
750750
'90ac199d-4061-4c5f-9d48-4439c7ec2033',
751751
'ofctcelo',

modules/statics/src/networks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,13 +1096,13 @@ class TonTestnet extends Testnet implements AccountNetwork {
10961096
}
10971097

10981098
class Coreum extends Mainnet implements AccountNetwork {
1099-
name = 'Coreum';
1099+
name = 'TX';
11001100
family = CoinFamily.COREUM;
11011101
explorerUrl = 'https://www.mintscan.io/coreum/tx/';
11021102
}
11031103

11041104
class CoreumTestnet extends Testnet implements AccountNetwork {
1105-
name = 'CoreumTestnet';
1105+
name = 'Testnet TX';
11061106
family = CoinFamily.COREUM;
11071107
explorerUrl = 'https://explorer.testnet-1.coreum.dev/coreum/transactions/';
11081108
}

0 commit comments

Comments
 (0)