Bitcoin Forum
May 25, 2024, 04:20:21 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 ... 94 »
121  Economy / Digital goods / Re: Looking for a bitcoin developer for a coin splitting script on: March 26, 2019, 04:03:44 PM
They have 0.5% fee ??
If I understand their concept right, you want to create a wallet, watch for incoming transactions and then split them into x other wallets based on percentage. Also you want a panel sort of, a place where you can monitor all that. I can do that for you but 50$ is not neary enough.
122  Economy / Digital goods / Re: Eckmar's Marketplace Script v2.0 [MULTI-COIN] [TOR] [DEMO] on: March 25, 2019, 11:17:40 PM
//reserved
123  Economy / Digital goods / Eckmar's Marketplace Script v2.0 [MULTI-COIN] [TOR] [DEMO] on: March 25, 2019, 11:17:28 PM
Eckmar's Marketplace Script v2.0

This is a complete rewrite of my old script: Eckmar's Marketplace Script. The two share some similarities (functional), but new version is written from scratch, meaning no code is shared between them.

About script

Marketplace v2.0 is also written in PHP with Laravel framework. Its using latest standards for encryption (like Sodium library) and security. Its made without use of JavaScript, so its optimized for TOR, but can also be ran normally like any other web app (as you can see on demo).

Requirements

  • VPS with at least 2GB of RAM
  • Daemon for each coin that is enabled on marketplace

Server requirements: (what software is needed on VPS)
  • PHP 7 (recommended and tested on 7.2)
  • SQL Database (MySQL,PostgreSQL, SQLite, SQL Server)
  • Elasticsearch (Search interface that will keep track of search records and provide great search performance)
  • Redis (Optional, but will greatly increase app performance )

Features

Categories
Category system is very dynamic. Categories can be nested indefinitely. Creating, deleting and editing of categories is handled in admin panel.

Detailed home page
There is placeholder text on the home page at the moment that will represent most important features of your marketplace.
On top of that, all users can see Top Vendors (Vendors with most sales), Latest Orders (Products of orders completed most recently, as well as order value, but no information about buyer or seller), Rising Vendors (Vendors with most sales in specified time frame, defaults to 7 days).
Official mirrors is place where you can specify on what other links your website can be reached.

Password reset
Password can be reseted with PGP Key added on account (more about PGP below) or with Mnemonic key provided during signup. Mnemonic key is shown only once and should be written down on paper. During signup it is hashed (bcrypt) instantly and only stored in operating memory for the short time during display after which is cleared from memory manually as addition to automatic PHP Garbage Collection.

PGP
Each user can add their on PGP key which is used for multiple features. Vendors must have PGP and 2FA enabled before they are allowed to upgrade from user to vendor status. If you have active PGP key you can reset your password with it or enable 2FA for your login. Each PGP key must be confirmed before is linked to account, and if you want to add new key you must first sign a message from the old one.
Messages can also be encrypted with user's PGP key if its present (this is not enforced, its user's choice).

2FA (Two-Factor Authentication)

If user has PGP key linked to their account, they can enable 2FA. If enabled, login to marketplace will be prevented unless randomly generated message is signed from the key.

Wishlist

Buyers do not need to save product links for later. On each product there is "Add to wishlist" button that can be used, and they are stored in user's personal list for later.

Vendors

Normal users cannot post products on Marketplace. In order to post products you must become vendor. Before you can upgrade you must have PGP key and 2FA Enabled in your profile. Vendor price can be set in marketplace config. Vendor can use any of the coins available to purchase vendor status. Out of each vendor sale, a percentage of sale value goes to marketplace addresses.

Vendor profile customization

Vendors are able to customize their profile with pre-defined profile backgrounds and short personal description.

Vendor levels and XP

Each new vendor starts at Level 0 and progresses further based on performance. XP and Amount of levels is dynamic and configurable. Multipliers determine how much XP is granted to/taken from vendors for each action. XP is granted/taken by formula: USDvalue*multiplier
Example:
     product_delivered multiplier is 20
     USD value of product is 100$
     When vendor successfully delivers product, he will receive 100*20=2000 XP
     This is example from experience config file:
Code:
    'multipliers' => [
        'product_delivered' => 10,
        'product_dispute_lost' =>20,
        // How much XP per star (given/taken based on feedback type)
        'feedback_per_star' => 2,
        // how much XP per USD value of transaction (given/taken based on feedback type)
        'feedback_per_usd' => 5,
    ]

Feedback

After each completed purchase, vendors are able to leave feedback. Feedback types are Positive, Neutral and Negative and they will affect vendor score as well as product score.

Multiple Coins

Probably the most important system is Coin System. Its completely dynamic, which means new coins can be added at any time. Standard version of marketplace comes with Bitcoin and Monero included. For each coin added, in marketplace config there can be set unlimited amount of marketplace addresses (used for receiving fees from purchases), and in case more than one address is present, address for receiving fee will be choosen randomly (for each purchase).

Product types
There are two product types. Physical and Digital products. Based on the type, different options are displayed during product creating and purchase.
Both Digital and Physical products support offers and custom units of measure (Item, kg, gram, piece ...). With offers, vendors can give discounts on purchase based on quantity. For example:
Price for 1 product is 100$
Price for 10 products is 90$
Price for 20+ products is 80$
Each of those is considered an offer and can be added/removed at any time.

Digital products support automatic delivery which is optional. If checked, autofill system is used. Each line in textarea is treated as single item and will be product's quantity. It will be instantly sent on user upon purchase.

Physical products have delivery options. Each delivery option consists of: Name, Price, Expected delivery duration, Minimum quantity for delivery, Maximum Quantity for delivery. Physical products can also include/exclude countries from shipping.

Markdown styling
Instead of just plain text, product description and rules support markdown styling. Every tag is supported except URL tag.

Purchasing

When user chooses to purchase any product, he is able to pay with any coin supported by market (and vendor, since vendors can choose which coins they want on each product). There is no wallets or anything similar. Users do not need to keep money on marketplace at all times. For each purchase random address is generated, and its used for that purchase only.

Escrow

