Bitcoin Forum
June 26, 2024, 01:41:11 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2]
21  Economy / Service Announcements / Re: [BETA] [ANN] Moneypot.com | Bitcoin wallet | Private | Lightning ϟ | on: December 23, 2020, 04:39:18 PM
It is interesting idea you are using with two private keys and creating child key,
I believe the idea is pretty standard though. It's almost synonymous to how non-hardened keys are normally derived.

I guess this non-standardness will actually be a bit of an annoyance to technical users, but the real beauty is indeed the solution rhavar came up with, that is to derive a private key out of a public key
like
Code:
k(fP) = h( k(index, purpose) * G, "tweak")

And to then derive the deposit address from that, as we described above.

Code:
final pubkey = k(fP) * G + fundingPublicKey

Quote
but maybe you need to think of creating some hacking competition or bounty reward for people who want to try and abuse your wallet and find some bugs or maybe you should complete audit for wallet code.

Yes! All of our code is open-source. We will think about holding some sort of competition, but for now, any critical vulnerability will probably be compensated with a fictitious share in the rollover profits over the next N cycles of z%. (so that you are actually incentivized to report the vulnerability, instead of abusing it..)

Note: read "probably" for now.

"Critical" -- meaning:
 - Anything that can lead to a loss of funds to the client, due to poorly implemented wallet code.
 - Anything that can lead to a loss of funds to the operator of a custodian, due to poorly implemented custodian code.

Other bugs we're also anxious to catch (but are by far not as critical) is anything that either breaks our service from being provably-honest.
 - For example, if we're missing a check somewhere in the wallet code that allows custodians to dupe the client in a way whereby it will be impossible for the client to ever prove the custodian fricked him over.

Or bugs that "break" your privacy.
 - For example, a bug in the implementation of the blind schnorr signature scheme that for example would allows us to learn your unblinded coins along with your blinded coins.

We take the private key derived from the seed, and add another private key to it. The final result serves as our "child key".
it's complicated. If your wallet shut down and never online anymore. how to recover bitcoin into another wallet?. I just want to know where to see the private key address.
Indeed, if our "wallet" custodian shuts down, you will no longer be able to access your bitcoin. However, I think you have the wrong understanding of moneypot. You shouldn't use our wallet as a wallet to hoard your coins in until the end of days.

Instead, you should us as an intermediary between your primary wallet, and the goods and services you want to acquire.

Let's assume you make 5 transactions a week currently from your primary wallet to something like bitrefill, or another payment service.

Now, instead of those 5 transactions, you can also make a single transaction to moneypot, and then use our lightning services to pay for your goods on bitrefill. Much cheaper!
Of course - not every service accepts lightning, but in that case you will still be able to make use of our batched / immediate transactions.

Again, all while enjoying a revolutionary amount of privacy.


You can't because in the OP, it’s mentioned that moneypot wallet is a custodial one. Not your keys. You should use the site  with caution, as stated above there are a lot of negativity going on. Just a friendly suggestion.
While I agree with your initial statements, (you should aways use any service with caution!), I don't see how we can distance ourselves any further from the previous owners of this domain than we've already done. What are other issues you're having that cause you to view us negatively?

Quote
Not your keys.
Quick sidenote: while you do not hold the keys to your bitcoin, you do solely hold the keys to a claim equivalent to the bitcoin you deposited.

22  Economy / Service Announcements / [BETA] [ANN] Moneypot.com | Bitcoin wallet | Private | Lightning ϟ | on: December 22, 2020, 04:00:52 PM
I tried your wallet and got one address only, native segwit by default, to change into nested we should go to settings,

Is moneypot using BIP39 mnemonic seed? because I don't see my address when putting it in the bip39 tool, If using BIP39 seed what derivation path of address?

thanks for your question, because this allows us to point out some of the beauty of moneypot.

So, with a regular wallet that uses BIP39, you take your mnemonic, convert it into a seed using PBKDF2, so far so good, this is what moneypot does client-side as well.

Now, moneypot does something similar to BIP32, but not exactly.

Most wallets using BIP32 would derive a master key from the seed using PBKDF2 and a salt. Then, from that master private key, they generate (mostly?!) hardened private keys while using a path like m/0/0'..


