Bitcoin Forum
April 25, 2024, 04:04:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: Why don't we have bitcoin smart contract?  (Read 469 times)
CristianOff (OP)
Member
**
Offline Offline

Activity: 421
Merit: 97


View Profile
December 02, 2019, 09:41:12 PM
 #1

I'm really thinking on how I can improve Bitcoin to project it to "the next stage"
I'm so jealous Ethereum has smart contracts. I want Bitcoin DAPPS. Can we not have a Layer 3 running an
EVM machine on top of both Bitcoin and lightening network?

It sounds achievable. Any criticism on what would be the problem with this from a technical point of view?
Anyone want to join as core team members?
1714061089
Hero Member
*
Offline Offline

Posts: 1714061089

View Profile Personal Message (Offline)

Ignore
1714061089
Reply with quote  #2

1714061089
Report to moderator
1714061089
Hero Member
*
Offline Offline

Posts: 1714061089

View Profile Personal Message (Offline)

Ignore
1714061089
Reply with quote  #2

1714061089
Report to moderator
"I'm sure that in 20 years there will either be very large transaction volume or no volume." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714061089
Hero Member
*
Offline Offline

Posts: 1714061089

View Profile Personal Message (Offline)

Ignore
1714061089
Reply with quote  #2

1714061089
Report to moderator
1714061089
Hero Member
*
Offline Offline

Posts: 1714061089

View Profile Personal Message (Offline)

Ignore
1714061089
Reply with quote  #2

1714061089
Report to moderator
pooya87
Legendary
*
Offline Offline

Activity: 3430
Merit: 10499



View Profile
December 03, 2019, 03:53:28 AM
 #2

I'm so jealous Ethereum has smart contracts. I want Bitcoin DAPPS.
i honestly don't see the attraction in what ethereum has. specially since so far in the past 5 years of ethereum's existence i have not seen even a single DApps that were remotely interesting or were doing anything meaningful!
so if you want to expand bitcoin's script language, you first have to show us where the attraction or need for it is. Vitalik tried for a couple of years to do that in bitcoin and failed...

answer these questions first:
- what would more complex smart contracts (than what bitcoin can currently create) solve?
- what would be the use case of it in real world?
remember that just creating scam ICOs like ethereum is not a reason to do it!

Quote
Can we not have a Layer 3 running an EVM machine on top of both Bitcoin and lightening network?
we already have sidechains and there is at least one project i know of called Rootstock

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
buwaytress
Legendary
*
Offline Offline

Activity: 2786
Merit: 3437


Join the world-leading crypto sportsbook NOW!


View Profile
December 03, 2019, 11:24:55 AM
 #3

There is definitely one smart contract I'd like for Bitcoin: escrow. We're talking about Bitcoin as a payment tool and (trustless) escrow has got to be one of the things left to develop properly for Bitcoin. I remember first reading about Rootstock (mentioned by Pooya) at some point even in 2016/17 said that they were developing it for that precise usage. Think even Counterparty was supposed to have something like this.