Escrow is present on every purchase by default. Upon purchase, marketplace address is generated that will hold funds. If purchase is completed if its marked as delivered or dispute is resolved. If buyer is unhappy with purchase he can open dispute and potentially (based on admin's decision) get his money back. Upon purchase completion, based on result money will be sent from temporary purchase address to buyer/vendor and to one of the marketplace holding addresses.

Cart

If user wants to buy more than one product (maybe from different sellers too), they can add them all in a cart and then checkout only once.

Messages

Most important feature of messages is security. Marketplace uses latest algorithms and standards in Public Key Cryptography (like XChaCha20-Poly1305-IETF) to encrypt messages between users. Upon registration, Public and Private keys are created for each user. Based on user's password an encryption key is derived, and that key is used to encrypt Private key, while Public Key is exposed. When user A whats to send message to user B, a key exchange happens. User A encrypts message with User B's public key, and that message is stored in database. Only user B can read that message when he logs in and decrypts his messages with password. This system makes messages secure and unreadable by anyone, including marketplace administrator or basically anyone who can possibly get access to the database.

Messages are organized in conversations. Multiple conversations can be started at the same time.

Notifications

Users will get notifications for most actions that happen on marketplace regarding them. Some of the examples are: New message, Purchase status update (product sent, product delivered etc.), Vendor actions (Feedback) and so on.
They can be read in User Account Panel and deleted at any time.

Bitmessage

Marketplace can possibly connect to Bitmessage daemon. If connected, users can chose to add their Bitmessage addresses and get their notifications forwarded there. This means they will still get notifications even if they are not currently logged in, and they don't need to refresh anything.
Before being able to forward notifications, Bitmessage addresses must be confirmed first.

JavaScript Warning

Optional warning can be enabled in marketplace config. If visitor has JavaScript enabled, a message will be displayed notifying them about security issues.

Support

Users can open support tickets regarding any problem they encounter. Administrators/Moderators will see this tickets in admin panel and can reply, or close them.

Admin Panel

Most of the stuff happening on marketplace can be viewed directly on admin panel. Administrators can access every feature on admin panel.

Moderators
Modular permission system is currently supported, which means admins can give/take some access to moderators (For example, support staff can only answer tickets and resolve disputes, community manager can only send mass messages etc.). Currently supported features:

  • Index - Basic information
  • Categories - Add/Edit/Remove Categories
  • Mass Messages - Ability to send messages to users by marketplace (Can be filtered to user groups)
  • Users - View users, search, filter, and edit each user individually.
  • Products - View, search, filter by user, or edit product
  • Log - Activity log of all Administrators/Moderators inside Admin Panel Example:
Code:
User: eckmar Type: change Description: Administrator status taken from user Performed on: exampleUser123 Date: 2019-03-20 11:36:52
  • Bitmessage - Status of Bitmessage service (performs test), and view of marketplace bitmessage address
  • Disputes - View and resolve purchase disputes
  • Tickets - View and resolve support tickets
  • Purchases - List of all purchases
  • Vendor Purchases - List of vendor purchases

Supported coins

Marketplace currently supports these coins:

  • Bitcoin - Included in standard version
  • Monero - Included in standard version
  • Litecoin
  • DASH
  • PIVX
  • Verge
  • Bitcoin Cash

Installation

Marketplace installation instructions are included. These are not 100% copy paste but they do explain how must of the things work in detail.

Selling terms and conditions:
  • I'm selling only script, I won't help you install it,or whatever you want to do after you purchase it
  • I'm not responsible for anything you do with the files after the purchase
  • After purchase you cannot resell or share this script
  • Script is tested for bugs but In case you find any, or any error in code it will be fixed with no additional charge
  • I will not give you files first in any case. I don't care who you are, if you don't trust me we will use escrow
  • In case of escrow I will deal only with bitcointalk trusted escrow (You can find list here)
  • Price stated below is for one copy of the script, that means I intend to sell it multiple times. In case you want to be the only buyer please contact me


DEMO LINK

Current price is: 599$ in BTC equivalent (please note that this can be changed at any time)
SCRIPT IS NO LONGER FOR SALE
For this price, you get standard version of the marketplace with two coins (Bitcoin and Monero). If you want additional coins, they are charged separately.
Litecoin, DASH, PIVX are 50$ each, Verge is 60$ and Bitcoin Cash is 90$

Multi Currency Module
Default marketplace currency is USD (converted to crypto at the moment of purchase). This module allows user to select local currency in profile (EUR, GBP, JPY...) and every price on marketplace will be converted to that. This module is optional and priced at 100$

There is 100$ discount available for anyone who bought original script Eckmar's Marketplace Script
In order to apply for discount, you must sign a message from address that sent coins for purchase.

Contact details
  • Bitcointalk Private Message

124  Economy / Digital goods / Re: Sell ​​bitcoin mixer on: March 22, 2019, 09:34:34 PM
You correctly understood the mixer assembly

People use different mixers and the backend is not very important for them. All mixers provide the same service and never one of those who mix bitcoins in it doesn’t care about using its own script or third parties.
People decide to use a mixer because of its advertising and marketing.
I sell not just the main page and the script, I sell a fully working product from which you can earn and which you can develop. At the price of development.
How so? The backend is the part the user can’t see. Maybe the mixer is storing and logging every address that uses the mixer. If there are 2 backends (BestMixer and your mixer as an additional layer), he now has to care about 2 servers potentially logging everything they do + input and output.

From your post, I see that you don’t care whether or not the mixer is good or actually makes the transactions untraceable. Only that it had a “good” design and marketing. Not the kind of mixer I would use.


If you think that my mixer somewhere violates the anonymity of customers - please show me where. All information on the privacy rate indicated on the website is valid. We do not store or transmit any user data. We do not even use Google Analytics counters. Our product is really good and I am sure that it will find its application and success.

Well thats the point isn't it ? We can't see whether or not you are storing data on your backend. What are users are trying to say, if person is to use ANY mixer, a person must trust that they don't store information on their servers (something we cannot see from looking at pretty designs and google ads). Now in your case, you don't actually have a mixing service (code that is doing mixing), so you are using someone else's service to do the work for you. In this case, every single user has now to worry about 2 servers logging all info, or simply being breached and leaking data in any other way. I hope I've better explained to you what TryNinja said in the first place.

Taking all this into consideration, this site on sale is just pretty design with NO REAL FUNCTIONALITY. Its not worth 1000+ USD as it does not do anything. I think any Indian on freelancer.com can make something like this for like 150$ (just design and using someone's API).
125  Economy / Invites & Accounts / Re: selling WOW account lvl 374 BFA + 110 upgrade not used on: March 22, 2019, 09:25:24 PM
I don't want to trash your thread or accuse you of anything, this is just a warning to all buyers. Battle.net accounts can be recovered in minutes at every point after the sale by the seller if he simply sends any valid ID with same name and country as account name. Battle.net account trading should be avoided unless you trust the person completely.
126  Economy / Services / Re: Custom Name Bitcoin address provider only for 1$ on: March 22, 2019, 01:42:32 PM
There is free tool available already here:  Vanitygen: Vanity bitcoin address generator/miner [v0.22]
127  Bitcoin / Project Development / Re: A Decentralised platform for Translators! on: March 22, 2019, 10:13:12 AM
Looks interesting, but my question is, can it really do something better than Google Translate ? I mean with all the money and compute power google has, I doubt that someone can train the AI better than them.
128  Economy / Digital goods / Re: Eckmar's Marketplace and Auction Script [ESCROW FEATURES] [199$] [TOR] [DEMO] on: March 19, 2019, 12:54:13 PM
Still available for sale ! Send me a message if you have any questions !
129  Economy / Services / Re: Upgrade dropbox space to 18gb for lifetime on: March 18, 2019, 12:14:50 PM
Can you do better price than 20$ ?
130  Economy / Services / Re: Looking partner for creation own launchpad on: March 14, 2019, 03:09:43 PM
What do you need exacy ? Developer, investor, marketer ? And what is your role exactly ? How much do you pay, or you are looking to split potential profit ?

Just some of the questions that would really help someone if a person is looking to be your potential partner.
131  Other / New forum software / Re: What is wrong with the development of new software ? on: March 11, 2019, 12:00:25 PM
Would BTCT run on SMF 2.1? It is responsive, which is the main eye-catcher for mobile users.
It could. But it won’t.

theymos paid a considerable amount of money for the new forum software. There is no reasons to keep using SMF.

Honestly, new SMF is much better than new forum software that is still in developmet.
132  Bitcoin / Project Development / Re: How to Track Transactions via Magnum Notifier Bot on: March 07, 2019, 09:31:01 AM
I think it would be great if you can also add webhook functionality. What I mean exactly is give users ability to put their webhook url and your server would post data on the url on new tx.
133  Economy / Goods / Re: Pixel 2 xl and 3xl on: February 23, 2019, 11:21:54 AM
Where are you sending them from ? Are they unlocked ?

USA, Unlocked

Ah well, since I'm in EU shipping costs would make the deal unprofitable, otherwise I would take it... Anyways, good luck with sales !
134  Economy / Goods / Re: Pixel 2 xl and 3xl on: February 23, 2019, 10:47:54 AM
Where are you sending them from ? Are they unlocked ?
135  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: New Crypto Talk Website! on: February 22, 2019, 12:14:41 AM
UPDATE!!!  Forum has been completed and domain has been changed. We have added embedded Discord and Chatango to our site as well for users to choose their preference. Live Crypto prices has been added as well!

Honestly, Bitcointalk is running really old software, but your forum in comparison looks ancient. Maybe try to attract users by using latest software that makes user experience good ? (Search for NodeBB for example)


All the other hosted forums and even bitcoin talk has adds, mine does not have adds and also is fully customizeable. Colors ect....

I understand, but dude it looks like forum from 2002 not 2019. You said you pay 25$ a month or smth. Why ? Buy VPS for 5$ a month and install phpBB or smf or nodebb and enjoy better software at lower rate.
136  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: New Crypto Talk Website! on: February 21, 2019, 04:12:08 PM
UPDATE!!!  Forum has been completed and domain has been changed. We have added embedded Discord and Chatango to our site as well for users to choose their preference. Live Crypto prices has been added as well!

Honestly, Bitcointalk is running really old software, but your forum in comparison looks ancient. Maybe try to attract users by using latest software that makes user experience good ? (Search for NodeBB for example)
137  Economy / Services / Re: 🚀 Trading bot development on: February 19, 2019, 05:39:31 PM
Wrong section. As the name says this is only for "Project Development" and you are currently not developing any project that you would like to share with the community. You are offering your development services. Move this tread to Marketplace > Services.
138  Economy / Digital goods / Re: BitcoinRoot.com: Premium domain name available for purchase on: February 18, 2019, 01:01:19 AM
If you continue to lower the price this way, by some precise calculations I've decided this domain would be valuable in somewhere around 6.7598924 years (around that, wasn't able to calculate exact time precisely). So you can PM me around that time and I will purchase it Smiley

Now, all jokes aside, I would give like 50$ or smth for this one.
139  Other / New forum software / What is wrong with the development of new software ? on: February 10, 2019, 10:44:38 PM
I've been checking this section from time to time to see whats the progress on the new forum and I don't understand what's happening anymore. We can all see that a lot of money went to the project with no results whatsoever. Now, I'm looking at a situation as a web developer that's experienced in NodeJs (as I saw that new technologies was excuse for slow development before) and I don't understand why is development taking years ? I mean, when I was learning web development in high school years back the first thing you build on your own is blog and the next thing is forum.

Now, I know Bitcointalk has a lot of custom functionality but honestly can you say that anyone would need years to develop it ? There is not a single function that is considered "hard", just time consuming. A project like this in done in months of active development (1-2 developers). Now maybe we don't have the same understanding of active development ? I guess if you are paid to do a job you would be doing it for 6-7 hours every day (yeah you can't really code 8 hours straight).

Now with all this, can someone (preferably developer/s who work on new software) clarify what exactly is the problem with development ?
The funny thing is, they want new technologies like nodejs, redis etc but when they started development new tech of the time like AnguarJs is now outdated  Grin  Grin
140  Bitcoin / Project Development / Re: How do I develop my own Bitcoin/Cryptocurrency exchange or trade engine on: February 07, 2019, 05:53:52 PM
Looks like another Indian tech "firm" with single guy. Who exactly is part of this "team" ? What are their LinkedIn profiles ?
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 ... 94 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!