Bitcoin Forum
May 24, 2024, 10:14:05 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Alternate cryptocurrencies / Tokens (Altcoins) / M1337.IO - DeFi Token Service With Exchangeable Utility Storage [Renounced] on: April 12, 2024, 06:50:09 AM
MOD MESSAGE: IF THIS IS IN THE WRONG SECTION, I APOLOGIZE IN ADVANCE, THANKS.


M1337 DeFi Token BTC

Powering, Expanding, and Scaling the 1337 Mushroom Ecosystem

Learn More : https://m1337.io/

Tokenomics

Contract
0x9c416AfD40E64b263143aB2F718Cc214b5434fbC

Liquidity Pool 100% Locked
100% of initial LP tokens were locked with Team Finance.
 


See on Team Finance
Contract Renounced
Ownership of the $M1337 smart contract has been renounced, ensuring no changes can ever be made to the contract.
See Transaction
Taxes
5% buy / 5% sell tax contributes to expansion of $M1337 ecosystem and providing staking rewards for token holders.
See Contract Code
Distribution


96% Liquidity Pools: Ensuring market stability and liquidity.

2% Marketing: Allocated for promotional efforts to scale.

2% Corporate: Retained by company in support of operations.
About Us


Since 2011, we have been quietly building, expanding, and acquiring cryptocurrency related platforms and services.

Our journey began with a vision to integrate blockchain technology into everyday financial transactions, making digital currency accessible and usable for all.

Over the years, we've expanded our horizons, acquiring and developing platforms that serve a multitude of financial needs across the globe.

Our commitment has led to the creation of a comprehensive portfolio of services, from exchange platforms that cater to both peer-to-peer and centralized trading, to pioneering global remittance solutions.

We've ventured into decentralized finance, offering loans that empower users worldwide.

At the heart of our operations lies the largest underground data center in the world, home of our hosting services and mining operation.

Join us as we continue to build, expand, and innovate. Together, we're not just participants in the crypto markets; we're shaping their future.
Our Ecosystem

The diverse portfolio of the $M1337 project includes everything from full service infrastructure hosting, enterprise mining operations, P2P cryptocurrency exchanges, CEX management, remittance services, crytpo loans, and more.

As of 2024, we began the aquisition and development of A.I. FinTech/DeFi projects order to accelerate the speed, efficiency, and profitability of all ecosystem operations.

Explore our ecosystem, become part of our journey, and grow along with us.
P2P Exchange
Secure, fast, and easy P2P crypto exchange marketplace.
Visit
Crypto Loans
Flexible, low interest crypto loan application service.
Visit
Infrastructure & Hosting
Full infrastructure hosting at the largest underground data center in the world.
Visit
View Full Portfolio
Roadmap
PHASE 1: Q1-2024
Launch of $M1337, integration of token into ecosystem.
PHASE 2: Q2-2024
Launch of staking & rewards dApp.
Rewards are NOT MLM, SECURITIES ARE REGULATED AND REPORTED.
COMMISSIONS AND FEED SCHEDULE EXPLAINING IT WILL BE PUBLISHED VERY SOON.
PHASE 3: Q3-2024
Expansion of portfolio through strategic acquisitions.
PHASE 4: Q4-2024
Global outreach campaigns for international expansion.
2  Economy / Exchanges / Re: 1337mushroom.exchange - Peer To Peer Crypto Currency Exchange [BETA TESTING] on: November 20, 2023, 02:44:23 AM
Thank you for your feedback, also thank you for everyone from this site especially who sent me recommendations im trying to implement every suggestion. https://1337mushroom.com/
3  Economy / Exchanges / Re: 1337mushroom.exchange - Peer To Peer Crypto Currency Exchange [BETA TESTING] on: October 01, 2023, 06:33:05 AM
Hello thank you for your supportive words, I really appreciate your feedback.

https://docs.sleep.finance/team-backgound

Sleep Finance Seamless Test Net, you were correct we were thinking in the same direction, that’s exactly what sleep is, onboarding and liquidity services, still patching up security and roll out, contact me for anything.
4  Economy / Exchanges / Re: 1337mushroom.exchange - Peer To Peer Crypto Currency Exchange [BETA TESTING] on: September 20, 2023, 08:00:13 PM
Thank you for the recommendations, will update the modifications. If you see anything else let me know thanks. I would like some help testing the escrow system im currently working on the code for the custody
5  Economy / Exchanges / 1337mushroom.exchange - Peer To Peer Crypto Currency Exchange [BETA TESTING] on: September 20, 2023, 08:09:04 AM
Hello,

how is everyone on bitcointalk doing?

I'm currently working on a peer to peer crypto exchange with some partners, looking for some full time traders, we can assist with private equity, to complete private regulated KYC transactions through a licensed MSB.

