Bitcoin Forum
May 28, 2024, 08:53:39 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 »
81  Alternate cryptocurrencies / Altcoin Discussion / Re: How ethereum get notification when receive ether? on: May 28, 2018, 12:55:31 AM
Thx, but I need to make this function itself.

So I installed geth at my server. But then what?

How this eth daemon know when receive ether? And how can I know this too?
82  Alternate cryptocurrencies / Altcoin Discussion / How ethereum get notification when receive ether? on: May 27, 2018, 01:43:10 PM
Bitcoin .conf has [ walletnotify ] option.

But ethereum doesn't have it?

Then how can I know when receive ethereum?

83  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][Bounty][on Exchange] [BTE] Bitcoin Essence Lightning Fast Transactions on: May 24, 2018, 12:21:44 AM
The development and updates will be reasonably paced in order to prevent a hard fork from occurring.
And also, based on litecoin's update, we will also update.
84  Bitcoin / Development & Technical Discussion / Address's total length is all the same? on: May 17, 2018, 12:33:41 PM
I counted bitcoin address length, it is 34.

Is this all the same always?

And how about other coin's case?

If same coin, address's length is always same?
85  Bitcoin / Development & Technical Discussion / What happen when send address that does not exist? on: May 16, 2018, 05:47:52 AM
1. So if just using bitcoin daemon, send coin to address that does not exist, or wrong address. Then what happens?


2. If send ETC to ERC20 address, then it is lost?
86  Bitcoin / Development & Technical Discussion / Daemon's functions, API, notify, etc is same at other coins? on: May 15, 2018, 12:45:37 AM
So bitcoin's API, commands, daemon feature is same at all other alt-coins?

And eth ERC20 token does not have any source github, API, commands, daemon, right?
87  Economy / Web Wallets / What is service of Bitgo? Is it useful? Benefit? on: May 14, 2018, 02:38:25 AM
I don't know well about Bitgo,

What they actually provide?

Is it useful?

and are there none of similar service?


So if I want to make over 100 coin's daemon and setting it on server, are Bitgo helpful?
88  Bitcoin / Development & Technical Discussion / What address type should I choose? Segwit? on: May 11, 2018, 05:44:50 AM
At many hardware (ledger nano), window application wallet (electrum), it requires choosing standard/segwit address type.

What should I choose?

Regardless of what I chosen, are there no compatibility issue between them now and future?

89  Bitcoin / Development & Technical Discussion / How to send whole bitcoin from daemon? on: May 10, 2018, 10:49:26 AM
If there is 0.5 bitcoin in daemon wallet, then how can I send whole to another wallet?

Because there is fee, I can't type like [ sendtoaddress <address> 0.5  ], right?

Then how can I know minimum transaction fee I need to set?

How I can set at daemon?
90  Bitcoin / Bitcoin Discussion / Are there no windows 10 wallet which does not require full blockchain data? on: May 10, 2018, 10:28:10 AM
Are there no windows 10 bitcoin wallet which does not require downloading full blockchain data?

Just need send/receive/address function.
91  Bitcoin / Project Development / What is function component for crypto exchange? on: May 09, 2018, 08:25:43 AM
What are needed function components for make exchange?


-User join/login, Google 2FA, My page

-Trade
All coins,
Buy/Sell,

-Databases
User's data, transaction data, coin's price chasing (option?)

-Server
webpage server, coin server

-Coin integration

-Integration with real national bank account of users

-Admin pages for exchange


What else are there more to implement?

92  Bitcoin / Development & Technical Discussion / Re: How exchanges make wallet adresses? on: May 09, 2018, 06:29:20 AM
There are 2 options:
2) (Not recommended) Each user has an unique ID and new addresses are generated via seed, so they are actually pre-generated and easy to recover if you now the seed. Then it goes like that:
[seed]-> [Purpose][Coin][Account][External / Internal][address id]

m/44'/0'/111'/0/1  -> Bitcoin address, user_id 112, second address
m/44'/145'/48271'/0/3  -> Bitcoin Cash address, user_id 48271, fourth address
m/49'/0'/54'/0/0  -> Bitcoin SegWit address, user_id 55, first address

What are these seed? m/44'/0'/111'/0/1,  m/44'/145'/48271'/0/3 ,  m/49'/0'/54'/0/0

I just thought made bunch of address from one bitcoin daemon.

