TransactionSEALED
○◆▓█○█&!@@╱╳■□◆@█▫░#!▒▫╱#@#!◇░□◆▫○~$╲#!▒▓&░▓?■?~░●*$╲█○●^^▫○■▫▪#
Transaction ID
Execution Fee
0.00086 FLOWExecution 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 (769760f53a5a3338) uses 3129 bytes of storage which is over its capacity (0 bytes). Capacity can be increased by adding FLOW tokens to the account.
Script Arguments
0amountUFix64
0.00010000
1toAddress
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 }