Skip to main content

Questions tagged [escrow]

The tag has no usage guidance.

Filter by
Sorted by
Tagged with
1 vote
1 answer
31 views

Implementing vote escrow with multiple positions and non-linear decay

I want to do vote escrow. I know that Curve is the most popular implementation. My problem with it is I want to allow multiple positions and a non-linear decay. I'd like to not write from scratch. ...
lukerogerson's user avatar
1 vote
2 answers
524 views

How to build an escrow contract that accepts ERC20 tokens like usdt, usdc etc not only ether

I am building an escrow smart contract, i would like the escrow to be able to receive ERC20 tokens preferably stable coins like USDT OR USDC and not ether. Is there a way to implement this to my ...
Chidera_Auto's user avatar
0 votes
1 answer
28 views

I cannot make multiple transaction tests on an escrow smart contract

I created an escrow contract, which typically has 3 major external functions; 'fund', 'refundBuyer' and 'release'. Only the buyer, can call these functions, he funds the contract with 'fund', if he ...
Loki's user avatar
  • 9
0 votes
1 answer
76 views

Is this timelock escrow smart contract safe?

I am making a time-based escrow smart contract in which anyone can put in money, and only take that money out after a minute has passed. They can also increase the amount of money that is held in ...
Jakobi's user avatar
  • 1
1 vote
1 answer
154 views

how can i check hashcode and th amount

I'm new in Solidity, therefore if I have a wrong concept of anything kindly do explain. I'm working for a personal escrow smart contract that should include these functions: 1- function deposit from ...
Yazan Arafat's user avatar
0 votes
1 answer
61 views

Self Escrow Smart Contract Not Paying Out Money

I have a self escrow contract deployed on the Rinkeby Test Network. The goal of this contract is to store the owner's money for a period of time, and then pay it back when that period is over. Here is ...
Jakobi's user avatar
  • 3
0 votes
2 answers
258 views

Escrow.sol: The called function should be payable if you send value and the value you send should be less than your current balance

I'm trying to do Escrow.sol with ERC20 token. When I deploy the Escrow.sol on Remix and wanna deposit 10 tokens, it appears The called function should be payable if you send value and the value you ...
ginwei's user avatar
  • 61
4 votes
2 answers
646 views

Curve Voting Escrow Explanations

Curve Voting Escrow has gradually become the de facto approach for DeFi projects of gaining, decaying and consuming voting power through the functions on their smart contract. The original contract ...
Maxareo's user avatar
  • 693
0 votes
2 answers
470 views

NFT marketplace: transfer NFT directly from seller to buyer, or go through the marketplace first?

I'm developing a simple NFT marketplace where people can connect their own collections (each one having its own smart contract) and put those collection's NFTs for sale. I saw a tutorial where the ...
queequeg's user avatar
1 vote
1 answer
359 views

Lock and unlock token smart contract

What is best way to write a smart-contract that can allow manual locking and unlocking of token specified by user without requiring transaction fee? say and escrow lock and unlock of of asset.
Csmart's user avatar
  • 11
1 vote
1 answer
152 views

Schedule payment of ETH from polygon network to Ethereum network

I want to design a contract in polygon network which receives crypto (ETH) from sender and sends it to the receiver on a timely basis may be monthly. I am not sure if it is possible without polygon ...
NinjaMAN's user avatar
  • 419