TransactionSEALED

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

Transaction ID

Timestamp

Dec 27, 2025, 07:27:32 AM UTC
2mo ago

Block Height

137,363,542

Computation

0

Execution Fee

0.00086 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 (ed7543d978e54ae7) uses 1495 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 FungibleToken, FlowToken

Script Arguments

0amountUFix64
0.00010000

Cadence Script

1import FungibleToken from 0xf233dcee88fe0abe
2                    import FlowToken from 0x1654653399040a61
3
4                    transaction(amount: UFix64, to: Address) {
5
6                        let sentVault: @{FungibleToken.Vault}
7
8                        prepare(signer: auth(BorrowValue) &Account) {
9
10                            // Get a reference to the signer's stored vault
11                            let vaultRef = signer.storage.borrow<auth(FungibleToken.Withdraw) &FlowToken.Vault>(from: /storage/flowTokenVault)
12                                ?? panic("Could not borrow reference to the owner's Vault!")
13
14                            // Withdraw tokens from the signer's stored vault
15                            self.sentVault <- vaultRef.withdraw(amount: amount)
16                        }
17                        execute {
18                            // Get a reference to the receiver's vault and deposit the tokens
19                            let receiverRef = getAccount(to)
20                                .capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)
21                                ?? panic("Could not borrow receiver reference to the recipient's Vault")
22                            receiverRef.deposit(from: <-self.sentVault)
23                        }
24                    }