Now, what moneypot does, is that it takes your seed, and generates a private key out of it through a hash function, I assume it's mostly kind of similar to a standard BIP32 wallet up to this point. Derive the resulting public key, and you have your "xpub", or claimantGenerator.


Because moneypot is a custodial wallet, the client can't just tweak the private key by an index to then derive the adress.

What we actually do is the following (although the next step is not really related to it being a custodial wallet) : We take the private key derived from the seed, and add another private key to it. The final result serves as our "child key". The added private key is the hash of an index parameter + the previously derived private key from our seed (see above), converted to a public key. I assume this is pretty standard too for most wallets.

This function is described here.

This derivation function is equivalent to
Code:
claimantGenerator + hash(conc*t(index parameter, claimantGenerator))*G 
as can be seen here.
Deriving by the claimantGenerator allows you to generate addresses without access to the seed/private key, which could be useful in certain situations!

Note: This does mean that if one of your child keys + your xpub leak out, an attacker could probably access *what would be equivalent to* your "xpriv", just like all unhardened keys. However, this would only be a problem for new hookins which are accepted but not yet claimed, as the coins resulting from claims from hookins are not derived from the same private key, but rather from the wallet seed.



How do we actually do this? In the case of a public key for a deposit address, we take the private key from the seed, and we first derive it by it's purpose. In this case, it's a deposit address, so "bitcoinAddress".
After that, we take the resulting private key, and derive it again. This time we derive by the index. Let's say it's our first key, so we derive by 0.

And you get
Code:
k(index, purpose) = k"Master" + h(xpub + purpose) + h(xpub, index) % n

You can check it out here
We end up with a private key that's actually a key for a yet to exist  "bitcoinAddress 0". Let's call the public key resulting from this private key "claimant bitcoinAddress 0"

However, we do not want to derive an address from this key and subsequently send this key to the custodian, because then we would not be able to prove that we initiated or signed certain actions pertaining to this address. Such as claiming coins!

So what do we do? We hash the resulting public key again, and convert the hash into a private key. From that private key, we derive the public key, and then add the public key to the custodian's fundingKey.
From the resulting public key, we derive either a nested segwit address, or native.

The database function is described here and the function to add the public keys together is described here. Although, they're not really that interesting because it still hides the abstracts away.

Now, whenever we deposit funds on bitcoinAddress 0, we send a hookin to the custodian using "claimant bitcoinAddress 0". The custodian derives the private key from "claimant bitcoinAddress 0" and can subsequently claim the bitcoins deposited on the address. Now, because the custodian does not know the private key to the claimant, only you, the client, can initiate a claim! thus making it provably-fair, as the custodian will be unable to provide a valid signature for the claimant, and thus cannot falsely claim that your coins have already been claimed.

Of course, you could also send us your claimant and ask us for a deposit address, but that solution would not be as elegant, would it? (This is exactly what we do for lightning invoices though!)


So, no. You cannot use any standardized third-party tool to derive your deposit addresses, for moneypot is far too "un-standard". However, it wouldn't be too hard to come up with an api to generate keys following the same derivation as the wallet does.

Let us know if anything was vague, or if it was too technical.

OK, I'm obviously missing something here.
Custodial wallet with full access to user funds
A domain with a dubious past
Newbie account on the forum

What could possibly go wrong?

No, you're not missing much. I'd say that that is about right. Sure, there are a lot of things that can go wrong, but we believe that this could also blossom into something cool, otherwise we wouldn't have started it.
I'm not dismissing your concerns, I think they are understandable, obviously we do hope you change your mind sooner or later.
23  Economy / Service Announcements / Re: [BETA] [ANN] Moneypot.com | Bitcoin wallet | Private | Lightning ϟ | on: December 21, 2020, 08:46:12 PM
Great to see that your wallet have a few good features including LN payments. I would be more than happy to use that, unlucky that I couldn’t test it free. Welcome, anyway.
What's the agenda you are talking with the moneypot domain? Was it used to scam previously? If so, how did you get the domain and why such a domain?
Is this- https://bitcointalk.org/index.php?topic=2207833.0

Hi, yes, that was the project previously hosted on this domain. While we are not completely aware of the exact depths of their scummy behaviour, we do recognize they probably were up to no good, and have undoubtedly scammed people.

It's a complicated story as to how we got this domain, and we do not actually know entirely how it ended up in our hands.
So, in short, It originally belonged to rhavar, which used it for a gambling bankroll service slash wallet. He ended up selling that project to the abovementioned - what turned out to be - scammers.

At some point, he (or a group representing him) has bought back the domain from Monsterbyte.io (which merged with the buyers of "moneypot.com"), and we currently "lease" it from him. Note: rhavar is in no other way currently directly involved with moneypot.

So while we accept that you might want to give us this negative connotation due to the domain name, we do not believe it is right, and hope you'll view us differently over time.

According to their website, they said they have purchased the domain from monsterbyte.io, what the f is this? I have no idea though. And it seems fishy to me, why would anyone with such a domain to start a custodial wallet service, at the BTC peak?
I do not necessarily see how the three are correlated with each other, but there are numerous arguments why a service such as moneypot would be useful. For one, it pushes other services and bitcoin to innovate. While we recognize that extreme trust is required to use a custodial wallet, and currently, maybe ever, we are not deserving of that trust. So you're just going to have to make a decision based on the risks vs the rewards.

The risks:
 - We could scam everyone and run with the deposited funds. please note: It is impossible for us to unprovably scam any individual user, at least; that's the idea.
 - You might lose funds due to poorly implemented code.

The benefits:
 - Make transactions with enormous privacy. (every input is blinded using an established blind schnorr signature scheme.)
 - Use lightning efficiently and with privacy.
 - Make use of our cheap on-chain transactions.

Yeah, acts amateurish. This also: "so please come back in a week or two!"
I did not delve deeper into the analysis, but to me, all this does not inspire confidence. maybe they really have good intentions, but I think the chances of using this wallet are very low.
You're right. There's definitely a lot of room for improvement. In your opinion, apart from using a different domain name; how could we improve how you view us?

Like I said in your other topic, I don't understand why you are asking people to use TOR but website and wallet is not working with Tor browser.
It is better to remove this popup or fix the problem, and I didn't even know there is software version until I visited main website and saw that in releases.
Yes, We understand your frustration, however if you want to enjoy complete privacy, tor is more or less required. You can download the standalone tor client for windows, or install the package on linux, and then simply route all your browser traffic through
Code:
socks5://127.0.0.1:9050

Tor is not synonymous to the Tor Browser, but this should perhaps be a bit more clear, I agree.

A VPN with a rotating IP would also suffice in most cases.




24  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 05:43:59 PM
when I access the website in the browser "UC browser" can't open it, and I try it on Chrome everything works normally, please fix it


Hi, yes. While I am unfamiliar with the "UC Browser", this generally means that your browser is inherently incompatible with the moneypot wallet. There is no way the wallet works without big integers. Unfortunately that means you'll either need to use another browser, or see if you can upgrade this one somehow.

We forgot to mention that we were originally only planning on paying the first 10 users.

We've paid the above 3 posters. For users who post an invoice after this post, it's not guaranteed you will get paid!

Still went ahead to try out this wallet you got here and check it out. Some things I found interesting is:

1. The use of the blind schnorr signatures  don't think I have seen any other wallet implement this.
2. Also nice to see how devoted you guys are to privacy looking at your business model and the items that you log seems very privacy focused.

Hope to see this project grow larger in the future Smiley
Thanks. Yes, I don't think we have emphasized enough yet how radical it is that we are using blind schnorr signatures, and  the impact of it for the privacy of our users.


I tried opening moneypot wallet link in Tor browser but it is not working and only showing white screen with Loading...
Opening on other browsers it is asking me if I am sure using TOR?
What is the issue here?
This is no fault of your own. We will have to look into this, but I believe we were previously unable to resolve this issue. The problem is that tor by default does not allow Indexeddb, and even if it's allowed through about:config, it still won't work. I'm sorry, I currently do not have a more detailed explanation. However, the tor browser wouldn't really be ideal either way: It is recommended that you use a browser which gives persistent storage.

As an alternative we would suggest to use a regular browser, but to route your traffic through tor manually. You could also use our electron app, but we understand if users are hesitant of doing so at this stage.
25  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 03:28:56 PM
We forgot to mention that we were originally only planning on paying the first 10 users.