If you are interested please begin the registration process on our website and open a ticket / contact with us if you are interested.

https://1337mushroom.exchange/

We have a referral and trading shares through automated direct BTC payment. All fees are 1%.

Thank you for your interest.
6  Economy / Securities / Zeitgeist Digital Assets Exchange LLC - White Label Key Distributed Exchange on: October 29, 2021, 04:58:36 AM
Then of course you made it this far,

https://zdax.io

Z.D.A.X



Zeitgeist Digital Assets Exchange LLC / Cortanna Distributions LLC / ZIO INC. / FINCEN MSB LAUNCH 2021 SEC Nightly Reporting

Property Of Tunnul Inc, Tunnul Holdings, Renegade Mining LLC, Renegade Housing LLC, Kentucky Utilities Energy Co Operative

Downline Assist Pre Qualify To Receive 1 Free Bitcoin For MSB Partners



Code:
#!/bin/bash
# Setting up swap partition
echo '----------------------------------------'
echo -e 'SETTING UP SWAP PARTITION:'
echo '----------------------------------------'
sudo dd if=/dev/zero of=/swapfile bs=4M count=500
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon -s
echo '/swapfile swap swap defaults 10 10' >> /etc/fstab
sudo echo 20 >> /proc/sys/vm/swappiness
sudo echo vm.swappiness = 20 >> /etc/sysctl.conf
sleep 3
echo '----------------------------------------'
echo -e 'DISABLING IPV6:'
echo '----------------------------------------'
echo 'net.ipv6.conf.all.disable_ipv6 = 1' >> /etc/sysctl.conf
echo 'net.ipv6.conf.default.disable_ipv6 = 1' >> /etc/sysctl.conf
echo 'net.ipv6.conf.lo.disable_ipv6 = 1' >> /etc/sysctl.conf
sudo sysctl -p
sleep 3
echo '----------------------------------------'
echo -e 'VERIFYING OPENSSL VERSION:'
echo '----------------------------------------'
sudo apt-get -y update
sudo apt-get -y upgrade openssl libssl-dev
sudo apt-cache policy openssl libssl-dev
sleep 3
echo '----------------------------------------'
echo -e 'SECURING SHARED MEMORY:'
echo '----------------------------------------'
echo 'tmpfs     /run/shm    tmpfs     ro,noexec,nosuid        0       0' >> /etc/fstab
sudo mount -a
sleep 3
echo '----------------------------------------'
echo -e 'SECURING /tmp:'
echo '----------------------------------------'
sudo dd if=/dev/zero of=/usr/tmpDSK bs=1024 count=1024000
sudo mkfs.ext4 /usr/tmpDSK
sudo cp -avr /tmp /tmpbackup
#Mount the new /tmp partition, and set the right permissions.
sudo mount -t tmpfs -o loop,noexec,nosuid,rw /usr/tmpDSK /tmp
sudo chmod 1777 /tmp
#Copy the data from the backup folder, and remove the backup folder.
sudo cp -avr /tmpbackup/* /tmp/
sudo rm -rf /tmpbackup
#*/# Set the /tmp in the fbtab.
echo '/usr/tmpDSK /tmp tmpfs loop,nosuid,noexec,rw 0 0' >> /etc/fstab
#Test fstab entry.
sudo mount -a
sleep 3
echo '----------------------------------------'
echo -e 'SECURING /var/tmp:'
echo '----------------------------------------'
#create a symbolic link that makes /var/tmp point to /tmp.
sudo mv /var/tmp /var/tmpold
sudo ln -s /tmp /var/tmp
sudo cp -avr /var/tmpold/* /tmp/
#*/#security
sleep 3
echo '----------------------------------------'
echo -e 'SET SECURITY LIMITS:'
echo '----------------------------------------'
echo 'user1 hard nproc 100' >> /etc/security/limits.conf
sleep 3
echo '----------------------------------------'
echo -e 'SECURING SERVER AGAINST BASH VULNERABILITY:'
echo '----------------------------------------'
sudo apt-get -y update
sudo apt-get -y install --only-upgrade bash
echo -e '----------------------------------------'
echo -e 'UDATING PHP'
echo -e '----------------------------------------'
export LC_ALL=C
sudo apt-get --assume-yes update
sudo apt-get --assume-yes install jq vsftpd aptitude apache2-utils sqlite3 libsqlite3-dev python-dev gcc python-pip
sudo pip install --upgrade pip
wget https://pypi.python.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz
tar -xvzf pycrypto-2.6.1.tar.gz
cd pycrypto*
sudo python setup.py install
sleep 2
sudo service apache2 restart


make sure your VM is ready



Too many buyers, not enough bandwidth
We have a problem. There are too many buyers and not enough sellers to meet the demand caused by high dollar Bitcoin transactions. We are literally losing money every moment this is not solved. How did this happen? Easy. Our product - Bitcoin, became worth more than simple modes of transacting could support, but that means our clientele's worth increased as well. We simply grew to be too big, too quick, but the irony is that Bitcoin still outgrew us. Where 5 bitcoins were once 5-10 thousand dollars, now they're worth upwards of 50,000 USD. And that is still a small transaction.
Today Bitcoin’s market cap is 187,172,052,642.74 with an average of around 350,000 transactions per day. LocalBitcoins, a popular trading site, averages at around 50-60 million bitcoin traded monthly. As of March 25, 2019, Bitcoin was worth 8k+ when the daily trading volume climbed over 11 billion.
The sheer size of Bitcoin has strained the existing financial infrastructures that support traders on LocalBitcoins leaving their trades victim to very large sell volumes with limited financial bandwidth. We are creating a financial pipeline backed by a bank that specializes in wire payments for Bitcoin purchases to increase the bandwidth to an appropriate size.
The average trading charge on LocalBitcoins is 5-15% per transaction, and collectively processes about 50 million in bitcoin transactions per month. The majority of LocalBitcoin traders are only able to process 1 out of 20 trades. And LocalBitcoins is only one site.
The opportunity for a banked backed cryptocurrency exchange has been limited until this year, the first Money Service Business accounts opened for the public, on January 1st, 2019.
But why aren’t other people doing it? In fact, they are. Robinhood is one of the more popular exchanges, but the volume is so big, that they would be peers rather than competition...
...but there must be a balance of 250k to open an MSB account. And compliance papers must be filled out. Then there’s the problem of an existing clientele. Well, we have two out of the three...
We have a low risk, short term proposal I think you will like.



Why? Because it's a deal I'd take. Most deals require risk. For the investor to lose possession of their money in exchange for a piece of the company or a large payout, but more times than not; instead they are rewarded with tax write off's and maybe shattered dreams…
But that's not what we're offering. We need cash. Institutional cash. Cash that won’t be touched. In fact, we want it to just sit in our account. Doing absolutely nothing, but saying, yep, I'm here, 250k's worth of a balance. What does this do for us? It allows us to transact Bitcoin. In larger volumes. Faster returns. And in control of vastly larger pools of Bitcoins. It allows us to WAKE up our clientele and recapture what our smaller transactions have lost. All of this is possible, without having to touch the initially deposited 250k. In fact, we believe we will sustain the 250k balance necessary to stay open, within 2 months and be able to return the 250k back to our depositor.
Recognizing this bottleneck in the bitcoin supply chain, ZDA, Zeitgeist Digital Assets Exchange has worked diligently, seeking accredited banking institutions, who support cryptocurrency. Our platform will uniquely handle transactions on a massive scale and will move large dWhat we are asking is for you to deposit 250k into our business account, and we, in return, will write a contract that instates you as a temporary member of our company, and grants you access to the business account your money is parked in. Literally allowing you to move money from one account with your name on it into another. In exchange for this consideration, our company will profit share 25% of our net earnings, beginning the moment we transfer money back into your account.
After the money has cleared in your account, we convert your status from a member to a beneficiary. 25% of the net of all of our company's earnings for a 6-month period paid to an entity of your choice. Understand, we are being VERY conservative by saying it could take 2 months. In fact, it could be much faster, which means, the possibility to make a large amount in a relatively short time.
If we haven’t produced a large enough return in 6 months to release the 250k back into your personal or business account, we will close shop or find an alternative.
Your deposit allows our volume's buy-sell platform to perform larger transactions. Accept large deposits of money, and wire it, to receive Bitcoin. Backed through a business account. We make money off of the exchange, not the volatility.
AN OVERVIEW OF HOW WE MAKE MONEY

Everything in the social order of life begins with relationships. There’s a hierarchy to them, a mode of operations. In business, it’s no different. People are paid to act as buffers to offset the workload that stockpiles of assets can manifest. That management offset is paid for in the Bitcoin space by transaction fees to intermediaries, such as The Zeitgeist Exchange. We make money by funneling lots of small transactions into larger transactions in order to purchase at greater volumes for lower rates, and by doing so, we create a reliable bridge from large pools of Bitcoin to the everyday trader.

One might ask, why wouldn’t these large transactions simply contact the main suppliers? The answer is, sometimes, actually, a lot of times, these large transactions may be one-offs; real estate deals, vintage cars, collector art to name a few. With no real history of buying or selling on a daily rate. These large deposits of Bitcoin depend on consistency and limited access for security. They are asset managers. We are transaction managers. Where they make money on leverage, we make money on flow.
Step 1. Assembly

How it begins. We draw up a simple but understood performance-based contract where each step is spelled out in clean, well-defined terms, with clear timelines. Our restructure should take no more than 3 business days.

250k buys 25% of our company.
We amend the company to reflect ownership.
We submit paperwork to Signature bank, naming you as one of our account signers
You transfer 250k into our Signature MSB account.
We convert our trader’s LocalBitcoin account into our MSB account.

...and off to the races we go!
Step 2. Broadcast

Within 12 hours of deposit, we go live and broadcast the ability to trade in volumes of 5-50k USD worth of Bitcoin. We place ads on multiple exchanges and close all outstanding open orders.
On Local Bitcoins and most OTC (over the counter) trades, a fee of 5-15% is usually added per BTC transaction. Our standard operating procedures require a stringent KYC and AML policy, on each transaction. Once the buyer is approved, they must wire funds into our Signature account, including our fee. The usual transaction on LocalBitcoins ranges from 2-4 hours.
Here is an example of our deal flow:
Our buyer wires a deposit for 5 Bitcoins, they pay market value, plus our 5% fee, which is substantially lower than most current traders.
We give them an estimated time for us to convert USD into Bitcoin - 4 hours
If Bitcoin was listed at a market value of 10k, and the entire value of the transaction was 50k. The client would add an additional 2,500, making the entire wire total 52.5k USD,
We transfer the profit into our business account.
We place an international wire to our Switzerland wholesale partner who releases 5 Bitcoin for 50,000 back into LocalBitcoin wallet.
We transfer Bitcoins back into our client's wallet.
The entire transaction should take less than 60 minutes, and in most cases can be resolved within 15 minutes.
Our goal is to process close to 60 trades a day and never hold BTC longer than 30 minutes to mitigate volatility.
Which if the above were used as an average; it could net us, 150k in one day.
Step 3. Profit
After we reach 550k of operational cash, we wire the initially deposited 250k back into your account and dissolve your 25% ownership, and 25% net profit share begins.

If there were intermediaries involved that brought this deal to the table, we award them 5% of the net profit for 6 months, beginning on the day the initial deposit is refunded.

Profit sharing a total of 30%. Without ever using the 250k.

STEP 4: Growth

Once we reach ONE MILLION in our account, which should be relatively swift, we submit our balance sheet and our volume daily wire capacity to other large sale suppliers.

We calculate the daily supply and offset percentage buys.

The goal is to eventually be able to lower our rates more and increase our volume with repeat customers; User retention is profit retention.
STEP 5: FUTURE

Being at the beginning with us, you will know our growth. If after you reach the end of your 6 months and decide you need more action, we would be open to collaborate and participate in various ways to help make the money we made you, make more!
igital assets, backed by a large financial institutions.

100% Funded. Funding Is Closed But Platform Will Launch Soon.




FINCEN Registered Exchange Platform - US
EU [European Financial Services Registration , Switzerland, Netherlands, Malta Financial Service]

IRS Filings SEC Documentation:
Phone Support Text: 859 410 9229
Phont Support Voice:602 563 5560
MSB Registered Las Vegas ,Nevada
https://drive.google.com/drive/u/0/folders/1TJr6JCO-wa6SYB5-qn_elb2SKnICWAZT
7  Other / Politics & Society / Re: Proof The Dominion Voting System Was Hacked on: September 14, 2021, 04:27:13 AM
If you try to hold them "the deep state" accountable at this point, they will literally just try and kill you.

We are talking complete denial of financial services after committing 1000 acts of fraud.

I went ahead and posted it to steemit as well:

https://steemit.com/dominion/@jedgarhoover1337/proof-the-dominion-voting-system-was-hacked
8  Other / Politics & Society / Proof The Dominion Voting System Was Hacked on: September 14, 2021, 02:15:41 AM
Since my first threat was deleted.

https://www.youtube.com/watch?v=tA7spvRer2w

Proof The Dominion Voting System Was hacked (Google Drive Below)

https://drive.google.com/drive/u/1/folders/1TJr6JCO-wa6SYB5-qn_elb2SKnICWAZT

If you don't want me to destroy half the market overnight, better watch it when you ban your creator..
9  Other / Off-topic / Re: The Curious Case of Brad Burns on: January 10, 2021, 04:34:32 AM
https://youtu.be/_ZHbrzVYte0

Sorry I was gone for a while I fell into a time space continuum where I could see my Bitcoin mine from space I just now came back but I just wanted to remind you.

My Marketing Efforts Dominated Your Face

10 Years Later



10  Other / Off-topic / Re: The Curious Case of Brad Burns on: January 12, 2020, 07:52:05 PM
Craig Wright is NOT Satoshi.
11  Economy / Auctions / Re: Advertise on this forum - Round 294 on: December 18, 2019, 07:47:57 PM
I would like to bid, I sent a PM waiting on your approval before bidding.
12  Economy / Securities / Re: Investors Needed For Massive Cloud CDN Cluster in Chicago on: January 10, 2019, 02:50:25 AM
What happened to udax? I’m sure any serious potential investor would like to know about your other ventures.

This is a very GREAT question, I was hired (never paid) by the person in charge of the name and domain name to build a working exchange platform, this being a close business partner that ultimately decided once the website generated over $108,000 in successful revenue that he would just change the domain name away from my servers and discontinue me the ability to process orders and transactions on the site I BUILT because he was too much of a cry baby to pucker up and kiss the fed.
 
I even registered the exchange with FINCEN (circa 2016) the financial crimes enforcement network. I kept backup copies of the sites I built and made sure I collected all the financial data accordingly and put it in a place that was safe. At this time I ceased all business with this person and pursued working with other people who "actually had financial resources to accomplish this".

50 state bonds were needed and there was no way this person was going to provide the liquidity or the real estate to back up the bond so I bounced.

On top of this, the functionality of a self service exchange was needed so that after a client passed the KYC/AML process they could deal with their crypto currency of choice on their own report.

As of writing this and spending a ridiculous amount of time coding and testing, we are getting close to a beta that we can publicly test however it's currently a process that requires liquidity.

The capital I'm looking for helps us A. pay for the servers for a year and B. helps us pay our legal team to qualify and register the bitcoin exchange in the US for people to use.

Some of the staff associated with speeding this process along are members of existing massive financial systems which I can't name until after an investor signs an NDA.

So as you can imagine, it's a bit complicated, but not lawfully doable. I have invested most of my BTC proceeds into developing and launching this process.

More information is available by request, please by all means fire away your questions if you have any.

Our law team also takes Bitcoin, so the investors have no need to pay me anything directly. They will ultimately watch us go to work right away.

The target is zdax.io, it's on a block of 255 IPV4's, ready to expand into JBOD's etc.

Dubbed: Zeitgeist Digital Assets Exchange LLC

Investment Covers:

