You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to set this up in a virtual machine following the tutorial. My VM is allocated ample storage and memory and running Ubuntu 20.04.2 LTS as the underlying operating system. The PPA repository for installing Bitcoin no longer seems to work, so I went ahead and installed Bitcoin from https://bitcoincore.org/bin/bitcoin-core-0.21.1/bitcoin-0.21.1-x86_64-linux-gnu.tar.gz, checking sha256 and signatures.
After installing Elements and setting up work environment, the following commands fail as there is no wallet, as one is not created by default.
Give them a few seconds to start up and then check they are running:
e1-cli getwalletinfo
e2-cli getwalletinfo
To get past this, I simply create wallets for both
e1-cli createwallet ""
e2-cli createwallet ""
And also for bitcoin
b-cli createwallet ""
Advancing forward in the tutorial to the next page, Using Elements to perform basic operations. From the tutorial the expectation is for the wallets to show 21 million bitcoin due to anyone can spend. But the balance is 0. With no balance on regtest, I can't proceed with sending to addresses generated by elements due to Insufficient funds.
So then since this is regtest, I do this to get 5000 coins available, and more in the immature balance
b-cli -generate 200
This doesn't help get access to initialfreecoins but may be viable to use for pegin
# Args
STANDALONEARGS=("-validatepegin=0" "-defaultpeggedassetname=newasset" "-initialfreecoins=100000000000000" "-initialreissuancetokens=200000000")
# Startup
e1-dae ${STANDALONEARGS[@]}
# Have to create wallet before viewing it
e1-cli createwallet ""
# Has zero balance, but shows asset name as `newasset` as anticipated
e1-cli getwalletinfo
# Look at transaction in first block from startup initialfreecoins
tx1=`e1-cli getblock $(e1-cli getblockhash 0) | jq -r .tx[1]`
e1-cli decoderawtransaction `e1-cli getrawtransaction $tx1`
I can see the 1,000,000 newasset created in vout, as well as the 2 for reissuance.
How can I claim the coins to the wallet to test with?
The text was updated successfully, but these errors were encountered:
At the time of this writing, when following the tutorial, it's important to check out the tag elements-0.18.1.12 as running off of master will not create the wallet at startup and this is the main problem I was running into.
I'm attempting to set this up in a virtual machine following the tutorial. My VM is allocated ample storage and memory and running Ubuntu 20.04.2 LTS as the underlying operating system. The PPA repository for installing Bitcoin no longer seems to work, so I went ahead and installed Bitcoin from https://bitcoincore.org/bin/bitcoin-core-0.21.1/bitcoin-0.21.1-x86_64-linux-gnu.tar.gz, checking sha256 and signatures.
After installing Elements and setting up work environment, the following commands fail as there is no wallet, as one is not created by default.
To get past this, I simply create wallets for both
And also for bitcoin
Advancing forward in the tutorial to the next page, Using Elements to perform basic operations. From the tutorial the expectation is for the wallets to show 21 million bitcoin due to anyone can spend. But the balance is 0. With no balance on regtest, I can't proceed with sending to addresses generated by elements due to Insufficient funds.
So then since this is regtest, I do this to get 5000 coins available, and more in the immature balance
This doesn't help get access to initialfreecoins but may be viable to use for pegin
Simplify. Attempting just the standalone
The same is true if I take bitcoin out of the equation. Using just the standalone blockchain guidance found here: https://elementsproject.org/elements-code-tutorial/blockchain
I can see the 1,000,000 newasset created in vout, as well as the 2 for reissuance.
How can I claim the coins to the wallet to test with?
The text was updated successfully, but these errors were encountered: