Most Popular

1074 questions
1
vote
2 answers

How to deploy your own Tangle currently?

I'm developing a project that runs upon a private Tangle, deployed locally on my PC. After some updates on the Wiki IOTA website (https://wiki.iota.org/), I can't find the relative documentation describing how to install and run a private Tangle…
1
vote
1 answer

Problem with @iota/client npm package in react app

I am trying to use @iota/client package. But on building react application I get this error: /node_modules/@iota/client/out/lib/Client.js:1:2 1: MZ��!�☺L�!This program cannot be run in DOS mode. ^ 2: $�uG error during build: Error: Unexpected…
Sam Rouski
  • 11
  • 1
1
vote
0 answers

if we use multi graph zero knowledge proof for iota authentication than it will be more efficient than the present authentication scheme

I currently want to use multi graph zero knowledge proof for iota authentication but I want to know that it will be efficient than the present scheme
1
vote
0 answers

What is the difference between Reality-based UTXO ledger and Voting DAG

I was reading the paper Tangle 2.0, which explains the recent research advancement in the protocol. I understand the fact that UTXO ledger can have conflicts and these conflicts are resolved by selecting the reality in the branch DAG. However, I am…
1
vote
1 answer

Can't install iota_client on RPi 4

As part of my PhD project, I managed to install two Hornet nodes, one on my laptop and one on my RPi 4. However, I can't install the iota_client on the RPi to start the coding process. Specifically, although I install maturin, I can't proceed with…
1
vote
1 answer

Private Tangle spawns unissued messages

I set up my own private tangle and it works well. Then I shut down the spammer in order to control the messages issued, anyway, there are messages with indexation payload emitted periodically and I can't figure out who is issuing them. These…
1
vote
2 answers

How to get ALL NFTs form a 'collectionId' on Shimmer L1

Going of Anotnio's answer here, we are able to dial into the NFTs. How to keep track of an NFT or a collection of NFTs on L1? This get's me to the immutable data we are looking for, including the collectionID, which we can use in the Shimmer…
0DN
  • 11
  • 1
1
vote
1 answer

IOTA indexed messages using IOTA address

Is it possible to encrypt or make sure that the indexed IOTA messages are received/extracted only by receiver they are meant for. My user case: User A, B, and C each have IDs that are known to all users (A,B,C in this case). Now user A want to send…
1
vote
1 answer

How to store data from IoT machine on private Stardust tangle

I have deployed a private Stardust network and I want to be able to store data from IoT machines on it, which is the most suitable transaction type to do this? I am currently using Tagged Payload transaction type but my questions is how can I access…
Antonio Nardella
  • 1,074
  • 5
  • 17
1
vote
1 answer

iota_wallet.common.IotaWalletError while synchronizing the account

In my code I am synchronizing an account with 2000 addresses to get the latest state. For this part of the code I am trying to get the amount of NFTs in the first address def get_available_nfts(): logger.debug("Checking for available NFTs") …
Antonio Nardella
  • 1,074
  • 5
  • 17
1
vote
1 answer

Smart contract in WASM to vote for a provider always returns 0 votes

I am working with the local-setup and I have a smart contract to vote for a provider. In my schema: structs: Proposal: provider: String # provider name value: Uint64 # service value votes: Uint64 # votes amount state:…
Antonio Nardella
  • 1,074
  • 5
  • 17
1
vote
1 answer

How to do a multicall on ShimmerEVM?

In some cases, there is the need to gather synchronized data from the blockchain. A good example is querying token prices from Uniswap. One does not want to have the price for one token from block x and a price for another token at block…
Antonio Nardella
  • 1,074
  • 5
  • 17
1
vote
1 answer

How do I pass the id of the NFT on Shimmer to a smart contract running on ShimmerEVM?

I have this contract, pragma solidity >=0.8.11; import "https://github.com/iotaledger/wasp/blob/develop/packages/vm/core/evm/iscmagic/ISC.sol"; contract ProofContract { event NftEvent(IRC27NFT nft); function getNft() public { …
Antonio Nardella
  • 1,074
  • 5
  • 17
1
vote
1 answer

How can I access and modify the state of that alias output with my alias id?

I'm owning an alias output and I know its id. How can I access and modify the state of that alias output with my alias id? Question asked by Genzi God on Discord
Antonio Nardella
  • 1,074
  • 5
  • 17
1
vote
1 answer

How to keep track of an NFT or a collection of NFTs on L1?

What is the correct way to keep track of NFTs on the Shimmer base layer? Once NFT's are taken off a marketplace like Soonaverse, what the best way to track these?
Antonio Nardella
  • 1,074
  • 5
  • 17