Assume vesting code block in Plutus playground. Simply, if receiver wallet has some ADA, the contract works normally. But in case of an empty receiver wallet, transaction will fail because sending money from script to wallet needs an amount of fee and this fee should be paid by receiver. Any modification for such problem?
Vesting via Cardano smart contract fails if receiver wallet is empty
169 views Asked by weera At
1
There are 1 answers
Related Questions in SMARTCONTRACTS
- Gas estimation failed | Returned error: gas required exceeds allowance (16966)
- This is the solidity code to list nft in marketplace after minting but while calling makeItem function Error is showing that Faliled to estimate gas
- how i need place arg in code for funtion send?
- Uniswap v3 flashloan remainging balance not correct after paying off the loan
- Blind signing when trying to send USDT over Arbitrum network
- connecting trust wallet mobile to my dapp
- Solidity Smart Contract & Hedera Hashgraph Javascript SDK Integration
- Trying to interact with a contract using is function selector, how do i get the block hash?
- a sales tax on stonfi or dedust (The Open Network)
- After issuing the NFT smart contract I made, it cannot be viewed by OpenSea
- no scripts folder in hardhat framework instead there's ignition folder with a subfolder named modules
- Ensure smart contract integrity in web applications
- How to generate multi hop swap path with ethers.js?
- How does the fee get calculated in hardhat?
- Function for returning a wallet balance
Related Questions in FEE
- Can't get Woocommerce Payment Gateway Fees to be added upon checkout
- Displaying a custom woocommerce cart fee based on a custom datepicker field selection
- Woocommerce add cart fee based on another order amount
- Exclude some products from calculated additional fee in WooCommerce
- Getting cart fees in WooCommerce not working in my header.php
- Add a fee to WooCommerce Total Cart based on an URL query variable
- How to add additional fee for specific payment method on checkout page with Woocommerce Gutenberg block?
- Add a Percentage Fee and a Fixed Fee For specific Product type in WooCommerce
- Adding small order surcharge fee and making it taxed?
- Woocommerce discount: add negative fees without taxes
- How to Combine Different Woocommerce Fees into One Name?
- I have an error when adding extra fees (add_fee) in the cart of Wordpress with Woocommerce?
- Add Commission Fee to WooCommerce Checkout Based on Subtotal
- WooCommerce programmatically added fee don't persists
- Do you have to pay the 30% fee in the App Store and Google Play if what you sell is half in-app and half outside the app?
Related Questions in CARDANO
- How to calculate the cardano's network throughput (transactions per second)?
- RawCborDecodeError when saving metadata in Cardano using Blockfrost Api
- Cardano NFT Fetching From Collection
- Mint an NFT using policy script on cardano
- How to fix CBOR decode error using useCardano()
- how to use WalletConnect (https://walletconnect.com) with MeshJs (https://meshjs.dev/) cardano development library
- generate extended public address from extended public key(xpub) for Cardano(ADA)
- Cabal installation fails on M1
- Issue during instalaiton Cardano-sdk/core
- What is different nami wallet signing and payment.skey signing?
- Blockfrost API - input to the output
- Blockfrost.io get transaction data with addresses (from/to)
- Illegal type: Perhaps you intended to use DataKinds
- Cardano Pre Production Testnet TrConnectError
- How to get TransactionUnspentOutput as a hex encoded bytes string programmatically
Related Questions in PLUTUS
- What is different nami wallet signing and payment.skey signing?
- Illegal type: Perhaps you intended to use DataKinds
- strange cabal build behaviour - won't detect changes to code files
- Is there any way to copy Haskell binaries to another project to save time on initial build?
- Problem running Plutus Playground Client on MacOS
- Vesting via Cardano smart contract fails if receiver wallet is empty
- How to divide amount unequally in Plutus Smart Contracts
- How to set HTTP version with Haskell request
- PlutusPlayground [high REDEEM fees]
- Plutus Playground Client cannot run
- cabal install ghc impossible happened: heap overflow
- Typed version of Plutus Pionneers homework01 (week02)
- Plutus Interpreter Error in Plutus Playground
- Can't find nix-env or nix-build on MacOS Catalina
- How to implement counter game with state in cardano plutus? (the 10th player can pick reward)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
That's not a problem, that's the way smart contracts works in cardano, even that's the way everything works on blockchain. When an address sends money to another, the source address should pay for the fees. That logic applies to any blockchain (as I know).
So, in smart contracts is the same. If a wallet wants to retrieve (not receive as you said) money from a validator script, then should pay for the fees. This is because the wallet wants those funds, therefore it should submit a transaction in the blockchain, that implies to pay the fees for it.
In blockchain, every user/wallet/addres that submit a transaction to the network, should pay fees.