@@ -132,13 +132,13 @@ export const RuntimeEventDetails: FC<{
132132 const { isMobile } = useScreenSize ( )
133133 const { t } = useTranslation ( )
134134 const eventTypeNames : Record < RuntimeEventType , string > = {
135- [ RuntimeEventType . accountstransfer ] : t ( 'transactionEvent .accountstransfer' ) ,
136- [ RuntimeEventType . evmlog ] : t ( 'transactionEvent .evmLog' ) ,
137- [ RuntimeEventType . coregas_used ] : t ( 'transactionEvent .gasUsed' ) ,
138- [ RuntimeEventType . consensus_accountswithdraw ] : t ( 'transactionEvent .consensusWithdrawal' ) ,
139- [ RuntimeEventType . consensus_accountsdeposit ] : t ( 'transactionEvent .consensusDeposit' ) ,
140- [ RuntimeEventType . accountsmint ] : t ( 'transactionEvent .accountsmint' ) ,
141- [ RuntimeEventType . accountsburn ] : t ( 'transactionEvent .accountsburn' ) ,
135+ [ RuntimeEventType . accountstransfer ] : t ( 'runtimeEvent .accountstransfer' ) ,
136+ [ RuntimeEventType . evmlog ] : t ( 'runtimeEvent .evmLog' ) ,
137+ [ RuntimeEventType . coregas_used ] : t ( 'runtimeEvent .gasUsed' ) ,
138+ [ RuntimeEventType . consensus_accountswithdraw ] : t ( 'runtimeEvent .consensusWithdrawal' ) ,
139+ [ RuntimeEventType . consensus_accountsdeposit ] : t ( 'runtimeEvent .consensusDeposit' ) ,
140+ [ RuntimeEventType . accountsmint ] : t ( 'runtimeEvent .accountsmint' ) ,
141+ [ RuntimeEventType . accountsburn ] : t ( 'runtimeEvent .accountsburn' ) ,
142142 }
143143 const eventName = eventTypeNames [ event . type ]
144144 switch ( event . type ) {
@@ -206,7 +206,7 @@ export const RuntimeEventDetails: FC<{
206206 < div >
207207 < EventTypeIcon eventType = { event . type } eventName = { eventName } />
208208 < StyledDescriptionList titleWidth = { isMobile ? '100px' : '200px' } >
209- < dt > { t ( 'transactionEvent .fields.owner' ) } </ dt >
209+ < dt > { t ( 'runtimeEvent .fields.owner' ) } </ dt >
210210 < dd >
211211 < AccountLink
212212 address = { event . body . owner }
@@ -217,7 +217,7 @@ export const RuntimeEventDetails: FC<{
217217 < CopyToClipboard value = { event . body . owner } />
218218 ) }
219219 </ dd >
220- < dt > { t ( 'transactionEvent .fields.amount' ) } </ dt >
220+ < dt > { t ( 'runtimeEvent .fields.amount' ) } </ dt >
221221 < dd >
222222 { t ( 'common.valueInToken' , {
223223 ...getPreciseNumberFormat ( event . body . amount . Amount ) ,
@@ -254,7 +254,7 @@ export const RuntimeEventDetails: FC<{
254254 />
255255 { addressSwitchOption === AddressSwitchOption . Oasis && < CopyToClipboard value = { event . body . to } /> }
256256 </ dd >
257- < dt > { t ( 'transactionEvent .fields.amount' ) } </ dt >
257+ < dt > { t ( 'runtimeEvent .fields.amount' ) } </ dt >
258258 < dd >
259259 { t ( 'common.valueInToken' , {
260260 ...getPreciseNumberFormat ( event . body . amount . Amount ) ,
0 commit comments