We've paid the above 3 posters. For users who post an invoice after this post, it's not guaranteed you will get paid!
Code:
lnbc500u1p07pw05pp573lyqfd9g55g57j03ctyc4nalyk56rzg3uv4kg0c9v4fcm6a8agsdqvv3jhqmmnd96qcqzpgsp5nutyycw4ethssqq0u90yg7kc76f85gqh7g3x8rzhv9ntz2vw0naq9qyyssqpv9qlf03zjp3lyvvt0efd8vetpcu97k4temsln6t2qsndny2za43nf4d92a67nvt77lulyqpmza23yd34y08jk05p3hd60r03x8g3ssqfv2ss9



By the way, what is the use of a button like the picture above, several times it clicks but doesn't see something, and one more time has anyone transferred their bitcoins? is everything going normally? everything looks good, it's just that I want to know about ongoing transactions
Good question. Your wallet is in constant sync with the custodian. Each claimable you send to the custodian gets stored both locally, and on the custodian. However, it could be that through a crash, a database mutation, or whatever, you lose access to your local wallet.

In that case, you can fully recover your wallet by using the restore function using both your original mnemonic + password. You just click resync once you created your wallet, and it should return all your original claimables, at least those that were originally accepted by the custodian. Which in turn allows you to rederive your coins, and thus get your funds back.

all processes are very simple and easy to understand, I like a wallet like this, and I highly recommend that the moneypot wallet make an application, it will be much more friendly in the application
We have an electron application for both linux and windows.
26  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 02:10:44 PM
I mean, is everything saved automatically in the browser? and to log back in only requires a passport, not most other wallet sites
which requests such a private key for him to access the wallet, but does not apply here
All your claimables, coins and such are saved client-side, in your IndexedDB.
If you want to make a transfer, you need your seed, which is derived from your password + mnemonic phrase. Your mnemonic phrase is also stored client-side, however the password is - obviously - not.

So, someone who has access to your browser, given that the password has enough entropy, will not be able to spend your coins.

Quote
which requests such a private key for him to access the wallet, but does not apply here
As long as your password has sufficient entropy, I don't see the difference?
27  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 01:52:52 PM

the display is quite practical but I don't understand the features available, how is the transaction fee?
and is it free of charge to send fellow users?
I want to try it further

Yes. If you send an IMMEDIATE transaction, you will pay the full price. we assume the weight is ~561 WU, so you will pay that times the immediateFeerate, which is to be confirmed within 6 blocks.

You can also choose to send your transaction batched, which means you only pay the price of an input. Depending on your address type, but generally this will be 31-34 B. Whenever someone initiates an immediate transaction, it will also send your batched transaction along.

Quote
and is it free of charge to send fellow users?
Yes. Generate a lightning invoice of any amount, and send that to a fellow moneypot user to pay.

Quote
Code:
lnbc500u1p07pfnhpp5znejxc4dm4zuahas8zl5wguq3996un6r492whzarr7vtj06xeg9sdqvv3jhqmmnd96qcqzpgsp5ntx226sccy3n3vatv9ral80jdzjmkvmn6tw362ychyyygrmezwaq9qyyssq7q7j7pp5gk9lm2cndmd7rnkn8sup3y3vr6ztavf7sefv5vlunxxnl0tvzsnynlfc4vh9vw65acnt2skzlyrn29c42hpsexh594fxaccqxwk9ta
Paid!
28  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 01:43:30 PM
My lightning invoice is:
Code:
lnbc500u1p07pfr3pp5uc5phqqn45yvmyhpagny7wq33ap3nte9780luvqnx9u3qgefrcwqdqvv3jhqmmnd96qcqzpgsp5jpgfptp9yk5zed8y5qptvu8mufsxds0y2v5736uuwnlc578qxyhs9qyyssq4vl9u57ae0cgtrrvylgn0mvsaj2zyzkj6en78j97kjvw86vxsxg34hxjg88s6p3d892sfrejm9qg0e9rdgn39hxddmt5n4e9e7aac2cq4kjsp8

When using the wallet noticed you have a fee guide, is this updated manually or automatic? Also disregarding some placeholders I saw in some places there should be a more in detail faq on all the features you offer. Noticed you guys offer pay to many transactions as well kudos!
Fees are updated automatically. If you're trying to send a hookout / feebump, you should make sure you do it within a minute after fetching the latest feerates.