Where is seed and how to know what seed used from above?
93  Bitcoin / Development & Technical Discussion / Re: How to run seperate wallet on same server? on: May 09, 2018, 02:42:05 AM
How to do using [xpub key]? How to do this? How it can send coins send straight to cold hardware storage? (I want to use ledger nano s something..)

Import your xpub key into the software of your VPS.
You will be able to derive public keys (and therefore addresses to deposit to) on your VPS without needing to store the private key online.

You can get the xpub of your ledger nano s from the Bitcoin wallet (chrome) application: 'My Account' -> 'Account settings' gives you the option to export a public key.
Afterwards you will be able to derive addresses from this xpub. The actual command depends on your programming language / libary.

IIRC xpub format and methods to derive segwit addresses are not yet standard yet, so if you're using segwit addresses (which is likely), it might not work.
Yes I am using segwit address on ledger nano, so it does not have menu like above (MyAccount-> Account settings), nor xpub.
94  Alternate cryptocurrencies / Altcoin Discussion / There is limit of transaction data size? on: May 09, 2018, 02:24:08 AM
For example, I mined continuously some alt-coin,

and when I try to send some big amount of coin (over millions), -qt wallet program stopped and after some while,

it spit out error message that transaction size is too big, so can't send coin.

After I lower the amount of coin to send, sending executed.

So this means, for gathering million coins from too many 1000 coins mined reward,

-> transaction data size become big, can't send coin?

Then, how much size is limit and where can I revise it at source-code?


So from what I experienced, I infer like this,
----------------
A wallet have 10, 100 thousand mined record. Mine reward is 1,000 coin.

1. Try send 500,000 coins,
A wallet should gather 500 mined transactions from its own wallet, and then should sum them up and make as one pile and send to address?

-> I don't know how much filesize this become, how much this become? How much size increase per one transaction record?


2. Try send 5,000,000 coins,
A wallet should gather 5,000 mined transactions from its own wallet, and then should sum them up and make as one pile and send to address?

-> This occured error that file size is too big, so can't send coin.

95  Bitcoin / Development & Technical Discussion / Re: Send bitcoin to own same wallet's another address require fee? on: May 09, 2018, 01:58:05 AM
So as far as I know,

old wallet can send coin with 0 fee.

But while bitcoin core updated, at some point, the rule adopted that fee can't be 0 regardless of amount of sending coin.
So now bitcoin can't be send with 0 fee, Right?
96  Bitcoin / Development & Technical Discussion / Send bitcoin to own same wallet's another address require fee? on: May 08, 2018, 06:29:10 AM
Send bitcoin to own same wallet(daemon)'s another address require fee?

To show transaction detail on blockchain explorer.
97  Bitcoin / Development & Technical Discussion / Re: How to run seperate wallet on same server? on: May 06, 2018, 11:49:13 PM
Running full nodes on a VPS is fine, but you definitely want to store the funds in cold storage.
Either implement application logic to immediately move the coins from your VPS hot wallet to cold storage, or better yet, use an xpub key to have the coins sent straight to cold storage without even touching the online server. Then fill the hot wallet from there, as required.

How to do using [xpub key]? How to do this? How it can send coins send straight to cold hardware storage? (I want to use ledger nano s something..)
98  Bitcoin / Development & Technical Discussion / Re: Bitcoin [ sendtoaddress ] command? on: May 06, 2018, 11:45:59 PM
As far as I know,

If some send bitcoin by this command, [ sendtoaddress ],

then wallet decide where to pull bitcoin remaining balance from any inside accounts?


What is your wallet now?
I use new&old wallet. I manage many altcoins.
99  Bitcoin / Development & Technical Discussion / Re: If initiate sending bitcoin, it can't be reversible? on: May 04, 2018, 08:23:22 AM
It can be reversed, it depends on the wallet u'r using. For example if using Luno wallet u can actually stop the process ASAP before it starts sending..
So then, following con is possible? Meet victim offline, Send bitcoin, as soon as, show him detail at block explorer with transaction ID (confirm is 0), and then take the real money from victim, then after apart from him, then anyone can reverse (or cancel) that sending?

To block this, at least 1 confirm is needed?

100  Bitcoin / Development & Technical Discussion / Re: How to run seperate wallet on same server? on: May 03, 2018, 10:39:07 AM

yes different rpcport, p2pport, datadir each other
being the port different, they can each other communicate and connect
I can't understand... if port is different, how can those wallet can communicate each other? Even if they are emerged from same source code.
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!