TransactionSEALED

◆╳●■~▒▓!%#○█▪~▓$□%╳#○●#■█@╲%▫◆@$$&◆&▓▒*○◆#!▒#▒~◆!%╲*▒╲▫~░&%●▫%&*

Transaction ID

Timestamp

Dec 27, 2025, 12:56:36 PM UTC
2mo ago

Block Height

137,388,218

Computation

0

Proposerseq:0 key:0

Authorizers

1

Execution Error

[Error Code: 1118] error caused by: 1 error occurred: * [Error Code: 1118] payer e0e2e2e83e20ffbc has insufficient balance to attempt transaction execution (required balance: 0.00100000)

Transaction Summary

Contract Call

Called OracleInterface, OracleConfig

Script Arguments

0oracleAddrAddress
1priceUFix64
0.99973000

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                    }