Even then, it could happen that the custodian has already refreshed, and so your hookout / feebump might get blocked. If that's the case you should [DISCARD] your hookout/feebump and try again.




Code:
lnbc500u1p07pf8tpp5j2ray7fcru9kq8sfupph77l49lj0tq23hezkcv97zwkmpnu5nzpsdqvv3jhqmmnd96qcqzpgsp5u2xe0aw2m0jfv0x2lnhp2pd7ee2fp5dkl08ulzfm5uamt3ydlumq9qyyssqyrgl09xej026c6xsye9t4lndu7t2ek4k3g5zzk4kgzpwyykcmakydmpdhck67mhv0q6r8l2j4mxkzgcgwphw6cfv8vvchzgk7kf0uvcp6unrd3

I go back and forth when I want to access the wallet enough to enter the wallet address without a backup, I don't know because this is still a beta version, but I think logging in only with a passport is quite unsafe
Care to eleborate? I don't think I follow.

Paid both! 1 more.
29  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 01:39:15 PM


When I browse the Coins feature, I don't find any information, the information is still unclear

This makes sense. Coins will only be added after you make a claim on either a deposit (Hookin & Invoices), or reclaim the remainder of your coins when making a transfer. (Hookout / LightningPayment / Feebump)

Sent!

Created the wallet in one click! Fast & easy.

Code:
lnbc500u1p07pg7npp5qufnzksn92y6ga09qnpdpg6hq0sdv3h7tenv2gvdfwtk5xvgfk0sdqvv3jhqmmnd96qcqzpgsp5djcpf9xfrjyvx24f8s9vknlade6f62t2f45p523ue5n8nsx8mheq9qyyssq8qxqrhmm2x90pjrllj7mawhnjlrhha900g8p9n8p7va5flxt24j95v52jrlmwem83rd0t07lnm649v8u93eckehksrrx88pxx7yqtvsqdntjnp
Sent!
30  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 01:23:57 PM

display less good with a mobile browser
Could you give an example / screenshot of what could be improved?

Quote
Code:
lnbc500u1p07pgg2pp5ek0uewxvudxecnl5uhpqekexfz3fgshdgs9sdr5y4u0rwtzzj87qdqvv3jhqmmnd96qcqzpgsp5ljhnvq4x7p6eccalz4c7s433p34esmm99plsh2j4u4dwz0ph4rwq9qyyssq3kxqh4a4xnmh7fatadfd4aznqwwcnzm8767mr99ety22p3fl3fa8x5fjdqvndgnhp67z5kekfv8wzaxcclugt032x9q3kxg6vdm74kcq7s68h5
Sent!
31  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 01:14:31 PM
Ngl, I am new to lightning network payments to give a precise review. However, the site is very simple and user friendly. Creating an invoice was easy. Good design and professional looking. An app would be good too. I would love to use moneypot as wallet as I learn more about lightning networks.
Thanks!

Quote
Here's an invoice I created :

Code:
lnbc500u1p07p8t5pp5krtda58vnnlnrhf2mqf6t4x2esty8uhk555jlx46c52qu7qn24gsdqvv3jhqmmnd96qcqzpgsp5dvvnkwtkv0fpwpwfuvz2q5twg63h75efmsnnk46x7j99fqfv6zlq9qyyssqrvxardazzw87xwt2naajj2tsn4ns3j7sny6anr7n54zdkugzdu85yhkda0k6lvj5cy8c5a473creqxhxmwtwkxmu35dkqzcczetn69cp6nz8xn

Sent!
32  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 01:09:13 PM
Cool new service you have, see that you support the lightning network as well. Had to ask your able to do non-lightning payments as well using the platform? The wallet itself looks great and would be easy to use.



Yes, standard transactions are also supported!

Quote
Also under the support tab is a "Contact" tab which I would assume should be removed because it contains nothing. Might also want to update your about page.
I see. I've put it on our todo list.


