TransactionSEALED

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

Transaction ID

Timestamp

Dec 22, 2025, 07:45:42 AM UTC
2mo ago

Block Height

136,825,074

Computation

0

Execution Fee

0.00074 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 (1912b40e951215d1) uses 1017 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
917.98192020

Cadence Script

1// This transaction is a template for a transaction that
2// could be used by anyone to send tokens to another account
3// that has been set up to receive tokens.
4//
5// The withdraw amount and the account from getAccount
6// would be the parameters to the transaction
7
8import FungibleToken from 0xf233dcee88fe0abe
9import FlowToken from 0x1654653399040a61
10
11transaction(amount: UFix64, to: Address) {
12
13    // The Vault resource that holds the tokens that are being transferred
14    let sentVault: @{FungibleToken.Vault}
15
16    prepare(signer: auth(BorrowValue) &Account) {
17
18        // Get a reference to the signer's stored vault
19        let vaultRef = signer.storage.borrow<auth(FungibleToken.Withdraw) &FlowToken.Vault>(from: /storage/flowTokenVault)
20			?? panic("Could not borrow reference to the owner's Vault!")
21
22        // Withdraw tokens from the signer's stored vault
23        self.sentVault <- vaultRef.withdraw(amount: amount)
24    }
25
26    execute {
27
28        // Get a reference to the recipient's Receiver
29        let receiverRef =  getAccount(to)
30            .capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)
31			?? panic("Could not borrow receiver reference to the recipient's Vault")
32
33        // Deposit the withdrawn tokens in the recipient's receiver
34        receiverRef.deposit(from: <-self.sentVault)
35    }
36}