Bitcoin Forum
July 07, 2024, 07:34:00 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 ... 121 »
241  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: May 19, 2019, 01:37:14 AM
Hi,

Just a suggestion. Please put clearly marked links to your source code. I had trouble finding it with a cursory look. Currently trying to compile and sync.
Thanks will get a direct link on the site

Hi there, is this for the Markets client or QT? Both are at my github. github.com/dzimbeck

The markets client (which contains all peg logic in Python) is also there in the Halo github with Bitmessage. It has a link to the obfuscated source code and so does our main site bitbay.market

This is for my project. :- https://bitcointalk.org/index.php?topic=5141975.0

I intend to add support for all actively used and developed coins/assets.

I see, your project looks pretty ambitious. Well if all of it is going to be open source then I can recommend how you would go about doing decentralized "servers" because we have a design for it that is pretty bullet proof. The cool thing about crypto is almost everything can be client side other than the database where data that doesn't belong on the blockchain is stored. (although it can be hashed on the blockchain at predefined intervals if you want to keep it's integrity)

Also it's probably a good idea to make everything web based(except of course your full nodes). This is something I've learned over the past 5 years of development that end users won't really appreciate what's under the hood. They just want a viable product (even when something as serious as their own security is concerned)

Is your solution similar to this: https://zeronet.io/ ?

Another question now that Cryptopia went fucked is there any place where is possible to acquire some BAYs
without going trough this bullshit KYC procedure?
All listed markets on https://coinmarketcap.com/currencies/bitbay/#markets
requires KYC.

Thanks.


Hi so one way to acquire BAY is just use our markets. There is a coins for cash template and if you let people know you want to buy they can either acquire them for you or sell direct. You can even do a custom contract. That's the advantage of P2P markets is sellers and buyers. Just remember to let our community know either here or one slack about the contract.

Also the solution for the web markets is pretty simple but I haven't seen a system like it yet. Zeronet probably doesn't let data expire or is best for serving static pages. In that case github would be fine for serving pages for free.

As for the web markets and any decentralized site, my solution has a few steps.
* All major logic is run client side in javascript. Because users should validate their own transactions and verify data and prices
* Blockchain data can be verified client side on chainz and other services as well as with nodes running the site directly
* External data can be scraped from third parties like coinmarketcap
*Nodes that run markets do so voluntarily. They share the data with a master/slave system and it is not blockchain based.
*If the master node (the node that updates the database from slaves) goes offline a new one is automatically selected
*A user connecting connects to any of the nodes or several and that's OK for trivial data. Just make sure all nodes sync with master
*All user data has an expiration date, even personal data and its ALL encrypted using their private key therefore if the master node messes
  with this data it will not be able to be decrypted! Nobody has access but the user
*Messages P2P is end to end encrypted again preventing tampering
*All requests and messages are signed with private key making SSL not as important and login much safer
*Messages with expiration date vary (from months to years depending on data type)
*Images can be stored on sites like IMGUR with a bundle of API keys used client side or anonymous pastebins
*Publicly shared data (such as offers) share a common decryption key and are signed by users making tampering almost impossible
*Master nodes that tamper with data will obviously be replaced by slaves who prove it was tampered (perhaps using master signature of hash)
*DDOS is stopped easily by traffic limits per node or progressive POW or "proof of time locked funds per KB" the more messages sent.
*Database size is contained by the fact that most data is trivial, users can back up data and hash it, nodes may also archive with hash

The above system lets anyone join without the concern of data issues or trust. It also allows anyone to serve the data with big servers.
It's possible that Zeronet, IPFS or even DPOS databases have a design close enough to the above but some of the things in the required specs are pretty specific. If this is designed by our team we can probably open source it and increase contributors to our github.
I've not had the time to research any alternatives but if they can do the above with a few modifications that saves us a lot of work.

