TransactionSEALED

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

Transaction ID

Timestamp

Dec 11, 2025, 03:35:08 AM UTC
2mo ago

Block Height

135,618,632

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 (6d19f1750cfde812) 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.20804077

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                    }