Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- changed: Manage tokens scene saves changes on explicit save instead of live toggling
- changed: Unify split wallet scene titles and add chain-specific descriptions for EVM and UTXO splits
- changed: ramps: Infinite buy support enabled
- changed: Update Coreum display names to TX branding
- fixed: Missing 2-factor approve / deny scene on login
- fixed: Security check notification not reappearing after dismissal
- fixed: Fix incorrect Moonpay buy tracking values caused by deeplink handler overwrite
Expand Down
2 changes: 1 addition & 1 deletion src/locales/en_US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ const strings = {
string_first_stellar_wallet_name: 'My Stellar',
string_first_tezos_wallet_name: 'My Tezos',
string_first_axelar_wallet_name: 'My Axelar',
string_first_coreum_wallet_name: 'My Coreum',
string_first_coreum_wallet_name: 'My TX',
string_first_cosmoshub_wallet_name: 'My Cosmos Hub',
string_first_osmosis_wallet_name: 'My Osmosis',
string_first_sui_wallet_name: 'My Sui',
Expand Down
2 changes: 1 addition & 1 deletion src/locales/strings/enUS.json
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@
"string_first_stellar_wallet_name": "My Stellar",
"string_first_tezos_wallet_name": "My Tezos",
"string_first_axelar_wallet_name": "My Axelar",
"string_first_coreum_wallet_name": "My Coreum",
"string_first_coreum_wallet_name": "My TX",
"string_first_cosmoshub_wallet_name": "My Cosmos Hub",
"string_first_osmosis_wallet_name": "My Osmosis",
"string_first_sui_wallet_name": "My Sui",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { CoreumNativeStakeKitAdapterConfig } from '../policyAdapters/Coreum
import type { StakePluginInfo, StakePolicyConfig } from '../types'

const stakeProviderInfo: StakeProviderInfo = {
displayName: 'Coreum Native Staking',
displayName: 'TX Native Staking',
pluginId: 'coreum',
stakeProviderId: 'coreum_native'
}
Expand Down Expand Up @@ -33,7 +33,7 @@ const coreumPolicyConfig: Array<
stakePolicyId: `coreum_native_${adapterConfig.preferredValidatorAddress}`,
stakeProviderInfo: {
...stakeProviderInfo,
displayName: `Coreum Native Staking - ${adapterConfig.preferredValidatorName}`
displayName: `TX Native Staking - ${adapterConfig.preferredValidatorName}`
},
parentPluginId: 'coreum',
parentCurrencyCode: 'COREUM',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const makeStakeKitAdapter = (
)

// Metadata constants:
const metadataName = 'Coreum Native Staking'
const metadataName = 'TX Native Staking'
const stakeAsset = policyConfig.stakeAssets[0]
const metadataPoolAssetName = stakeAsset.currencyCode

Expand Down
Loading