TransactionSEALED

!▓^?^$◇○▓○▒^#╱○░*▫█▫!▓▓█□#▓▓?▒◇#◇?%╲□*╱█~█▪~╱╲■&!◆●!■●%*░▪□!█▫▫▪

Transaction ID

Timestamp

Jan 15, 2026, 02:22:44 AM UTC
1mo ago

Block Height

138,907,500

Computation

0

Execution Fee

0.00058 FLOW

Execution Error

Error Code: 1103

error caused by: 1 error occurred:

Raw Error

[Error Code: 1103] error caused by: 1 error occurred: * storage limit check failed: [Error Code: 1103] The account with address (e412bdf7e1f79780) uses 5247 bytes of storage which is over its capacity (0 bytes). Capacity can be increased by adding FLOW tokens to the account.

Transaction Summary

Contract Call

Called OracleInterface, OracleConfig

Script Arguments

0oracleAddrAddress
1priceUFix64
0.00010000

Cadence Script

1import OracleInterface from 0xcec15c814971c1dc
2import OracleConfig from 0xcec15c814971c1dc
3transaction(oracleAddr: Address, price: UFix64) { 
4                        prepare(feederAccount: auth(Storage, Capabilities) &Account) { 
5                            let oraclePublicInterface_FeederRef = getAccount(oracleAddr).capabilities.borrow<&{OracleInterface.OraclePublicInterface_Feeder}>(OracleConfig.OraclePublicInterface_FeederPath) 
6                                            ?? panic("Lost oracle public capability at ".concat(oracleAddr.toString())) 
7                            let pricePanelRef = feederAccount.storage.borrow<auth(OracleInterface.FeederAuth) &{OracleInterface.PriceFeeder}>(from: oraclePublicInterface_FeederRef.getPriceFeederStoragePath()) ?? panic("Lost feeder resource.") 
8                            pricePanelRef.publishPrice(price: price) 
9                        }
10                    }