Pages:
Author

Topic: [ANN] ChipMixer.com - Bitcoin mixer / Bitcoin tumbler - mixing reinvented - page 78. (Read 92708 times)

hero member
Activity: 1386
Merit: 623
Maintain Social Distance, Stay safe.
The fact that I wrote 2 letters in the mail, first thing yesterday and wrote a personal message and while nichkto have not written anything, but here at least you answered and I think that will get a response from the administration, what did I do wrong. time ticks,1.5 days left Shocked Cry
As you have already sent email they will contact you back as soon as possible. I think they need time to response you as they might have busy and also you have not yet passed  24 hours. Yes, at the same time you have only a little time left so it is urgent to you.
OP’s first post was 3 days ago, not less than 24 hours ago. I’m sure he already got his answer since he didn’t post anything else (I’m sure he would be spamming the thread with new posts every day) and ChipMixer’s account logged in yesterday. Most people don’t actually update their posts when they get their problem fixed.
There are several people who comes here only to spamming. Those people who really needs help they do not try spamming they try to contact and wait for response. But spammer will try to post and even they may use multiple account for spamming purpose.
HCP
legendary
Activity: 2086
Merit: 4318
Very nifty scripts... Hopefully they help new ChipMixer users understand how their deposits will be broken down into the various chip sizes and possibly avoid some of the confusion that often seems to arise from ChipMixer's somewhat unique system.



~snip giant wall of text~
Well done guys!!!!! Wink Thanks!!!
In other news... Was it entirely necessary to requote the entire posts including all the code, just to say thanks?? Huh Roll Eyes

Someone with 696 posts ought to have learnt how to quote (and edit quotes) properly by now! Tongue
sr. member
Activity: 518
Merit: 250
legendary
Activity: 3038
Merit: 2166
Playgram - The Telegram Casino
May be someone can provide us a kind of "chipmixer calculator" ?

If someone hosts it I wouldn't mind doing that however, it's probably unnecessary...

[...]

I started off porting your script from Python to JavaScript (read: adding brackets and semicolons), but messed up somewhere along the way so I wrote a little jsfiddle from scratch (you can use it in the bottom right corner):

https://jsfiddle.net/Lk5u2d14/10/


Quote from: HTML
Code:

Enter Amount:




Quote from: JS
Code:
const input = document.getElementById("input");
const button = document.getElementById("button");
const output = document.getElementById("output");
const minChip = 0.001;
const chips = [minChip];
for (let i = 0; i < 20; i += 1) {
  const nextChip = chips[chips.length - 1] * 2;
  chips.push(nextChip);
}
const precision = 8;

button.onclick = function() {
  while (output.childNodes[0]) {
    output.removeChild(output.childNodes[0])
  }
  let amount = Number(input.value);
  while (amount >= minChip) {
    let maxIndex = chips.length - 1;
    while (chips[maxIndex] > amount) {
      maxIndex -= 1;
    }
    while (amount >= chips[maxIndex]) {
      amount -= chips[maxIndex];
      // fix rounding errors
      amount = Number.parseFloat(amount.toFixed(precision));
      const node = document.createElement("li");
      const text = document.createTextNode(chips[maxIndex]);
      node.appendChild(text);
      output.appendChild(node);
    }
  }
  const node = document.createElement("li");
  const text = document.createTextNode("donated amount: " + amount.toFixed(precision));
  node.appendChild(text);
  output.appendChild(node);
}

(provided as-is, no guarantee for correctness)
copper member
Activity: 2856
Merit: 3071
https://bit.ly/387FXHi lightning theory
May be someone can provide us a kind of "chipmixer calculator" ?

If someone hosts it I wouldn't mind doing that however, it's probably unnecessary...

EDIT: If there is someone to host it then here it is:

Code:
def possibleChips(min,max):
    chips = []
    while max > min:
        max = max/2
        chips.append(max)
    return chips

def ChipMixCalc(number, min, max):
    chips = possibleChips(min, max)
    while number >= min:
        for chip in chips:
            if number >= chip:
                number -= chip
                print("You got a: "+str(chip/1000)+"btc sized chip")
                break

print("With 0.0005 btc")
ChipMixCalc(0.5,1,4096)
print("With 8.096 btc")
ChipMixCalc(8096,1,4096)
print("With 1.024 btc")
ChipMixCalc(1024,1,4096)
print("with 0.053 btc")
ChipMixCalc(53,1,4096)