12 X Dual E5, 64GB RAM, IP Pooling Similar to the current machine Backups, Management, Hands and Eyes
(For novice techs: It's basically A MASSIVE SETUP OF  ***KVM Virtualization*** )
Legal Fees For Launch

After everything is correctly registered, there is 15,400,867 USD to collect at fair percentage sitting on the system right now.

This helps me settle accounts receivables and repay some smaller existing investors. Legal Fees and Servers are expensive.

After consulting with the SEC's criminal investigation unit to understand the ramifications of employing independent brokers they broke down the requirements to employ staff around this exchange so the plan is to register with the SEC.

We have a tier 1 credit card processing system available to us underwritten for our bank with verified by VISA and MASTERCARD secure code fraud protection passing industry standards. (More specifically middle ware designed by some of the best programmers qualified for these installations of processing.)
13  Economy / Securities / Investors Needed For Massive Cloud CDN Cluster in Chicago on: January 08, 2019, 06:08:41 AM
Hello Bitcointalk,





Before I get started asking for equity I'd like to add a short background on what I do.

I consider myself a Level III Server Engineer, I'm a tech more specifically for SuperMicro servers at a large data center in Chicago that has a long list of rep, I cant disclose their info unless the investors are serious but essentially I have built a massive Cloud CDN Supermicro server cluster in Chicago.

That being said the electricity and connection and rent is extremely expensive, however the compensation from clients attempting to purchase systems like this is very lucrative. This is why I'm posting this here.

Now that's great Blackhat has a cloud CDN cluster and that sounds super boring and these are already is ready supply around the interwebs..

The Pitch:


So what's the real reason behind having this massive Cloud CDN? That's right you guessed it, it's a massive deployment system for private block chains and it's a coin spawner, I've spent a long while with my dev team building basically the equivalent of a private coin factory and in order for these private block chains to thrive I had to build a massive Cloud CDN to allocate enough resources to power the blockchain system we built.



How are you going to pay us back Mr. Blackhat?

Well I plan on paying everyone back literally almost immediately, through boring state and federal contracts I already have ready for people who want to use the boring regular private cloud systems, but it's more crypto oriented than that as it's got a massive cloud blockchain function that is EXTREMELY useful for the community.

Please ask me any questions you may have. The data center does take Bitcoin but they need private equity investments to "keep the servers online" long enough to call up the clients and have them cut a check.


What is needed from investors:

I am currently looking to raise $15,000-$25,000 to proverbially "light the fire" in the data center to add all the necessary resources to download $250,000+ contracts. Then use the Cloud CDN system to launch the private blockchain system we have been working on for years. The servers are already installed sitting there ready to turn on with all the software pre-configured to do all of what I'm talking about and this money will ensure that the servers stay online for over a year creating massive revenue for everyone involved. (NOT MLM, NO SCAM, WILL PROVIDE TAX RETURNS, BANK STATEMENTS, AOC & Bonding Information)

My LBC Account: https://localbitcoins.com/accounts/profile/blackhatespeed/
(So you know where my skin is)

Please contact me through my account contact information if you are interested in getting your hands dirty, this one is going to be juicy.
I'm looking into some things sort of like second market to allocate investors repayment, we are also building 2PH mines and have struck deals with some mega large power companies drawing massive discounts on the price of electricity under 3 cents kwh.

(The picture above is our proprietary design running Bitmain @ 2PHs and it's connected directly to a sub station across the street, it's almost complete, that being said I'm attempting to gather up the private equity to build 15-30 more of them to connect to other sub stations.)
14  Economy / Computer hardware / Re: [FS] Custom Built GPU Mining Rigs 6,8,12,19 GPU Options - Pre Order on: January 20, 2018, 05:59:38 AM


I'm building everyone's current orders, if you need more machines please know it's going to be about 2-3 weeks before we have all our parts in stock for future orders, so please place order soon.

Text/Call me if you need me. Thanks for your business.
15  Bitcoin / Bitcoin Discussion / Re: USI TECH Looking to be a huge Ponzi MLM TOKEN ICO SCAM An Insiders View on: January 16, 2018, 04:08:25 AM
Well today USI deleted all of the wallets for US customers, I'm not sure of what their motives are behind any of this but you can bet if I was the director I would be scared shit less right now.

This is some BS response I received today from the "Director":

Quote
I wanted to share this as I think it says a lot even with the broken English of Ralf, in case you haven't seen the message in other groups today.

Naturally everyone is all fine when things are going smooth. But when there’s a bump (in this case a large road block) in the road it’s a time to be level headed, calm and rally together.

One of the things I’ve always liked is the founders are at the forefront of this company and I think that will continue into the future.

Personal Message From Ralf Gold:- ‘’Sorry guys, I was traveling and just saw all this now.
I think it's pretty easy.
When you have a company with moreless 800.000 partners/clients in more then 70 countrys and your lawyers say to you are very endangered in two countrys (USA and Canda) and that you must stop to work there at the moment so they can see what is to do.
You will stop in this two countrys to protect the whole clients community or not?
You will do what your lawyers recommend you or not?

It's better to risk all or better to stop 15% to have time that your lawyers work on it?

Next step.

Then you go to communicate to this 15% that the lawyers are working to see what is to do, right?

Do you think this is the right way to protect your company and your clients?

Other thing.
Normaly the heads who have build the clients and partners go and wait to talk with you to know what exactly is going on and why, to talk after this with his clients and partners, right?

Because they know and believe that you (you are the boss) are doing the things to help and to protect, right?

This is how it must work, right?

What I am seeing is that a lot of the heads and partners are doing exactly the contrary and risk to destroy everything what was build in the last 14 month.

This is what I dont understand.

When everything is running nice everybody is here to show that he are a part of this company.
When something come what needs to be handled professionally and on a right business way you see that the half of the heads and "TOP GUYS" go against the company and talk a lot of lies.
This is something what I can NEVER understand!!!

Sorry good ladys and gentlemens for this text and my bad English, but this was something what I had to get rid of.’’

So he's telling us he's going to just "get rid" of all our money? After the company tells us stupid shit like delete all the internet marketing they were doing for this software when the only reason this company had any money was because of it.
Acting like "oh I just now saw the fact that half a million people basically got robbed by my company"

Is this smoke and mirrors? Only time will tell.
16  Bitcoin / Bitcoin Discussion / Re: USI TECH Creating More Futures Wealth Than God & Mining Expansions on: December 14, 2017, 08:48:02 PM

USI Tech pulling off some numbers eh?
17  Bitcoin / Bitcoin Discussion / Re: USI TECH Looking to be a huge Ponzi MLM TOKEN ICO SCAM An Insiders View on: December 05, 2017, 08:41:55 PM
Well, I have to say after talking to some senior members and staff USI has paid me back every penny I'm owed in commission I just wish they would have put the white paper before the token, but the token is starting to make more sense, and from the 500+ members I have signed up everyone is getting paid. Regulation seems to be going through for them and supposedly they have invested massive amounts of capital in mining, BTC and ALT coins, so for now everything is without hiccup minus the phone app, but Payza is back so that's more re-assurance. I'm still a bit on the fence but if the creators can pull it off by mining out a profit for the user base then this could get very interesting.
18  Economy / Computer hardware / [FS] Custom Built GPU Mining Rigs 6,8,12,19 GPU Options - Pre Order on: November 27, 2017, 12:51:07 PM
BTC Universal Digital Assets Exchange Introduction: BTC

UDAX is a cryptocurrency exchange firm that procures its own cryptocurrency mining equipment. We are a team of dedicated engineers who have united in the crypto economy to build mining products and services for a market that is virtually untapped. In 2013, we began with limited resources in a small warehouse but have since grown our operation and relocated in a geocooled facility with industrial power and telecom technology. With years of R&D and experience under our belt, we continue to strive to provide cutting edge mining products and cryptocurrency exchange software for our clients worldwide.

BTC Working Message:

Hello friends of Bitcointalk, I've been working on building custom GPU mining rigs for the last year or so, so I wanted to finally post all the information streamlined in an easy to view/use fashion the following link contains information on our rigs, their hash rates and power draw & our warranty services information.

https://www.universaldax.com/mining-equipment

BTC Technical Specifications

All of our miners come standard with gold rated power supplies & state of the art GPU's to serve the maximum hash rate possible.

BTC Warranty Services

We warrant our miners with a standard 1 year warranty on all components we sell. Additional warranty services can be purchased within 30 days of the sale of the unit.

BTC Payment Options

We accept all payments for purchasing a miner, VISA, MC, AMEX, Bitcoin, Ethereum, and a load of alt coins as well as wire transfers and checks.

BTC 4 Stack able Options To Choose From

With our custom built mining systems you can choose from 4 different hash rates! Remember that these are open face stackable miners so you can stack them on top of each other for easy expansion of your operation.

BTC Earn Commission

Every mining rig & mining contract carries a 10% commission on affiliate sales, you can find your affiliate link for commissions under our affiliate section on your account.

BTC Proof Of Concept & Support:

We have currently built out every miner we sell and have tested our configurations thoroughly so that when you receive your mining rig it is as easy as hooking up a network connection and pressing one button to start it. We have live chat on our support desk to help you every step of the way.

If you have any questions please do not hesitate to drop us a line at our support desk. We can build custom quotes for you.



Frequently Asked Questions:

What wall outlet support does the miner have?

We currently support US and EU plugs, please specifiy at the time of purchase what plug you require.

How long will it take to generate a complete ROI with my miner?


It generally takes anywhere between 3-5 months to recieve full ROI on a mining purchase. This can vary greatly on the price of the coin you are mining and the difficuly it reaches as well as how much power your mining equipment draws.

How much power does a miner use?

Our miners come standard with 1-4 1800W Gold Rated Power Supplies, however at full speed it would only use about 1600-4800W of power per miner. The 6 GPU miners come with 1 PSU the 8 and 12 GPU miner comes with 2 PSUs, the 19 GPU model comes with 4 PSUs.

What if my mining rig breaks down or reduces hash rate?

In the event that you have problems with your miner you can contact our support desk which is open 24/7 to help you repair your miner. If we have to ship parts we will cover the return shipping of any defective products.

How long does it take for the miner to get shipped to my home or facility?

It usually takes anywhere between 1-3 weeks to deliver the miner to you, we ship UPS, FedEx & DHL depending on your location. All shipments are insured.

Is there a bulk discount for ordering multiple units?


If you are interested in ordering bulk units we can offer a discount on larger orders, please contact us for a quote and we will do our best to accommodate your bulk order.

What operating system does the miner run?

Linux.

What coins can I mine with the mining rig?

Currently you can mine Ethereum, SiaCoin, Pascal, Monero, Zcash & many others. We are currently only selling GPU mining equipment, so any coin you can mine with GPUs.



Contact Us: https://www.universaldax.com/finance/contact.php with any questions or suggestions, Thanks!
19  Bitcoin / Bitcoin Discussion / USI TECH Looking to be a huge Ponzi MLM TOKEN ICO SCAM An Insiders View on: November 07, 2017, 01:36:47 AM
Post Disclaimer:

I've invested and personally signed up over a million USD in accounts. I'm not someone who has just registered and is skeptical, I'm posting daily eye witness account information and tons of people have already contacted me that I signed up or didn't sign up, the account information I'm sharing is real and so is the BTC and the money associated. I'm going to post a clear timeline of events, account information and more, I'm not revealing anyone's names or personal information. I like many others jumped in head first to a system that's obviously now turning out to be a huge MLM scam. I am an experienced forex trader/ Bitcoin trader/miner/C programmer / Database Designer/ PHP/MySQL / Server Administrator etc.. I've been in BTC since 2009 when it started.

Timeline:

About 6 months ago I signed up for USI Tech and I have had a lot of people investing time and money and marketing into signing up as many people as possible, I never directed these people to do so (most of them) they just saw a very lucrative option in their “commission plan”.

I took tons of screenshots everyday for this very reason, at the time of writing this USI just had their 1 year anniversary. On November 1st USI did a lot of things without warning anyone, and when the people who have bought into their MLM scam find out about it they are going to be really pissed off. Another thing that is sketchy as hell is the token sale they just integrated into the website. Stating things like we will release the white paper once we sell the tokens? What the fuck? So your going to make us buy into your MLM scam just to see a white paper on why we are investing. Get out of crypto town!

Bullshit Commission Plan Updates (With No Warning):

For 6 months myself and hundreds of other members 400-500+ just re bought and re bought thinking we would make tons of money down the line and we bought into their commission plans before the November 1st update which consisted of an agency license or forex trading license which comes with an agency license anyway, now of which is all gone in the new “website update”.

Before The Website Update:

The commission plan prior to November 1st was you get 3 members to buy 12 packages, and pay 600 Euros and you unlock 12 levels of commission. Directs were 10%, and every level down to 7-8 was 3% after that it was 1%.

After the Website Update (November 1st):

On day 1 of the upgrade I knew things were about to seriously go wrong. Well, so far all they did was piss a bunch of people off and scare a bunch of people away, the ones who invested are now blowing me up wondering what's going on. Their new Uni Level plan blows, 90% of the old website is gone.
Levels 6-12 on my account are gone, more levels are missing from other people who I signed up as well. They didn't warn anyone about their new "website" or "Commission plan". They didn't tell anyone about their “token sale” until after the update. At the time of writing this the USI Tech iPhone and Android apps are now completely defunct AKA not working at all.

They changed the commission plan to make it to where you have to sign way more people up with “packages” to get the Uni Level commission they promised from day 1, so it's now literally 10 times harder to get Uni Level commission and you guessed it, I haven't seen a single satoshi of commission from those levels. To make matters worse my account balance has greatly decreased, my daily pay is half if not less of what it was before the update. I'm missing hundreds of registered members that were adding daily commission to my account and 7 days later absolutely no response from their “24/7 support”.

Keep in mind before their update I had almost 6000 Uni Level packages connected to my account, now my account quite literally reads 0. I was expecting to have 10,000 uni level commissions by the end of the year minimally.


Broker Accounts / Payment Options All Gone:

Now they have replaced the payment options for USI Tech with their new BitcoinByCredit system which charges users 10% for buying BTC with credit cards. Payza gone? (Red Flags) All the information on their supposed "trading bot" the download for people who bought the license (me) all gone. Tell me this why would a company that has it's main feature as "trading" remove everything about trading on their internal website?

Summary:

They should turn Registration off then and fix their website before allowing people to rebuy over lost BTC.
Instead they just keep taking new members for their obvious MLM scam.
Their entire organization is a MLM scam.
This Token Sale could be a huge exit strategy for them to rob everyone.

At the time of writing this my lifetime account balance is literally less than before the update and I'm missing coin, members, commission, and 90% of the old website is now gone from the new one.


Bottom Line:

The only thing that will save USI Tech from this is if they build an internal personal audit and submit all the documents to the government, install visible verifiable transparency, and pay everyone every cent owed. If this is not possible then they can do like every other failed ICO and get eaten by the wolves.

Update: 11/8/2017

Uni Level Is Now Fixed
Waiting On Next Moves From USI Tech, needs more integration with US Securities and Exchange Commission before it can get larger in my honest opinion.
How the laws work on this stuff is pretty simple.

Update: 12/5/2017

Well, I have to say after talking to some senior members and staff USI has paid me back every penny I'm owed in commission I just wish they would have put the white paper before the token, but the token is starting to make more sense (because of the massive rise in BTC prices), and from the 500+ members I have signed up everyone is getting paid. Regulation seems to be going through for them and supposedly they have invested massive amounts of capital in mining, BTC and ALT coins, so for now everything is without hiccup minus the phone app, but Payza is back so that's more re-assurance. I'm still a bit on the fence but if the creators can pull it off by mining out a profit for the user base then this could get very interesting.

Update: January 15th 2018
 USI Deletes all of the US and Canadian account balances.


20  Economy / Service Announcements / Re: 1337Mushroom.com - Largest Bitcoin Mine In The World - Green Energy on: November 09, 2016, 04:35:51 PM
Russian Federal Finance Administration built Emercoin silly goose, Russia banned bitcoin only temporarily to experiment and test functionality before they allowed mainstream use, not rushing into new technology and walking the code is typical for new technology. I added the address you can drive down there and take a look just be extremely careful around the property. There are open drainage ducts and stuff under the foundation don't walk on top either we were testing structural integrity with dynamite.
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!