Quote
Lightning invoice:
Code:
lnbc500u1p07pxlupp5zejpmutu3xls4de28pjnjf0mdyzj8yuf9zmz0sf79229dlxsk7kqdq8w3jhxaqcqzpgsp5tquu9ryra6xzt4u0ch8qc04yaeu7exw29grxfqc23hetcemxyf8s9qyyssqd0emv5mm3ta5e2hrz9xz6fzkjwvvfh97fx80dfxv9qclxtgh02whxrck9wvzukr0punnm9ua0rgktm4lnrgllum6ntze83782fnp53cq5fa2vh
Sent!
Code:
e6319b2a1c1caf1df2da4883637b0acca2ec15d3e7a8bdc418b050a3df63f799
33  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 12:49:59 PM
Well I first looked around the site it looked pretty basic but that can be good with simplicity but noticed some issues that could remedied. Such as when you mention "All transactions are secured by blinded schnorr signatures." but when you click learn more that is never explained in detail to the user.

The wallet itself seems pretty intuitive and very easy to navigate (pretty nice native segwit integration as well Wink)


Thanks. We will try to add more documentation in the near future and or fix those broken links ASAP.

Quote
Created this lightning invoice on your service:
Code:
lnbc500u1p07p96app5zyyuzaznvrytwwgakvz3262d0emeh8yyvjq4xs59sg909zk4qzyqdqj2fjhv6t9waxk7mn90ycqzpgsp5grh57gzxchuuhrz34nk8cklutavuwx5gszqz2gmcl45gdysduads9qyyssqesyynlwjp405llz8n23aq4p0n968zkxtvdvzu865v0ueqkjacjph2t84tapznsdyz7du3yuktyq96m3drnkhze3cm08m9qk3ml9hjncqjjwj6y
Sent!
Code:
9cd158206542a2d5f868d59d4eefabab712ca6cf6a2d40d5e5c6de764d1d3814



Let us know if you encounter any errors trying to withdraw!

34  Economy / Services / Re: [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 12:13:51 PM
Does moneypot allows the user to access private key to their address and to be able to do a signature message with it? Signature messages may not be use on a day to day basis but it provides proof that the user own the address.
Also does moneypot able to import addresses thru private key?

Anyways, Moneypot is an easy to use bitcoin wallet especially for beginners. All in all, it's a great wallet with a user-friendly platform and an easy to use wallet.
No. Moneypot does not give users access to the private keys belonging to their deposit addresses. They're generated specifically so that only we can access them.

You actually do this yourself by converting the public key you generated client-side into a private key, which is then converted back into a public key and tweaked by our funding key. You then send us the original public key, so that we can derive the private key belonging to the address. If you're interested, you can read more here. https://www.moneypot.com/docs/derive-deposit-addresses/ (Ignore the bugged Replications  Tongue)



PS: If you wish to receive your BTC, post your payment request!



Here's a lightning invoice that I've created using Moneypot. Thanks and I'll be using the platform soon.
Code:
lnbc500u1p07pxqrpp55z67w8u92gv37y8mtlxkdxx2sgd95vhdrjhszvge5d7zvlqdqxjsdqhf4hkuetewphhg5n9we5k2accqzpgsp5j9sy09635yxwyzqy7rmvg9zxemlf7kr3h0t4r6munpng3vwfd90q9qyyssq0mva02l5euj0h20pd3u3yll983ghazey8ch965n3d0567epnwsf4ttsu9x308t9fk7h2kxp8469akuyvrklxvzvr4yth99rfhl86mvcpgwmvkm
Sent!
Code:
17575d5186bc36a98edd887363d3e44795714e7ed7a8331ef2aa417f0108b8ca
35  Economy / Services / [BOUNTY] Review Moneypot.com and receive [0.0005] BTC on: December 21, 2020, 11:43:05 AM
[BOUNTY] Review Moneypot.com and receive [0.0005] BTC



How does it work?

We've just launched an exciting new bitcoin wallet
which you can access here wallet.moneypot.com

It comes with a bunch of new unique features such as lightning, blind signatures, internal transfers, and much more.

We're interested to know what you think of it. Please have a look around, and let us know what you dislike, like, or think could be improved.


If you wish to get the 0.0005BTC, you need to include a lightning invoice in your reply, and the invoice needs to be generated from moneypot. We will pay the invoice, after which you are free to spend the funds as you please.


Payment is for the first 10 participants only.
36  Economy / Service Announcements / [ANN] Moneypot (Discontinued) on: December 20, 2020, 07:11:01 PM
We know, you're probably wondering; "What?! Moneypot?! Again?!"

Rest assured, we are not in any way related to the previous owners of Moneypot.com, for we have only the domain name in common.



Preface: Moneypot is currently in beta so we want to re-emphasize to not deposit more funds than you are willing to lose.

moneypot is a completely functional bitcoin wallet. It has all the quirks one could reasonally expect from a web wallet: feebumping, custom fees, segwit.

However, it introduces a number of new, unique features, which we think you're going to like;
 
  • moneypot utilizes so-called "blind signatures", which allows the user to transact with the utmost privacy. Your inputs and outputs are cryptographically unlinked within our ecosystem.
  • moneypot utilizes in-house coin selection algorithms, allowing us to not only batch transactions at scale, but we are also able to make the smartest choices when selecting inputs.
  • moneypot brings lightning to the average Joe. No longer will you be required to set up your own node, or use a separate wallet for your lightning transactions. moneypot allows you to pay and generate invoices from the comfort of the same wallet you do your daily transactions with.
  • moneypot is provably-honest. We will be unable to get away with duping any single person.
  • moneypot offers their service at cost. Apart from very limited anti-dusting fees, all of moneypots services are ran at cost. There are no hidden fees.
  • moneypot allows instant and free transfers between users.


What are the drawbacks?!

  • moneypot is a custodial wallet. Through malice, error, or other causes, your funds* could potentially disappear at any given time, without you being at fault. Your funds as in the collective of all of the users of a custodian(s)
  • moneypot is coded by -humans-, sentient beings, and so there might be unspotted glitches in the wallet software that could lead to a loss of funds.


In what scenario would I use this wallet?

We think moneypot is to be fully appreciated when used as your day-to-day wallet. Used correctly, a transaction costs as little as a regular input. And that's not even mentioning the ease with which you can use our lightning services to pay for any service or everyday goods, all while retaining full privacy.



FAQ:
 Why should I trust you with my bitcoins?
   - You should not. Everyone needs to assess the risk they're willing to take with their coins, and we hope we offer enough to make it worth it for you to take that risk. There is no compelling argument we can make as to why we are worthy of safe-guarding your coins, because really, we aren't.

For more frequently asked questions, you can visit our FAQ



How exactly does moneypot work?

In layman terms: moneypot takes the bitcoin you deposited, and returns to you a claim to a set of coins equal to the deposited amount. Only you have the keys to those coins, and you use them each time you want to make a transaction. Due to how moneypot works, we do not know your coins, nor the keys. We only know whether or not they are valid, and whether you are the actual owner of them.

For more detailed information, please check out: Overview



How to use

Step 1.
Visit wallet.moneypot.com

Step 2. Choose a custodian (use the affiliated ones for now. See below)

Step 2.1
Choose both a password and a name. Save your password and mnemonic phrase!

Step 3. Deposit bitcoin through either lightning or a normal transaction.

Step 4. Start blazing!



Electron
Moneypot also offers an electron shell, should users be interested in using that. We think it could be of benefit to both your privacy and security.

For more information, please visit Releases



Source code

For those interested in the source code, our github repositories are publicly accessible. You are welcome to contribute, run your own custodian, or point out bugs.

For those who spot critical security vulnerabilities; please PM us here on bitcointalk or send an email to our support.

moneypot-wallet
moneypot-lib
moneypot-wallet-electron
moneypot-custodian



We support both TOR and clearnet for our affiliated custodians.

Code:
https://main.moneypotcustodian.io/#pubmp1qvenvu4nvjcugdul5jzg2py373r8euz2y42ryt3ghr682m58p6l2ynq97v4

Code:
http://cz42xaedmgslf3me5orcko3ptxfkntav5bcgk7algci3orgh4ot73rad.onion/#pubmp1qvenvu4nvjcugdul5jzg2py373r8euz2y42ryt3ghr682m58p6l2ynq97v4



Our PGP key used to sign releases

38876AFC1172E3DFA17A84BB2E5F4A83BFE81B1B

You can import this using
Code:
curl https://keybase.io/doofenshmirtz/pgp_keys.asc | gpg --import


Latest wallet release
Code:
https://wallet.moneypot.com/main.6ef86880333d720eb63c.js/#DW85hIkiDSOvJIjAcP/jrN1/vxDlo1sJRUtOBKH7OyY=



About

~
 
Pages: « 1 [2]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!