TransactionSEALED

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

Transaction ID

Timestamp

Mar 20, 2026, 11:20:31 AM UTC
3d ago

Block Height

145,791,660

Computation

0

Execution Fee

0.00106 FLOW

Proposerseq:7892 key:1313

Authorizers

1

Transaction Summary

UpdatingContract Call

Called FastBreakV1

Contracts

Script Arguments

Copy:

Cadence Script

1import FastBreakV1 from 0x0b2a3299cc857e29
2
3transaction() {
4
5    let oracleRef: auth(FastBreakV1.Create, FastBreakV1.Update) &FastBreakV1.FastBreakDaemon
6
7    let fastBreakGameID: String
8    let points: UInt64
9    let win: Bool
10	let accountAddress: Address
11	let playerId: UInt64
12
13    prepare(acct: auth(Storage) &Account) {
14        self.fastBreakGameID = "36eaef6a-f8e1-4930-9564-7c615e7a9ebe"
15        self.points = 55
16        self.win = true
17		self.accountAddress = 0x5468328df2704c9b
18
19        let cap = acct.storage.copy<Capability<auth(FastBreakV1.Create, FastBreakV1.Update) &FastBreakV1.FastBreakDaemon>>(from: FastBreakV1.OracleStoragePath)
20            ?? panic("Could not borrow a reference to the oracle resource")
21		self.oracleRef = cap.borrow() ?? panic("Could not borrow a reference to the oracle resource")
22
23		self.playerId = FastBreakV1.getPlayerIdByAccount(accountAddress: self.accountAddress)
24    }
25
26    execute {
27
28        self.oracleRef.updateFastBreakScore(
29            fastBreakGameID: self.fastBreakGameID,
30            playerId: self.playerId,
31            points: self.points,
32            win: self.win
33        )
34    }
35
36}