Questions tagged [private]
The private tag has no summary.
70 questions
0 votes
1 answer
201 views
Hi my seed phrase is not bringing up my wallet address. I am 99.9% sure it is the correct seedphrase as I used the same one for several wallets
I have lost access to one of my wallets, it was created on the same seedphrase I used to create my coinbase wallet and metamask. I have re entered it and added accounts and the same public address ...
1 vote
0 answers
57 views
How can we employ libp2p to establish a secure private network that is impervious to unauthorized connections?
backgroung Currently, I am looking to utilize Helia to construct a private IPFS network. The critical issue at hand is "Ensuring that this private network remains inaccessible to external nodes.&...
2 votes
1 answer
134 views
Private Ethereum Network using PoA for Production
I want to setup a "production" private Ethereum network using PoA as the consensus algorithm. However the latest documentation stated that Geth only supports the Ethereum PoS consensus ...
1 vote
1 answer
51 views
Private Blockchain and Sensors
I hope this message finds you well. I am currently working on a tomato supply chain project. I am interested in deploying temperature, soil moisture and humidity sensors at three different farms, each ...
0 votes
1 answer
860 views
How can I get a private key from a mnemonic phrase? in python or other [duplicate]
I have a mnemonic phrase for my wallet. I want to use it in Python. Is there a way to I get a private key from a mnemonic phrase? I want to get litecoin wallet's private key
4 votes
3 answers
557 views
Calling private functions using Yul ( Solidity )
I'm currently learning Yul in Solidity and experimenting with the call() function to call other functions in inline assembly. I've noticed that as soon as a function is set to private, I receive a ...
2 votes
1 answer
145 views
Private POA Ethereum Gas Problem
I have setup a private POA Ethereum network for testing purpose. From this link: Is gas burned in a PoA network? it stated that the gas will be circulated in the network (i.e. fed back to the signer's ...
2 votes
1 answer
178 views
How do I prevent people from seeing my transactions and the information about these transactions?
I don't want to expose my pending transactions to the public mempool b/c I want to prevent arbitrage and tactics like frontrunning.
2 votes
1 answer
821 views
Best way to store private data in smart contract
I wanna to store some personal data as a string to my smart contract with simple store function like a note: mapping (address => string[]) private addressToNotes; function store (string memory ...
2 votes
1 answer
555 views
How are private transactions possible?
I'm curious about the origin of private transactions (how are they even possible, who came up with them) and how they work. Also, are private pools the same as relay services? Why have they gained ...
0 votes
1 answer
38 views
how to build private network for real use cases like enterprise ? is it possible to use HTTPS ?
hi dear reader thank you first for reading my post appreciated , i hope if you could help with this question mainly by providing the common ground and links to read more i only have 3 question 1- how ...
0 votes
1 answer
146 views
Accessing private data on a blockchain address using Brownie
I'm trying to practice on the private data exploit on ethereum and was wondering if there is a function like web3.eth.getStorageAt() implemented in brownie which would allow me to access the storage ...
1 vote
0 answers
68 views
Derivation of Owner Keys
Maybe it’s a silly question but I’m a silly person so here goes, it would appear as though the Owners keys from the legacy gnosis safe app was at some point derived from the mnemonic phrase. But then ...
1 vote
1 answer
240 views
Private variables with public view functions
In the Openzeppelin ERC721.sol contract, there are private variables introduced: // Token name string private _name; // Token symbol string private _symbol; These variables are then assigned a ...
1 vote
0 answers
79 views
How to increase OPCODE gas Price in Hyperledger Besu
I want to setup Private POA blockchain using hyperledger besu. I dont want people to deploy smart contract on the chain. I searched on google and found it some alternative solution to increase create ...