Bitcoin Forum
July 05, 2024, 05:25:59 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 [36] 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 ... 233 »
701  Bitcoin / Armory / Re: Armory on windows just does not sync on: February 14, 2018, 10:23:06 AM
Quote
Then started ArmoryQT which immediatelz reported an error "unable to spawn the DB"

armorylog.txt: https://pastebin.com/0AsthNUL

Something is off with your armoryqt.conf. Post its content verbatim

Quote
p.s. my PC is "anemic"? :-)

2 cores, USB2. Moses' mobile phone was more powerful than that stuff.
702  Bitcoin / Armory / Re: Does Armory supports RPC? on: February 14, 2018, 10:18:42 AM
Or, maybe nobody thought to add such functionality. Tongue

 Grin

Ugh my bad, it's lockboxes you can create remotely, not wallets.

Quote
As I already said, I'm quite sure I know what I'm doing and the risks involved

The issue with creating wallets dynamically is 2 fold: your servers will be carrying the private seed, and how do you back that up? It's not that it can't be done, but the opsec are poop. What you'd want instead is a wallet model where you have one master seed, and any amount of child wallets derived on the fly from that seed. That's for 0.97, which is a couple months away at the earliest.

Quote
I love the fact that Armory is using bitcoind as a full node, but the downside of bitcoind is the lack of dynamic wallets management.

What I can offer you in the short term is a method to import wallets from their seed (either public or private). You'd have to create the wallets in the GUI, deal with the backups and what not, then you can register that wallet with armoryd through the 72 character seed.

Quote
I find Armory to be very well designed, but I need the GUI functionality of managing wallets to be done via RPC including adding fresh new wallet for an employee instead of  doing that manually via GUI.
So I think this feature will be great for us and others!  Smiley

What do you want this for? I think you're confused about Armory's stack. This is how it works:

- The GUI, which deals will all things UX and wallets/crypto. The GUI connects to the DB over a socket. The DB can be remote but right now there is no encryption layer over that socket. That's for 0.97 too.

- The DB, that deals with all things blockchain. A GUI registers the addresses in its loaded wallets with the DB. The DB tracks these addresses and passes on balances and historical data back to clients. The DB requires a full node that's fully compatible with Core's P2P, RPC and on disk blockdata serialization. The DB needs disk access to the blockdata. There can be many clients per DB.

- armoryd uses the same socketing interface as the GUI, i.e. it can connect to a DB remotely. armoryd DOES NOT interface with GUIs, or other armoryd instances. It only presents a JSON-RPC interface to users. Registering a wallet through armoryd will NOT affect other GUIs nor armoryd instances. It's just another isolated client.

From your description, it feels like you are expecting things out of armoryd that it was never designed to do. You should lay out your logistics at least, so we can tell if your requirements can be met.
703  Bitcoin / Armory / Re: Armory on windows just does not sync on: February 14, 2018, 02:35:40 AM
1) Get rid of armorydb.conf. Create a file named armoryqt.conf instead, in the same folder. Put this in there:

Code:
db-type=DB_BARE
ram-usage=4

2) Delete the current DB.

3) Make sure auto bitcoind management is turned off (unchecked first checkbox in File > Settings).

4) DO NOT START BITCOINQT/BITCOIND. Your PC is anemic, it probably can't withstand the RAM load of both your node and the DB bootstrap at the same time.

5) Delete your logs (armoryqt.txt armorydb.txt)

6) Start ArmoryQt. Let it sync. If it fails post your logs again.

7) Once this is all done, you can start node manually. Doesn't really matter if the DB is running or not, but the preferred procedure is to start the node manually first, let it sync, then start ArmoryQt.
704  Bitcoin / Armory / Re: I assume I can still seperate and send my BCH, using Armory wallet? on: February 14, 2018, 02:27:10 AM
check the BCH box when signing to move the coins.

That only really works if you have not moved any BTC post fork or rewind your chain back.

So if I moved a very small amount out of my online Armory Wallet. And haven't touched any of the offline coins. I have to go through some complicated process for both wallets?

The explanation is this: Any BTC you have moved post fork will put your BTC DB is a state that makes the coins inexistent on the BCH side. Any coins you did not move, you can use the BTC DB to create a tx for, that will be valid on the BCH chain.

Therefor, to guarantee you have BTC DB state, you'd have to rewind your blockchain data to the fork point and sync a new Armory DB against that copy of the chain. Otherwise, bite the bullet and sync a BCH node, then build an ArmoryDB against that.
705  Bitcoin / Armory / Re: I assume I can still seperate and send my BCH, using Armory wallet? on: February 13, 2018, 09:07:49 AM
check the BCH box when signing to move the coins.

That only really works if you have not moved any BTC post fork or rewind your chain back.
706  Bitcoin / Armory / Re: lol...it just never ends on: February 13, 2018, 07:43:47 AM
These are lines for the node, i.e. they go into bitcoin.conf.
707  Bitcoin / Armory / Re: lol...it just never ends on: February 12, 2018, 11:36:34 PM
Do you use an antivirus? If so, check the quarantine container.
708  Bitcoin / Armory / Re: lol...it just never ends on: February 12, 2018, 09:25:34 PM