the last lines just test the methods (don't use floating point numbers as there are errors in python when you use a floating point number to 3 dp).


(Example output, with a random number)
Code:
With 903.217btc
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 2.048btc sized chip
You got a: 0.032btc sized chip
You got a: 0.016btc sized chip
You got a: 0.001btc sized chip

nicer example:
Code:
With 6.433btc
You got a: 4.096btc sized chip
You got a: 2.048btc sized chip
You got a: 0.256btc sized chip
You got a: 0.032btc sized chip
You got a: 0.001btc sized chip

Other random example:
Code:
With 59.405btc
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 4.096btc sized chip
You got a: 2.048btc sized chip
You got a: 0.008btc sized chip
You got a: 0.004btc sized chip
You got a: 0.001btc sized chip
sr. member
Activity: 518
Merit: 250
It should also be noted that ChipMixer deals purely in BTC... BTC in... BTC out... There is no USD, $, Yen, GBP, EUR or any other fiat currency involved.

Also, given the volatility of BTC pricing, attempting to conduct transactions of "fiat amounts" (ie. I sent $50), while using Bitcoin as the medium is likely to end in unexpected results.



of course
it's clear.

May be someone can provide us a kind of "chipmixer calculator" ?
HCP
legendary
Activity: 2086
Merit: 4318
It should also be noted that ChipMixer deals purely in BTC... BTC in... BTC out... There is no USD, $, Yen, GBP, EUR or any other fiat currency involved.

Also, given the volatility of BTC pricing, attempting to conduct transactions of "fiat amounts" (ie. I sent $50), while using Bitcoin as the medium is likely to end in unexpected results.

copper member
Activity: 2856
Merit: 3071
https://bit.ly/387FXHi lightning theory
Anything divisible by 0.001 is credited. Everything else is seen as a donation.

Chip sizes are:
1mbtc
2mbtc
4mbtc
8mbtc
16mbtc
32mbtc
64mbtc
128mbtc
256mbtc
512mbtc
1024mbtc
2048mbtc
4096mbtc
8192mbtc

(I'm not sure how much higher it goes)...

If you deposit 0.021btc for example, you get 0.016, 0.004 and 0.001
If you deposit 0.021btc you get the same chips to withdraw...

Edit, from the FAQ:
Quote
ChipMixer creates Bitcoin addresses and funds them with specific sizes. These are chips with 0.001 BTC, 0.002 BTC, 0.004 BTC and so on till 8.192 BTC. When you deposit your Bitcoins, you receive same amount in chips. For example you deposit 0.112 BTC and you receive 0.064 + 0.032 + 0.016 chips. Each chip was funded before your deposit, so there is no link between them and your deposit on blockchain. They are already anonymous.
sr. member
Activity: 518
Merit: 250
I dont understand what you mean here.
Issue is not confirmation of transaction, but fees (I paid around 4% fees).
How much in BTC did you sent?

ChipMixer works with chips of fixed amounts. There are chips of 0.002, 0.004, 0.008, 0.010, etc... this means that if you send, for example, 0.0023, you will receive the chip of 0.002 and the difference of 0.0003 won’t be redeemable (acting like a donation/fee) simple because there is no chip of 0.0023 BTC.

You probably sent something like 0.0103 and received the chip of 0.01, “losing” the 0.0003 (~$2). (These numbers serves just as an example)



so where to see EXACTLY which chips are available? Yes this is what exactly happened.
I can't see it on the website.
legendary
Activity: 2758
Merit: 6830
I dont understand what you mean here.
Issue is not confirmation of transaction, but fees (I paid around 4% fees).
How much in BTC did you sent?

ChipMixer works with chips of fixed amounts. There are chips of 0.002, 0.004, 0.008, 0.010, etc... this means that if you send, for example, 0.0023, you will receive the chip of 0.002 and the difference of 0.0003 won’t be redeemable (acting like a donation/fee) simple because there is no chip of 0.0023 BTC.

You probably sent something like 0.0103 and received the chip of 0.01, “losing” the 0.0003 (~$2). (These numbers serves just as an example)
sr. member
Activity: 518
Merit: 250
I tried this service today to mix around 50 USD.
I sent to the wallet provided and once deposited, I selected to withdraw all.
I imported the keys and I get around 48 USD, meaning I lost around 4% of the money sent.
Today upon creation of chips, one transaction got delayed because mempool grew up quickly. It left our transaction with much lower fees than others and all new transactions had higher and higher fees.

We have bumped the fee for it and it is confirmed now. Please check your wallet. Private keys are already imported so Electrum should notice confirmation. If that's not a case, try to recover session using session token and reimport keys.

If you still have a problem, please contact us by email and provide deposit address and/or session token, we will help.

I dont understand what you mean here.
Issue is not confirmation of transaction, but fees (I paid around 4% fees).
sr. member
Activity: 456
Merit: 956
https://bitcointalk.org/index.php?topic=1935098
I tried this service today to mix around 50 USD.
I sent to the wallet provided and once deposited, I selected to withdraw all.
I imported the keys and I get around 48 USD, meaning I lost around 4% of the money sent.
Today upon creation of chips, one transaction got delayed because mempool grew up quickly. It left our transaction with much lower fees than others and all new transactions had higher and higher fees.

We have bumped the fee for it and it is confirmed now. Please check your wallet. Private keys are already imported so Electrum should notice confirmation. If that's not a case, try to recover session using session token and reimport keys.

If you still have a problem, please contact us by email and provide deposit address and/or session token, we will help.
sr. member
Activity: 518
Merit: 250
I tried this service today to mix around 50 USD.
I sent to the wallet provided and once deposited, I selected to withdraw all.
I imported the keys and I get around 48 USD, meaning I lost around 4% of the money sent.
So I paid 4% FEES

On your site, you are advertising your fees are "Pay what you want" also referred as "value-for-value".

So is it SCAM or how do you explain these fees please?
copper member
Activity: 2856
Merit: 3071
https://bit.ly/387FXHi lightning theory
Most people don’t actually update their posts when they get their problem fixed.
Which is only marginally less annoying than people who post "Help Me!"-type threads... and then, after getting troubleshooting advice and/or various suggestions to try to fix their issue... the OP will simply put in a single line post that says "Fixed! Thanks" or similar and contains no explanation of how their problem was actually solved Undecided  Angry

Haha they sometimes respond when you ask which bits were fixed though Smiley.

Anyway yeah I've been on threads where 3 people post distinct solutions to fix a, problem and tge never say which fixes it and nksmibw else can reproduce the sme error... ChipMixer will often say if a matter is resolved or not (there's still hope)...
HCP
legendary
Activity: 2086
Merit: 4318
Most people don’t actually update their posts when they get their problem fixed.
Which is only marginally less annoying than people who post "Help Me!"-type threads... and then, after getting troubleshooting advice and/or various suggestions to try to fix their issue... the OP will simply put in a single line post that says "Fixed! Thanks" or similar and contains no explanation of how their problem was actually solved Undecided  Angry
legendary
Activity: 2758
Merit: 6830
The fact that I wrote 2 letters in the mail, first thing yesterday and wrote a personal message and while nichkto have not written anything, but here at least you answered and I think that will get a response from the administration, what did I do wrong. time ticks,1.5 days left Shocked Cry
As you have already sent email they will contact you back as soon as possible. I think they need time to response you as they might have busy and also you have not yet passed  24 hours. Yes, at the same time you have only a little time left so it is urgent to you.
OP’s first post was 3 days ago, not less than 24 hours ago. I’m sure he already got his answer since he didn’t post anything else (I’m sure he would be spamming the thread with new posts every day) and ChipMixer’s account logged in yesterday. Most people don’t actually update their posts when they get their problem fixed.
hero member
Activity: 1386
Merit: 623
Maintain Social Distance, Stay safe.
The fact that I wrote 2 letters in the mail, first thing yesterday and wrote a personal message and while nichkto have not written anything, but here at least you answered and I think that will get a response from the administration, what did I do wrong. time ticks,1.5 days left Shocked Cry
As you have already sent email they will contact you back as soon as possible. I think they need time to response you as they might have busy and also you have not yet passed  24 hours. Yes, at the same time you have only a little time left so it is urgent to you.
newbie
Activity: 3
Merit: 0
Hi, help help help, you need to deal with the question of bitcoins that I sent through chipmixer came 2 days left, help, write a personal message
It's best to send an e-mail:
Please use [email protected] email support instead of forum PM. It is easier to keep track of support requests and email is checked more frequently
Note:
Emails titled "URGENT" have higher chance to be marked as spam.
You can verify the Support e-mail address at https://chipmixer.com/about.


Administration, please as soon as possible write me a personal message. Time's running out. The situation is complicated, the details will explain in correspondence. You already wrote everywhere, but the answer has not yet received.
newbie
Activity: 3
Merit: 0
Hi, help help help, you need to deal with the question of bitcoins that I sent through chipmixer came 2 days left, help, write a personal message
It's best to send an e-mail:
Please use [email protected] email support instead of forum PM. It is easier to keep track of support requests and email is checked more frequently
Note:
Emails titled "URGENT" have higher chance to be marked as spam.
You can verify the Support e-mail address at https://chipmixer.com/about.


The fact that I wrote 2 letters in the mail, first thing yesterday and wrote a personal message and while nichkto have not written anything, but here at least you answered and I think that will get a response from the administration, what did I do wrong. time ticks,1.5 days left Shocked Cry
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
Hi, help help help, you need to deal with the question of bitcoins that I sent through chipmixer came 2 days left, help, write a personal message
It's best to send an e-mail:
Please use [email protected] email support instead of forum PM. It is easier to keep track of support requests and email is checked more frequently
Note:
Emails titled "URGENT" have higher chance to be marked as spam.
You can verify the Support e-mail address at https://chipmixer.com/about.
Pages:
Jump to: