Questions tagged [raw-transaction]
A transaction byte-encoded using the Recursive-Length Prefix (RLP) algorithm. Before Constantinople, it needs to be signed before it will be accepted by the network.
267 questions
0 votes
1 answer
59 views
Having trouble deploying the ERC-2470 singleton factory to a new chain
I'm trying to deploy a new singleton factory to my own chain, but I'm not able to get the instructions listed on the page to work. Specifically I'm not able to deploy it from the one-time deployer ...
0 votes
1 answer
39 views
Cannot send transaction using ethers.js on Ganache local chain
This is my deploy.js const ethers = require("ethers"); const fs = require("fs"); async function main() { const provider = new ethers.providers.JsonRpcProvider( "http://...
0 votes
1 answer
81 views
How I can send FIL in filecoin network
My network: filecoin. I use this RPC: https://api.node.glif.io I try send FIL token from A to B address on filecoin network and I got error: { jsonrpc: '2.0', error: { code: 1, message: &...
0 votes
1 answer
384 views
future transaction tries to replace pending
I have an address A which I have funded with ETH. Now I want to crate a transaction to send the funds to a different address B. Creating and signing seems to work as I can decode the transaction and ...
1 vote
0 answers
24 views
How are ethereum transaction sent over the wire in Network to peers
I understand how ethereum transactions are signed and proapagated. But while comparing the output of rawTransaction with the wireshark capture of Etherum EOA transaction, I could not map the ...
0 votes
1 answer
302 views
Using `types.DynamicFeeTx` for `EIP-1559` in golang creates an invalid raw transaction hex
I am trying to create a raw EIP-1559 transaction using the DynamicFeeTx method since I want to provide a gas tip cap. When I create this raw transaction, sign it and encode it using rlp, I get a raw ...
0 votes
0 answers
35 views
transaction pending so long with high gas, correct nonce
I am making lottery contract, and want to execute set public variable by custom script. my contract code looks like this. // ... address[] public applicants; uint32 numWords = 5; function ...
2 votes
1 answer
107 views
Can you schedule an eth transfer in the future?
Is it possible for person A to schedule an eth transfer to person B 1 week in the future, possibly by offchain signing the transaction? I've seen the concept of offchain signing and am wondering if ...
2 votes
1 answer
112 views
Error signing transactions with Alchemy using safeSdk.executeTransaction(safeTransaction) from @safe-global/protocol-kit (gnosis-safe)
SOLVED - SOLUTION TO BE POSTED BY ME TOMORROW! Hello builders! One Line summary: safeSdk.executeTransaction(safeTransaction) from @safe-global/protocol-kit does not work for signing transactions, I ...
1 vote
1 answer
345 views
Having a signed tx object from mempool in js how can I rebuild raw tx data using ethersjs or web3js?
I have a pending signed tx object received through subscribe on pending transactions in js. I need to build raw tx data to be able to send it directly to the network, but the following code does not ...
0 votes
1 answer
120 views
Sign a transaction with Metamask which will be submitted later using a custom backend
Currently have a custom micro-service that sends & creates transactions depending on the use case which utilizes eth_sendRawTransaction meaning I'll need a web wallet to prompt the users to sign a ...
2 votes
1 answer
179 views
How to access funds if the Gnosis Safe website is shutdown?
Imagine that the Gnosis Safe website and services is shutdown, how can users access their funds?
2 votes
0 answers
170 views
Safely and simply withdraw all the balance of ETH from a wallet
I'll have a large of wallets, potentially, from which I'll be needing to withdraw ETH, and tokens, from time to time to the central, admin wallet. By a script, once a week. Instead of having to ...
1 vote
0 answers
13 views
Safely and simply withdraw all the balance of ETH from a wallet [duplicate]
I'll have a large of wallets, potentially, from which I'll be needing to withdraw ETH, and tokens, from time to time to the central, admin wallet. By a script, once a week. Instead of having to ...
1 vote
0 answers
187 views
how to to create and broadcast a custom token transaction in bsc with php?
i have custom token on bsc. i use some kornrunner class for signing my transaction and broadcast it but i have some problem here. when i send hex to bsc chain, return txid for me but blockHash & ...