If for whatever reason, any trust of nodes serving is involved a list can be periodically updated on github by reputation. Also stakers can potentially vote them in or out and even give them incentive by a stake donation so I don't see those things as issues for trivial data.
Contracts can at least have very important info backed up on chain by a hash or a small encryption of minimal critical data(for example a disposable key). If you really wanted to be fancy, use stenography to store data into images on 3rd party services

And thats it, I think the design itself is pretty simple... it just needs to be coded and I really dont want to have any of the above features missing (except perhaps a variation in how nodes group together or something)

Hopefully this makes sense.  Grin
242  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: May 15, 2019, 05:42:12 AM
Glad to see the cryptos in a bit of a Bull run.

Newbies: Find a coin out there that has more features than BAY. You can't...
https://bitbay.market/wall-of-features

Also - Check out a real cool video that explains a lot of the theory behind the upcoming Dynamic Peg:
https://bitbay.market/decentralized-marketplace

BE FREE

We will get there Doc! One way or another buddy. All that is left now is to get this peg up on a couple exchanges with decent volume and it's game over! Or is it just the beginning?  Grin
243  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: May 15, 2019, 05:40:51 AM
Hi,

Just a suggestion. Please put clearly marked links to your source code. I had trouble finding it with a cursory look. Currently trying to compile and sync.
Thanks will get a direct link on the site

Hi there, is this for the Markets client or QT? Both are at my github. github.com/dzimbeck

The markets client (which contains all peg logic in Python) is also there in the Halo github with Bitmessage. It has a link to the obfuscated source code and so does our main site bitbay.market

This is for my project. :- https://bitcointalk.org/index.php?topic=5141975.0

I intend to add support for all actively used and developed coins/assets.

I see, your project looks pretty ambitious. Well if all of it is going to be open source then I can recommend how you would go about doing decentralized "servers" because we have a design for it that is pretty bullet proof. The cool thing about crypto is almost everything can be client side other than the database where data that doesn't belong on the blockchain is stored. (although it can be hashed on the blockchain at predefined intervals if you want to keep it's integrity)

Also it's probably a good idea to make everything web based(except of course your full nodes). This is something I've learned over the past 5 years of development that end users won't really appreciate what's under the hood. They just want a viable product (even when something as serious as their own security is concerned)
244  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: May 14, 2019, 03:21:30 AM
Hi,

Just a suggestion. Please put clearly marked links to your source code. I had trouble finding it with a cursory look. Currently trying to compile and sync.
Thanks will get a direct link on the site

Hi there, is this for the Markets client or QT? Both are at my github. github.com/dzimbeck

The markets client (which contains all peg logic in Python) is also there in the Halo github with Bitmessage. It has a link to the obfuscated source code and so does our main site bitbay.market
245  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: May 10, 2019, 02:31:28 AM
@dzimbeck - Question for you?? I own and operate a small screen printing company. I was wondering if I first got permission to print some Bitbay shirts to sell on the market, is there is a way to allot a portion of the sale to Bitbay automatically to help further development or what not (maybe through a smart contract). Would this be welcome? Is this possible and is there some sort of a tutorial or something that would explain to me how to implement this? Just curious, but if it is possible and I have a green light, I would love to run with this idea? Please let me know you thoughts?

Hi there, absolutely! We are always happy if a merchant gives back. There is a donate option in the client actually. We would not need a smart contract for a kind gesture. If anything we would hope you can sell your shirts and be successful as that helps the market move. If you get on slack or discord or even here on bitcointalk, there are many community members who would love to walk through contracts with you either on the client or web marketplace just to run some tests. The best part about being decentralized is you don't need anyone's permission! We hope this platform and it's users see that this is truly 2 party peer to peer escrow. We don't take fees, we don't have servers, we just want to see users and want to see them protected from fraud and escrow scams. My goal ever since 5 years ago was to popularize unbreakable contracts aka double deposit escrow. That's what brought me into Bitcoin and that's what made me stay.

 Grin
246  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: May 10, 2019, 02:25:32 AM
Great ! It seems that bitbay will position itself as the decentralized "Ebay" in crypto mode! it's very interesting!!

