Unanswered Questions
8 questions with no upvoted or accepted answers
8
votes
0
answers
222
views
How to get the cumulative weight (and score, height, depth) of a transaction?
I know that I can get the weight of a transaction by converting the transaction hash into trits and count the trailing number of zeros.
import iota
def get_transaction_weight(transaction_hash):
...
4
votes
0
answers
154
views
How to connect cli-app with IOTA Javascript Library
I installed IOTA CLI Wallet and executing 'iota-cli' works after iri is executed. I get NodeInfo command run on iota-cli from my terminal also. So I guess a stand alone IOTA wallet core is now ...
2
votes
0
answers
40
views
Caching account data
Reading through the documentation for the IOTA Javascript Library I realized the method iota.api.getAccountData can be provided with an starting index:
iota.api.getAccountData(seed, {start: 123}, ...
1
vote
1
answer
21
views
I transfered Iota to my TanglePay but it is reflecting on my activities rather than my main balance
I transferred Iota to my TanglePay wallet, but it's not showing in my balance, but rather showing in my activities. What can I do to make it reflect in my main balance?
1
vote
0
answers
75
views
What does the new parameter 'reference' do in sendTrytes?
PR #112 added a second parameter, namely String reference, to GetTransactionsToApproveResponse.
This parameter can also be set in sendTrytes. The Javadoc there says
Hash of transaction to start ...
0
votes
0
answers
36
views
Accessing JSON message from IRI node API using Python 3
I am using one command tangle. The tangle is running on Ubuntu machine. From the list of APIs given for IRI node, I'm trying to broadcast a transaction. For this, the first step is to get ...
0
votes
0
answers
55
views
What is the difference between IRI-Playbook and IRI full node (Private tangle)?
I know there is three type of full node:
1- mainnet
2- devnet
3- testnet
I wand to build private IoTA network with full control.
So, I have found tutorial for private tangle:
https://docs.iota.org/...
0
votes
0
answers
43
views
How to understand if a transfer is an ingoing or an outgoing one by calling getAccountData?
I'd like to know how I can check if a transfer is an ingoing or an outgoing one, and know the respective sent/received amount by calling getAccountData from the Iota JavaScript library.