Win7/64, Armory0.96.3

That got me confused.

Quote
OK goatpig, I will figure out the config file syntax and location, I promise, and wean myself off of shortcut args, but it was working fine until the other day and I want to understand

I understand your point but this is something you can investigate later, once you have a functional system. For now, since you are requesting assistance, you need to follow the instructions you are given, which allows for controlling the environment.

Quote
ArmoryDB.exe  --satoshi-datadir="E:\BCashChain\blocks" --datadir="D:\armory" --dbdir="D:\armory\databases"

'ArmoryDB.exe' is not recognized as an internal or external command, operable program or batch file.

You have to cd to the folder containing ArmoryDB.exe to run it from the command line (or type in the full binary path). At any rate, delete dbLog.txt, setup your armorydb.conf and go run the DB from the command line.
709  Bitcoin / Armory / Re: armory issues on: February 12, 2018, 08:57:15 PM
He could try the brute force script for the wallet but I do not have the strength in me to walk him through it.
710  Bitcoin / Armory / Re: lol...it just never ends on: February 12, 2018, 08:37:42 PM
1) Use RC3

2) Use config files

3) You can't mix and match chains and DBs. Use a dedicated folder for each

4) What BCH node are you using? Armory is not compatible anymore with that stuff since they changed the address format and magic number.
711  Bitcoin / Armory / Re: Does Armory supports RPC? on: February 12, 2018, 07:35:34 PM
Can you please add a compiled armoryd.exe into the download package? That would be really great for us newbies!

No. Using the daemon means you know what you are doing. If you cant run "python armoryd.py" from the command line, stay away from this.

Quote
BTW, can a new Armory wallet be created via RPC?

Yes.

Quote
if not, is there some other external way from outside ArmoryQt?

Create a wallet on whatever machine that can run ArmoryQT, take the wallet file to headless machine.
712  Bitcoin / Armory / Re: Pathing - Linux Mint 18.2 Sonya - Core on: February 12, 2018, 04:20:32 AM
Offline, this is expected, you have to use a set of cli args:

https://github.com/goatpig/BitcoinArmory/blob/testing/changelog.txt#L14

Online, it means you're using a non segwit compatible node, or that your node is outright offline.
713  Bitcoin / Armory / Re: Armory 0.96.3 released on: February 12, 2018, 03:36:01 AM
but i don't even see the native keys whereas i have before.

It won't show you addresses that aren't used nor requested. You need to extend the address chain, request new addresses or sync the wallet.
714  Bitcoin / Armory / Re: Does Armory supports RPC? on: February 11, 2018, 11:48:00 AM
This is python 2.7
715  Bitcoin / Armory / Re: Does Armory supports RPC? on: February 11, 2018, 10:36:07 AM
No, you have to freeze the script yourself into an executable.
716  Bitcoin / Armory / Re: armory issues on: February 11, 2018, 06:51:33 AM
I have a slight suspicion that my original address (1Pia2Q1HfF9opf2eM2JcDhfqvLgTvv4M2x), which armory created for my transaction is not linked with the wallet (2esgHgP7M) and/or I don't have a wallet, to begin with. but how would I nkow?!

Addresses are derived deterministically. If this address comes from wallet "2esgHgP7M", it's in there.
717  Bitcoin / Armory / Re: Does Armory supports RPC? on: February 11, 2018, 06:50:03 AM
https://github.com/goatpig/armoryd
718  Bitcoin / Armory / Re: PLEASE Backup your wallet! A Paper Backup is *Forever*! on: February 11, 2018, 06:39:15 AM
Quote
Cheers, I looked that up and understand it much better now, but I don't really understand it.

Is my assumption correct that the "Target compute time 250ms" and "Memory usage 32MB" in the advanced settings during passphrase generation in Armory 0.96.3 is somehow related to this?

Each attempt requires a flat amount of RAM. This drastically reduces how many attempts you can perform in parallel. That's kind of the point of a decent KDF.



Quote
If a base58 - 11 digit password is enough to secure the paper backup, does that mean that an 11-digit password would also be sufficient as the passphrase for a wallet?

As long as your source of entropy isn't shit (please don't just put words together)
719  Bitcoin / Armory / Re: PLEASE Backup your wallet! A Paper Backup is *Forever*! on: February 11, 2018, 05:28:56 AM
Quote
The Secureprint password is 11 letters long, and seems to be made up of numbers and letters only.

It's base58.

Quote
S/he then uses a powerful computer with 'customised' Armory software to try to guess secureprint passwords.
The computer could be incredibly powerful, maybe something like an entry level smartphone made 10 or 20 years from now.

Lol no. You think phones in the future will carry terabytes of RAM? The KDF is basically Scrypt, forget it.
720  Bitcoin / Armory / Re: Armory 0.96.3 released on: February 11, 2018, 04:45:53 AM
i'm trying to print out a list of all private keys and especially imported private keys to move to another wallet.  when i go to "Backup this Wallet" and "Export Key Lists", i don't see a display of all the individual private keys like i used to.  could this be b/c i'm working with a "Restored" wallet?

You'd have to elaborate on  what you mean by "Restored". Did you restore this wallet from the private root? What makes you think you have imports in there?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 [36] 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 ... 233 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!