Most Popular

1074 questions
2
votes
2 answers

What sensor could I use to contribute to the data marketplace when it goes live?

I understand from another question that there will be an API to allow the public to be able to contribute to the experiment sometime in December. Could you advise of a particular type of sensor that would be useful for this?
2
votes
1 answer

How can I track the distribution of iota?

I am interested to follow the distribution from iota. Can we evaluate the IOTA distribution only after a snapshot? And how it is done? Something like this.
Oyren
  • 804
  • 5
  • 16
2
votes
3 answers

How can IOTA's proof of work provide sufficient network security?

This is a controversial post I found in the IOTA slack. The concerns are regarding IOTA's security. How does IOTA approach the specific statements? IOTA is fundamentally broken. It's a PoW crypto that uses a dag (ok). Hype aside it's a minor…
Tobi MZ
  • 1,607
  • 1
  • 12
  • 31
2
votes
1 answer

Where can I find official information or contacts about IOTA Foundation?

I was looking for an official contact to get in touch with the IOTA Foundation staff. I found many community websites with a lot of useful information, but those are all unofficial. I wasn't able to find anything contact on the official website…
overkill22
  • 590
  • 3
  • 11
2
votes
0 answers

Invalid response from server using iota.lib.js

I try the sendTransfer command on my full node. After long time, I get this error: Error: Invalid Response: at Object.invalidResponse (/home/atena/iota/node_modules/iota.lib.js/lib/errors/requestErrors.js:5:12) at makeRequest.prepareResult…
Agustin Tena
  • 311
  • 1
  • 5
2
votes
1 answer

How will PEAQ tokens interact with IOTA and the Tangle?

PEAQ is a new platform that will be developed on top of IOTA and the Tangle that will allow for tokenization, similar to the ERC-20 standard of Ethereum. With it's launch we will likely see several new tokens pop up that are built on top of the…
aboose
  • 3,135
  • 3
  • 15
  • 37
2
votes
2 answers

How to calculate the outputId?

How can I calculate the output id with transaction id and output index? An OutputId is the the concatenation of transactionId+outputIndex where outputIndex needs to be converted to little endian first. Hex-encoded with 0x prefix. (The transactionId…
Thoralf
  • 166
  • 4
2
votes
4 answers

How to specify a message or tag within a transaction

I would like to create transaction using IotaWallet of wallet.rs containing a message or tag. Currently I perfectly create a transaction for Alice wallet, using: from iota_wallet import IotaWallet # This example sends a transaction. wallet =…
2
votes
1 answer

Iota explorer installation fails for private tangle

I'am trying to start the explorer for a private tangle by following the steps in https://github.com/iotaledger/one-click-tangle. The explorer installation process (running the command: ./tangle-explorer.sh install ../hornet-private-net) end with the…
2
votes
2 answers

Tips selection for Indexed Messages

When a Client is creating a Message with an Indexation Payload, can it freely choose the tips/parent to which to refer? Thanks.
2
votes
1 answer

Getting error related to deploying the Graph on ShimmerEVM for DeX or other use cases "gas limit exceeds maximum allowed"

The Graph is a protocol for building decentralized applications (dApps) quickly on Ethereum and IPFS using GraphQL. Graph Node is an open source Rust implementation that event sources the Ethereum blockchain to deterministically update a data store…
Antonio Nardella
  • 1,074
  • 5
  • 17
2
votes
2 answers

How to interpret the gasPrice?

How to interpret the gasPrice? Which unit is it and how to calculate how much SMR it is? I followed this tutorial and I have following transactionReceipt: { hash: '0x299db77d4ac8d33b3507fa0a0eb58ee40a2996ea628e7e1348f6283b4813cdee', type: 0, …
Antonio Nardella
  • 1,074
  • 5
  • 17
2
votes
1 answer

How do I get transactionId and amount from an outputId

With let output = client.get_output(&output_id).await?; I get the output like in this example https://wiki.iota.org/shimmer/iota.rs/how_tos/get_output/ How do I get transaction_id and amount?
Antonio Nardella
  • 1,074
  • 5
  • 17
2
votes
1 answer

Is there a way to sign a transaction?

I would like to create a system whereby a client signs a message to authenticate itself in Shimmer. What are my options?
Antonio Nardella
  • 1,074
  • 5
  • 17
2
votes
0 answers

How can I send funds from an EVM smart contract to a L1 address?

I am trying to implement a smart contract to which users can send their funds and then these can be withdrawn to their L1 address. I found and modified some testing code from the wasp repository…