Do you know if other exchanges place are planned after Bittrex Upbit and LiteBit.eu ?

The most important thing we have to do now is get exchanges to add our peg code since trade balances will fluctuate as supply does. Some exchanges have already taken an interest and all we need is one to start kicking some tail.
247  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: May 08, 2019, 10:35:57 AM
I for one am really getting sick and tired of watching all the other coins that are not 1/10th of what we are, blowing us out of the water.

I personally think the primary cause is name confusion - nobody knows who we are, look at our volume.
Everybody I talk to thinks we are the Polish exchange. It's very frustrating and has been like this for years... Years.
One of these days, if things don't change soon - the competition will eventually catch up.

Our fantastic name is killing us. 

David has another fantastic name - BitHalo.
We could do a 1 to 1 hard fork and leave all the "Bay" Exchange confusion behind.

Considering that we have to negotiate with exchanges for the peg, our team is dedicated to doing that right now. We will need a lot of funds to properly negotiate and dedication of most of the team to complete that final step. Once we see the exchanges with their pair looking like dynamicpeg.com then brand changes can be calculated. Because a rebrand will cost 5 figures easily, maybe 6 done nicely.

With the BitBay name, we have proven spiritually that we were able to take the project from being sabotaged to a few hundred grand marketcap up to a half a billion dollars and now down to 7-10 million respectively. So many people made money or at least had the opportunity to cash some of them up thousands of times from the bottom thank goodness. So a rebrand is okay since we have proved our point. However, I assure you that this price drop has absolutely nothing to do with branding and it has to do with the bear market and our core investors already positioned as well as potential market manipulation across the exchanges. Of course there is also stonewalling and foolishness through the industry as a whole. People aren't yet looking at what blockchain can do and instead still gambling on it. This is why the peg is a core feature meant to fix that problem. And all the code is done there is just final touches and negotiation left to do. Be patient.

BitBay name might have other issues besides the exchange and I'm not sure if it's conducive to a physical currency... examples like "euro", "dollar", "peso" are more currency sounding. As far as names I've looked over lists of other names and BitHalo is one of the best. It's also the project that started everything so it certainly has the history and worth to back it up. Although as usual we are fine to chat about other names as well. For now though it's not the priority.
248  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Blackcoin Protocol [BLK] | Home of PoS 3.0 | No ICO | No Pre-mine on: May 01, 2019, 09:18:07 PM
Obviously you'd know better then me on this but I'm just mentioning how its not completely bound to revolve around just the largest wallets.  I believe it gives some priority to those who've not staked before over somebody who staked 5 times already today.    Thats how someone who is a much smaller holder would still be involved despite not being in the top 100 list.    The coins on Bittrex arent involved in staking either afaik, so theres that positive also as some incentive to setup a wallet even the smaller or newer participants.

Actually the reason it doesn't give that incentive is a good thing. For example, I can split an input into 1000s of outputs. If Coinage was allowed those tiny outputs could sit for a while and generate higher stakes. It also lets a user gain more network weight by not being connected which is clearly a security hole. Rat4 removed this for those reasons.

Lets say a guy with 100 coins has a 10x lower chance of getting a stake than a guy with 1000 coins. That is totally fair because they BOTH average about 1% a year considering a reward of 1.5 coins. So if a guy with 100 coins is connected for a year he will see a block more or less. The guy with 1000 coins might get a stake per month. It doesn't favor the rich.

Consider DPOS which does favor the rich. Once you get into the 100 delegates or 20 delegates or whatever, you can pay people to vote for you and stay in the top. Also, it's less people validating the chain. For pure POS 3.0 there could be as many people staking as there are people connected. As incentive rises to stake, people upgrade hardware to run the full nodes. DPOS was never necessary and was a centralized workaround to make a glorified database. It paid off well because the devs could roll out a product but it wasn't actually secure and neither was the trivial data (like Steemit which stores it's data elsewhere).

POW also favors the rich because wealthy people can build better hardware to dominate the network. Also POW is notoriously prone to being forked for smaller chains. This is because the "small chain" is only as secure as the "big chain". Basically BTC miners can at any time point their pools at weak coins, perform double spend attacks and destroy those chains. POS doesn't suffer from this at all because the network difficulty is contained within it's own network. Only people genuinely invested in Blackcoin can attempt to fork it.

The reason to get involved with Blackcoin is that this network has been running securely for 6 years and it has never been forked! Furthermore there is software like BitHalo/BlackHalo and the new developments with More and such.

With less people staking, it does give an incentive to connect and stake because the higher reward. It's good to look at network weight. Still the volume needs to be there. Blackcoin needs to keep developing to stay competitive.
249  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Blackcoin Protocol [BLK] | Home of PoS 3.0 | No ICO | No Pre-mine on: April 30, 2019, 12:55:17 AM
Why would the protocol have a bias to new members? Are you saying this because the difficulty is low?
I'm making a reference to coin age.  People who have already staked alot do go behind somebody who has never staked, some people might think only the largest holders get to stake and continually block the small guy but thats not really the case.  When I see Proof of stake discussed on twitter vs other protocols on efficency and security, that seems to be the main criticism that ok its good on everything else but its too biased or it a system which favours the rich only.    I dont see the little guy mining Bitcoin anymore, I used to do it myself but it became a capital intensive process afaik so I do think the discussion is a bit off on that.    It seems that label is out there, better to discuss it then let it continue.  

Quote
would be nice if the client could allow more than 2 connections

Yes it does and there is more then one client that could be used to stake so you should be fine



Blackcoin POS 3.0 doesn't have Coinage as it was removed for obvious security reasons. There is no difference from new wallets to old ones.
250  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Blackcoin Protocol [BLK] | Home of PoS 3.0 | No ICO | No Pre-mine on: April 28, 2019, 10:25:06 AM
The protocol has a bias to new people who have never staked their BLK coins before and want to help confirm transactions.   The more the merrier and the better it works, its a very good system

Why would the protocol have a bias to new members? Are you saying this because the difficulty is low?
251  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 26, 2019, 06:54:14 AM
Questions about the exchange listings: Has Bittrex indicated one way or the other how they feel about the peg?  Does OKex listing Bitbay in a few days imply that they will implement the peg when it is ready?

So far we do have exchanges that are showing a lot of interest. Oex did say they would do it. However it's a good amount of code so they need to be ready to work with our devs at the moment. We cross that bridge after the final tests of the demo.
252  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 25, 2019, 07:08:28 PM
True exchanges don't always last,but clearly Bitbay the exchange is not going anywhere. They've been around as long you and seem to be one of the bigger exchanges in Europe (or were until they moved to crypto friendly Malta last year). Coinmarketcap says they are doing some 10 million in daily volume. Considering that it's hard to see them going belly up and it seems unrealistic to wait and hope for that to happen. They have a logo that is sort of similar to ours and a Google search for Bitbay has them showing up in the number one spot and Bitbay.market showing up 5th. That has to be hurting us as a project in terms of being discovered. It's understandable that rebranding is not in the budget at the moment but I think it's something that needs to be seriously considered as some point down the road, especially as when the project is more ready for prime time. There are several examples of coins that really took off after a rebrand. For example, Antshares gave up their cartoony ant logo, rebranded to Neo and that's when the project really started taking off. Personally I don't think BitHalo would be a good choice, but nothing else is springing to my mind either at this time. Perhaps when you are ready you could see if someone in the community has a good idea. It could literally be anything as long as it's you unique and somewhat catchy. Think about Etsy, that name would have brought nothing to mind before it existed, but now it's a household name because it's the catchy name of a very useful site and successful....

More client issues: So I download and installed the client, imported my wallet and the blockchain has been synchronizing for the last week is finally at 100% today. Problem is I see nothing in the marketplace, it is empty. Are there things for sale in the marketplace and I just can't see them? What's the problem?

The market is empty because people are testing the demo of the web based market instead. I suppose the decentralized market is for people who take their privacy very seriously and want to do business with the software which has got to be one of the most secure ways to do business around.

As for names, we don't really have the funds to rebrand right now. If we are forced to take small exchanges for the peg then it might make sense to fork with two brands. Moving the team to the new one but keep the exchange listings 1:1 copy to the new chain. BitHalo was meant to be an escrow name, branded specifically for "honor amongst thieves" being able to force honesty. It was also a cobranding name to be able to put a Halo on any project to make it righteous. So I'm not sure it's the name to use on a rebrand but maybe.

If a name comes along that we all agree is incredible then we can consider it more strongly but so far there has been nothing else.
253  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 25, 2019, 09:17:33 AM
I've seen two post in this thread recently by people confusing our Bitbay for the Bitbay exchange. I also just watched a youtube video with one of the Bitbay devs and the host mentioned that he originally thought Bitbay was the polish exchange until he really dug in and figured out it was actually a coin/decentralized market with the same name. Is the any plan that will be implemented down the road to address this at any point? Clearly it causes confusion as evidenced by customers of the exchange posting on this thread and who knows how many crypto enthusiasts attempted to check out Bitbay via Google and ended up at the exchange or looking at the exchanges twitter. Bitbay is a cool name, but it seems like a unique name might be the way to go in the long run maybe. Just wondering...

Well exchanges don't always last. I suppose we could always rebrand as BitHalo which started it all however that is a software solution that was supposed to be cross-platform for the escrow service and was branded that way. We have discussed other names but honestly nothing springs to mind. Besides, success is the best revenge and it would be nice that it happens with the BitBay name after all we went through. We existed at the same time as the exchange so it is a funny coincidence. I never really understood why they chose that name for an exchange since it's not what I think of when I hear the name. Plus there is the cost of rebranding which is beyond the scope of our budget at the time. Perhaps the peg fork will either force our hand (to keep exchange listings) or bring the funds to have a more serious convo on that subject.
254  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 24, 2019, 09:20:38 PM
Is there any news about the upcoming crypto debit cards? I want to order one for testing but there is no official announcement, only some tweets.

You might be confusing Bitbay currency with the exchange.
255  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 24, 2019, 12:01:38 AM
@shaydinblue - Great to have you on board!  Try using Google Chrome for your download; I have never had any problems using it.

Again, because it's so awesome and just posted yesterday (opening up of the Chinese & East Asian Markets!!!) - this is for those who are paying attention and can buy BAY at 1 (ONE) Friggin' Cent before it starts to dramatically go up - whoever sells now is out of their mind with so much going on (The Peg, The Marketplace, OEX, etc.) https://bitbay.market/decentralized-marketplace:

LOL the dreaming continues..........same shit for years lol, sigh.

Sure, then use some testnet BTC and try and break the peg. It's hovering around 6 dollars.

https://dynamicpeg.com/

What's even funnier is you have nothing better to do than come here year after year. Remember when BitBay hit 45 cents? Only 450 times price increase over 4 years.  Roll Eyes
256  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 19, 2019, 07:43:23 PM
@dzimbeck - Thank for the help, I got the client working. The only thing i did differently was run the exe file as an Administrator. It's syncing, at 40% after a two days... I'm looking forward to seeing the client marketplace in action, but glad you guys are working are developing the web market, as I think that's going to be where it's at in terms of mass adoption. Not a lot of people I know (even the really slightly techy ones) are going to be willing to wait for the client to sync after installing and then keep it running all the time just to keep everything up to date, especially if they are only trying to buy something or browse the market occasionally... Overall, Bitbay has a very bright future considering the power of the free, trustless market and the dynamic peg combined. Looking forward to seeing everything come together and beginning to be used.

A few questions I did have: On the client there is a warning: "Do not post illegal content to the market or you may get blocked."
I can understand Bitbay not wanting to turn into a decentralized, trustless silk road-type dark market, but who is the authority that gets to determine what constitutes "illegal content". Bitbay is a global decentralized market, so how can any local standards be applied to determine what is illegal and what isn't when each country/state/county/etc... has completely different standards? Technically, isn't whoever determines whether content is legal or not and does the blocking a central authority? Who is that authority for Bitbay? How can anything truly be considered decentralize with a central authority involved?

The users are the ones who self-moderate (they can flag orders) and they can share a moderation key. It's their own responsibility to respect the request. Because it is peer to peer and decentralized similar to the internet, it's not really possible to know what is going on in every corner of the internet. If users didn't respect the request it would have made the job of development harder. However there isn't really an authority. Instead users themselves can volunteer to try and keep the markets they are aware of within the community guidelines. And you are correct in saying laws vary from place to place and thus it's up to the peer to be aware of this and perhaps even reflect this in their offer (only taking clients from X country).

Also to respond to your other point that nobody wants to sync to use markets. The markets are based on Bitmessage so there is no syncing per se. However there is a delay for seeing orders. Also because this is a tool without servers and resistant to censorship, this will be relevant to anyone who is hard core about having their sovereignty and privacy which is something that I think web based markets won't be as good at doing even if the servers are somewhat decentralized. It will always be here as long as there is internet and open source even in 100 years as a tool to defend basic human liberties.
257  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 18, 2019, 01:50:40 AM
@dzimbeck - Thanks for the detailed answers. Awesome that Bitbay is thinking about finding other ways to deal with spam other than fees. I was not aware that the downloadable client was even more feature packed than the web market, that's excellent. When I first got into BitBay I attempted to download and install the client on my Windows 10 machine, but kept getting a reoccurring OpenSSL error that I couldn't figure out despite a moderate amount of looking for a solution on the BitBay forums. Around that time I took a break from crypto for a while so I never did find the solution and actually get the client working on my computer. When I returned from my break the web market was being rolled out, so I just went straight for that and as I said I am very impressed. I am going to try to download and install the client again, hoping that OpenSSL error has been fixed and I can install and check out the client. This is great project and you are doing a great job leading it.

@BitBayDoc - Thanks for the answers. I know the bad actor scenario I brought up is highly unlikely, was just wondering what would happen if someone tried it. Seems like everything has been well thought out and planned for. BitBay is going to be amazing...

The openssl prompt might have to do with BitMHalo (Bitmessage) not starting. The problem might be that you tried to install to Program Files or a directory with lower administrator privelages. Just install to C:\BitBay. Also it could be anti-virus interfering with peer to peer software. In that case, disable it. The desktop client has a "wall of features" that you can sift through at this link:

https://bitbay.market/wall-of-features

All of those are complete, the entire software is complete. We are simply working on a web version and the peg exchange demo to help exchanges understand all the code required to run it.
258  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 17, 2019, 08:10:50 AM
I own a screen printing business and listed some shirts on the market place. I am very impressed with the marketplace and it makes me excited to be invested and now involved in Bitbay (technically I'm a Bitbay merchant, right). I'm also invested in another decentralized marketplace crytpo and Bitbay is light years ahead of that project. I think the future is very bright for Bitbay...

I have a question or two about the market itself. If someone places an order with me, will there be an opportunity for them to specify what size shirt they want or what color if there are color variations? Can the buyer converse with me once they place the order? It's hard to tell what happens when an order is placed until someone places one with me.

Another question: Right now there is currently no fee to list an item. Will this always be the case or is there a plan to add a fee? It seems like some sort of fee will be necessary to deter spammy/excessive posts. Just wondering...


Another thought: The double deposit escrow is a really cool idea to get two parties who know nothing about each other to trust each other in order to conduct business and transact. Both parties have to put some skin in the game so it's in their best interest to make sure the transaction goes smoothly. It's design to keep everybody honest, protect both parties and eliminate bad actors. But what's to prevent someone from abusing this system to drive their competition out of business, similar to the way Amazon sells things at loss sometimes until their target competitor has to throw in the towel.

For example what if a large/wealthy merchant placed a substantial dollar amount worth of orders with a smaller/less wealthy competitor, there by locking up a bunch of Bay from both parties in a series of double deposit escrow contracts. The small/less wealthy merchant packages up the orders and sends them out, thinking he's going to make a bunch of money. When the evil wealthy merchant receives the goods, he disputes some arbitrary thing about the order and refuses to release the locked up Bay from the double deposit escrow contract, screwing the smaller merchant. Yes the larger/wealthy merchant would lose money in this case, but they are willing to take the hit in order to cripple their competition, because it would benefit them more in the long run. The smaller/less wealthy merchant would take a big hit, losing the Bay they locked up in the contract and the product/goods that they sent to bad actor. If a really large/wealthy merchant did this sort of attack on a smaller competitor enough, couldn't they essentially use the double deposit escrow system to pay to put their competition out of business? I know that this is an unlikely scenario and doesn't make a lot of sense, but capitalism is strange and sometimes makes no sense. If Amazon is willing to sell things at a loss to kill off the competition, it seems feasible that a large merchant might be willing to eternally lock up some Bay in some contracts to eliminate a smaller competing merchant by locking up all of his working capital in the same contracts, or am I just overly pessimistic about the spirit of capitalism?


I know the market is not complete yet and there are probably many more features that will be added. Is there someplace to give feedback about he market and see what feedback others have given? Looking forward to seeing the market progress...



On the markets client you download you can absolutely sort out details of the deal with the client through the messaging system. On the online markets I'm sure a similar feature is intended and that market will also be decentralized. There is no reason to ever charge fees. I will absolutely never endorse this. There was a few different anti-spam methods laid out in my specifications. The first is simply requiring progressively higher POW the more orders you post (each time doubling it) or simply limiting the IP address if they appear to spam. Another option is forcing a timelocked payment to yourself so that can make a user only temporarily have to tie up funds if they post too much. Currently in the downloadable client because it's Bitmessage and Bitmessage requires POW per kilobyte, no defense is required. On the web markets any of the above options is acceptable.

In the markets client, there is a feedback system. On the web markets a similar system will be used. Most importantly as pointed out by Doc you can track how many contracts a user blows up by looking at the blockchain and simply force them to dramatically increase their deposits the more they blow up contracts. If some competition is very wealthy and tries this there is a saying that goes "a fool and his money will soon be parted". The idea since the beginning was always to transition society from a world run by liars to a world run by honest people. This transition no matter how slow, can start to happen with double deposit. Since this is a game that favors the honest party. So the liars may go down kicking and screaming, but they will eventually go down if they use this system.
259  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 13, 2019, 10:24:25 AM
Just got my first items from the webmarketplace

demo.bitbay.market




Awesome, markets are filling up nicely as well.
260  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BitBay OFFICIAL BITBAY Thread Smart Contracts Decentralized Markets Rolling Peg on: April 03, 2019, 03:03:02 AM
when you click on the individual items description on the web market place can everyone scroll down or is it just my machine that is making the scroll bar appear like it is frozen and i can only see a bit of the description. ... it well may be my machine since I use a tiny res mini laptop because I am always mobile and never anywhere suitable for a larger machine. Plus it's rather old.

Great to see some better things getting listed too.

I wonder for potential metals sellers where the market tracks up and down if one day in the future we could get some kind of kitco tracking bot and it moves their listing prices up and down on the market place ... so they could list their entire inventory on bitbay and the prices will track up and down as spot moves up and down? or is that not even possible once the selling process is initiated.

Nice to see bitbay moving up even against btc strongly today. Not many are.

The desktop software has price tracking. The web market doesn't however it's not so tough to add. It does need to be verified by individual peers and confirmed by end user to avoid mistakes. Also thanks for the feedback, it's good to report that kind of thing.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 ... 121 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!