TransactionSEALED

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

Transaction ID

Timestamp

Jan 14, 2026, 09:08:08 PM UTC
1mo ago

Block Height

138,884,078

Computation

0

Execution Fee

0.00334 FLOW

Transaction Summary

Contract Call

Called BandOracle

Contracts

Script Arguments

0symbolsRates{String
{
  "AUD": "668553549",
  "BRL": "185402462",
  "CAD": "720285953",
  "CHF": "1249650880",
  "CNY": "143391550",
  "CZK": "48004186",
  "EUR": "1164544963",
  "GBP": "1343676055",
  "HKD": "128246808",
  "INR": "11079675",
  "JPY": "6305645",
  "KRW": "683625",
  "MYR": "247036000",
  "NZD": "574783337",
  "PHP": "16805033",
  "PLN": "276590666",
  "RUB": "12739423",
  "SEK": "108708531",
  "SGD": "776513570",
  "THB": "31820011",
  "TRY": "23161980",
  "TWD": "31700745"
}
1resolveTimeUInt64
1768424882
2requestIDUInt64
25691451

Cadence Script

1import BandOracle from 0x6801a6222ebf784a
2
3    transaction (symbolsRates: {String: UInt64}, resolveTime: UInt64, requestID: UInt64) {
4        let relayRef: &BandOracle.Relay
5
6        prepare (acct: auth(BorrowValue)&Account){
7            // Get a reference to the relayer resource from storage
8            self.relayRef = acct.storage.borrow<&BandOracle.Relay>(from: BandOracle.RelayStoragePath) ??
9                panic("Cannot borrow reference to relay resource")
10        }
11
12        execute {
13            // Call the relayRates function exposed by the relayer resource
14            self.relayRef.relayRates(symbolsRates: symbolsRates, resolveTime: resolveTime, requestID: requestID)
15        }
16    }