A simple Ethereum script for it has existed for some time. But not for Bitcoin (to my knowledge). I can see that smart contract being put to use daily on this forum, for example. Or for inheritance (if I don't sign my wallet for 7 years, it releases to an heir, for example).

Or do these already exist?

██
██
██
██
██
██
██
██
██
██
██
██
██
... LIVECASINO.io    Play Live Games with up to 20% cashback!...██
██
██
██
██
██
██
██
██
██
██
██
██
pooya87
Legendary
*
Offline Offline

Activity: 3430
Merit: 10499



View Profile
December 03, 2019, 11:36:57 AM
Last edit: December 03, 2019, 11:58:28 AM by pooya87
Merited by d5000 (1), buwaytress (1), RapTarX (1), TechPriest (1)
 #4

There is definitely one smart contract I'd like for Bitcoin: escrow.

Code:
OP_2 <Alice_pubkey><Bob_pubkey><Escro_pubkey> OP_3 OP_CHECKMULTISIGVERIFY
This "smart contract" has existed in bitcoin for a very long time! you can also add additional conditions to it such as time with a locktime (OP_CHECKLOCKTIMEVERIFY)

is there anything specific you have in mind?

Or for inheritance (if I don't sign my wallet for 7 years, it releases to an heir, for example).
Code:
OP_DUP OP_HASH160 <hash_of_your_pubkey> OP_EQUAL
OP_IF
    OP_CheckSig
OP_ELSE
   <locktime=7years> OP_CheckLocktimeVerify OP_DROP OP_DUP OP_HASH160 <hash_of_your_heir's_pubkey>
   OP_EQUALVERIFY OP_CheckSig
OP_ENDIF

if "you" wanted to spend it, you simply provide a <signature><pubkey> using your own private key. if your heir wanted to claim this they have to first wait for the locktime to be reached then provide their own <signature><pubkey>.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
HeRetiK
Legendary
*
Offline Offline

Activity: 2912
Merit: 2080


Cashback 15%


View Profile
December 03, 2019, 01:30:46 PM
 #5

I think OP might be interested in Simplicity:
https://github.com/ElementsProject/simplicity

It's still a long way out but should eventually offer the capabilities of Ethereum-like smart-contracts without the pitfalls that turing-completeness brings.

(keeping in mind that a language does not necessarily need to be turing-complete to be powerful and expressive. matter of fact most critical infrastructure such as military and aeronautical applications follow code conventions that explicitely try to avoid patterns usually associated with turing-completeness such as recursion)

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
mda
Member
**
Offline Offline

Activity: 144
Merit: 13


View Profile
December 03, 2019, 04:25:52 PM
Last edit: December 03, 2019, 04:43:33 PM by mda
 #6

There is definitely one smart contract I'd like for Bitcoin: escrow. We're talking about Bitcoin as a payment tool and (trustless) escrow has got to be one of the things left to develop properly for Bitcoin. I remember first reading about Rootstock (mentioned by Pooya) at some point even in 2016/17 said that they were developing it for that precise usage. Think even Counterparty was supposed to have something like this.

A simple Ethereum script for it has existed for some time. But not for Bitcoin (to my knowledge). I can see that smart contract being put to use daily on this forum, for example. Or for inheritance (if I don't sign my wallet for 7 years, it releases to an heir, for example).

Or do these already exist?
A sort of escrow could be 2-of-2 multisig where seller puts one price and buyer puts two prices. But for it to be efficient both funding transactions should be included in the same block. Meaning that besides the usual transaction hash its counter-party transaction hash also should appear in the Merkle tree.
CristianOff (OP)
Member
**
Offline Offline

Activity: 421
Merit: 97


View Profile
December 03, 2019, 08:26:15 PM
 #7

Thanks everyone for sharing so much meaningful information. I really feel that I got more information that I really wanted to be
aware of, yet it is not as promoted / marketed to the masses. I didn't know about Bitcoin already implementing the escrow thing,
nor did I know about RKS, Omni layer , simplicity and scripts.

What do you think is the next step in this industry? I don't believe it is "mature" yet and there is such a big gap left. We should really
start working on user experience. A Steve Jobs mind would help this be more than just peer to peer cash or an asset. I really think
users coming from backgrounds are not really interested in the "hashing" and all the logic, they just want something to work and this
bitcoin has everything to work, we just need to make people "enjoy it".

Or do you guys believe that my "view" on bitcoin is not as realist and in reality bitcoin is actually working as expected? I just want it
massively adopted! MASSIVELY. Billions of people.
Tramirostronix
Sr. Member
****
Offline Offline

Activity: 1078
Merit: 340



View Profile
December 03, 2019, 08:56:46 PM
 #8

Thanks everyone for sharing so much meaningful information. I really feel that I got more information that I really wanted to be
aware of, yet it is not as promoted / marketed to the masses. I didn't know about Bitcoin already implementing the escrow thing,
nor did I know about RKS, Omni layer , simplicity and scripts.

What do you think is the next step in this industry? I don't believe it is "mature" yet and there is such a big gap left. We should really
start working on user experience. A Steve Jobs mind would help this be more than just peer to peer cash or an asset. I really think
users coming from backgrounds are not really interested in the "hashing" and all the logic, they just want something to work and this
bitcoin has everything to work, we just need to make people "enjoy it".

Or do you guys believe that my "view" on bitcoin is not as realist and in reality bitcoin is actually working as expected? I just want it
massively adopted! MASSIVELY. Billions of people.

I can understand your vision but I don't get why smart contracts for bitcoin will help the adoption ? you are talking of billions of people so lambda people I guess.
People do not need to know that bitcoin has smart contracts and they even don"t need to know what a smart contract is.
To use internet you don't need to know the OSI structure  Wink

I love XRP. XRP>BTC + DEDICACE A JULIEN le CROISE
HeRetiK
Legendary
*
Offline Offline

Activity: 2912
Merit: 2080


Cashback 15%


View Profile
December 03, 2019, 10:08:26 PM
Merited by CristianOff (2)
 #9

Thanks everyone for sharing so much meaningful information. I really feel that I got more information that I really wanted to be
aware of, yet it is not as promoted / marketed to the masses. I didn't know about Bitcoin already implementing the escrow thing,
nor did I know about RKS, Omni layer , simplicity and scripts.

Most of this is still highly experimental technology so there's no sense in marketing it to the masses (yet). Also, once these technologies are ready for the masses (in terms of maturity and usability), if all goes well they won't be aware that they are using these technologies to begin with.

Case in point: You have never heard of OMNI but you're probably aware of Tether. Well, it's an OMNI token.


We should really start working on user experience.

Lots of wallet projects working on that front. And it makes sense, because that's the part that is facing the user. Smart contracts, DApps? Your average user couldn't care less.



To use internet you don't need to know the OSI structure  Wink

Well one should be aware of at least layer 1 if the router is supposed to work Grin

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
cryptied
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
December 04, 2019, 02:41:50 AM
Last edit: December 07, 2019, 06:24:49 AM by cryptied
 #10

I remember there was one more language (besides Solidity and Bitcoin script) for writing Bitcoin smart contracts. They often referred to it when Solidity came. Can't for the life of me recall the name or even find it anywhere but it was some sort of 3-letter acronym. Does anyone know?
pooya87
Legendary
*
Offline Offline

Activity: 3430
Merit: 10499



View Profile
December 04, 2019, 04:16:01 AM
 #11

i honestly don't see the attraction in what ethereum has. specially since so far in the past 5 years of ethereum's existence i have not seen even a single DApps that were remotely interesting or were doing anything meaningful!

You don't find DEX and Casino interesting ?

as far as i can tell you can not trade altcoins in any of these so called DEXes built on top of ethereum. the only thing you can trade is tokens that are created on that platform aka ERC20 tokens. i don't see the point in such exchange apart from letting people dump their ICO tokens!
i don't have much information about casinos, i have only seen them on Byteball and the idea seemed interesting. so i'll give you that.

What do you think is the next step in this industry? I don't believe it is "mature" yet and there is such a big gap left.
one thing about bitcoin that you should keep in mind is that it is a currency and as a payment system it has no need for very complicated and feature rich smart contracts.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
Wind_FURY
Legendary
*
Offline Offline

Activity: 2898
Merit: 1822



View Profile
December 04, 2019, 06:35:02 AM
 #12

OP, Lightning channels are essentially smart contracts between users that serves the biggest use-case for cryptocurrencies. Payments.

Ethereum "DAPPS" are "show and tell" things you can use, but will not replace their centralized counterparts.

██████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
██████████████████████
.SHUFFLE.COM..███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
█████████████████████
████████████████████
██████████████████████
████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
██████████████████████
██████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
.
...Next Generation Crypto Casino...
amishmanish
Legendary
*
Offline Offline

Activity: 1904
Merit: 1158


View Profile
December 04, 2019, 07:36:33 AM
 #13

While bitcoin may not have "smart-contract" implementation, there have been multiple initiatives in implementing smart contract as a bitcoin sidechain. Rootstock was talked about a lot once. Then there was the language Simplicity. I am not sure what is the progress on these concepts.

These were meaningful extensions of the bitcoin network. Although, we seem to have gone full "Bitcoin should only be used as SoV", a lot of original developers are the ones who diversified this vision too. In a way, they are all part of bitcoin.
The best scenario for crypto-economy would be to have the Pro-Dapp community and the maximalist community on the same page.
Links:
RSK Smart contracts
Simplicity whitepaper
buwaytress
Legendary
*
Offline Offline

Activity: 2786
Merit: 3437


Join the world-leading crypto sportsbook NOW!


View Profile
December 04, 2019, 08:13:46 AM
 #14

Thank you pooya for that! As usual you have a lot to share=) See, all the other times I've actually asked, I don't ever recall getting the answer, but I think the arguments some have presented stand.

What you shared, again, are scripts, and not the sort of straightforward smart contract (and as someone pointed out not Turing complete either).

Don't get me wrong, I love those solutions but as a very low-end Bitcoiner, I would be far from confident enough to attempt those scripts, much less hope the same for someone else I intend to pass my inheritance to. I consider myself the highest level technical knowledge you could possibly expect from a mainstream user: we know how to sign and broadcast txs, we know how to spend particular inputs, we know RBF, CPFP, and we're just starting to get used to LN.

But the smart contract platforms people talk about make escrow smart contracts just easy to use, safe, simple. IF the scripts you just shared are so easy to use (they're not for me), why isn't it brought up to be used more often in the p2p trades this forum sees every day? We're still heavily reliant on hiring forum escrowers for big trades.


██
██
██
██
██
██
██
██
██
██
██
██
██
... LIVECASINO.io    Play Live Games with up to 20% cashback!...██
██
██
██
██
██
██
██
██
██
██
██
██
Tramirostronix
Sr. Member
****
Offline Offline

Activity: 1078
Merit: 340



View Profile
December 04, 2019, 09:53:12 AM
 #15

While bitcoin may not have "smart-contract" implementation, there have been multiple initiatives in implementing smart contract as a bitcoin sidechain. Rootstock was talked about a lot once. Then there was the language Simplicity. I am not sure what is the progress on these concepts.

These were meaningful extensions of the bitcoin network. Although, we seem to have gone full "Bitcoin should only be used as SoV", a lot of original developers are the ones who diversified this vision too. In a way, they are all part of bitcoin.
The best scenario for crypto-economy would be to have the Pro-Dapp community and the maximalist community on the same page.
Links:
RSK Smart contracts
Simplicity whitepaper

Thanks for the links I will take a look too.
You don't hear a lot about project based on Bitcoin because of Ethereum.
And the last project (even if it is different ) Bitcoin based I heard about was "stratis" but ... They are dead , right ?

I love XRP. XRP>BTC + DEDICACE A JULIEN le CROISE
ABCbits
Legendary
*
Offline Offline

Activity: 2856
Merit: 7406


Crypto Swap Exchange


View Profile
December 04, 2019, 01:10:32 PM
Merited by pooya87 (1)
 #16

But the smart contract platforms people talk about make escrow smart contracts just easy to use, safe, simple. IF the scripts you just shared are so easy to use (they're not for me), why isn't it brought up to be used more often in the p2p trades this forum sees every day? We're still heavily reliant on hiring forum escrowers for big trades.

pooya87's script is about 2-of-3 multi signature address and you already can use it easily (without need to know about scripting) by using wallet which support multi signature wallet such as Electrum.

And obviously hiring escrow is still needed.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Tramirostronix
Sr. Member
****
Offline Offline

Activity: 1078
Merit: 340



View Profile
December 04, 2019, 06:08:37 PM
 #17

But the smart contract platforms people talk about make escrow smart contracts just easy to use, safe, simple. IF the scripts you just shared are so easy to use (they're not for me), why isn't it brought up to be used more often in the p2p trades this forum sees every day? We're still heavily reliant on hiring forum escrowers for big trades.

pooya87's script is about 2-of-3 multi signature address and you already can use it easily (without need to know about scripting) by using wallet which support multi signature wallet such as Electrum.

And obviously hiring escrow is still needed.

Of course, escrow is a huge + of blockchain so no reason to stop it  Smiley
After you just need to be careful when you choose your escrow guy ..
But be careful when you put your trust in someone is what we do everyday ..

I love XRP. XRP>BTC + DEDICACE A JULIEN le CROISE
pooya87
Legendary
*
Offline Offline

Activity: 3430
Merit: 10499



View Profile
December 05, 2019, 03:50:40 AM
 #18

Don't get me wrong, I love those solutions but as a very low-end Bitcoiner, I would be far from confident enough to attempt those scripts, much less hope the same for someone else I intend to pass my inheritance to. I consider myself the highest level technical knowledge you could possibly expect from a mainstream user:

even if you were high-end expert you still shouldn't have to be using scripts that you write by hand. there should always be a user friendly tool where it takes the inputs needed for creation of the script and then returns the  final transaction. for example to use the escrow (m of n multisig) script you can use the user friendly wallet called Electrum where you just import your master keys and m, the wallet does everything else.

otherwise it would not only take a lot of time but also you may easily make a lot of mistakes. for example  as an experiment and also to answer a question i recently created a script using OP_CLV and send some funds to it on testnet and then spent them. the whole thing took me about 1.5 hours and i messed up the first time and lost the first coins, they are now locked forever!!! here is the link: https://bitcointalk.org/index.php?topic=5205451.msg53211121#msg53211121

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
Tramirostronix
Sr. Member
****
Offline Offline

Activity: 1078
Merit: 340



View Profile
December 05, 2019, 10:30:10 AM
Merited by CristianOff (1)
 #19

Don't get me wrong, I love those solutions but as a very low-end Bitcoiner, I would be far from confident enough to attempt those scripts, much less hope the same for someone else I intend to pass my inheritance to. I consider myself the highest level technical knowledge you could possibly expect from a mainstream user:

even if you were high-end expert you still shouldn't have to be using scripts that you write by hand. there should always be a user friendly tool where it takes the inputs needed for creation of the script and then returns the  final transaction. for example to use the escrow (m of n multisig) script you can use the user friendly wallet called Electrum where you just import your master keys and m, the wallet does everything else.

otherwise it would not only take a lot of time but also you may easily make a lot of mistakes. for example  as an experiment and also to answer a question i recently created a script using OP_CLV and send some funds to it on testnet and then spent them. the whole thing took me about 1.5 hours and i messed up the first time and lost the first coins, they are now locked forever!!! here is the link: https://bitcointalk.org/index.php?topic=5205451.msg53211121#msg53211121


And of course if you don't understand something or are afraid, you will not use it. Cryptocurrencies need to be easy to use if we want to get an adopation....
Thanks for the other link too Smiley

I love XRP. XRP>BTC + DEDICACE A JULIEN le CROISE
buwaytress
Legendary
*
Offline Offline

Activity: 2786
Merit: 3437


Join the world-leading crypto sportsbook NOW!


View Profile
December 05, 2019, 07:22:48 PM
 #20

@ETF BTC but that's... the thing. I can't expect my heir to learn multisig, and the whole point was to avoid hiring an escrow =)


even if you were high-end expert you still shouldn't have to be using scripts that you write by hand. there should always be a user friendly tool where it takes the inputs needed for creation of the script and then returns the  final transaction. for example to use the escrow (m of n multisig) script you can use the user friendly wallet called Electrum where you just import your master keys and m, the wallet does everything else.

otherwise it would not only take a lot of time but also you may easily make a lot of mistakes. for example  as an experiment and also to answer a question i recently created a script using OP_CLV and send some funds to it on testnet and then spent them. the whole thing took me about 1.5 hours and i messed up the first time and lost the first coins, they are now locked forever!!! here is the link: https://bitcointalk.org/index.php?topic=5205451.msg53211121#msg53211121

I guess, this process is what I mean by a "smart contract" or dapp (trust me I hate using those words)... I have used such an escrow smart contract (not on Bitcoin but on an alt client) and it was breathtakingly straightforward, the whole thing gave instructions so I never even needed a manual...

But you're right, and that's why, even if it is quite simple to see and achieve as you and others demonstrate, it is still risky enough for someone like me to attempt with serious amounts. As it is, even simple transactions take me some minutes to double triple check!;)

██
██
██
██
██
██
██
██
██
██
██
██
██
... LIVECASINO.io    Play Live Games with up to 20% cashback!...██
██
██
██
██
██
██
██
██
██
██
██
██
Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!