mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 09:51:36 +00:00
* Initial plan * Initial plan * cmd/pushtx, .github/workflows: add raw transaction broadcast tool with funnel fallback Add a standalone CLI tool (pushtx) for decoding and submitting raw signed Ethereum transactions to any JSON-RPC endpoint. Includes Gnosis Safe funnel fallback for insufficient-funds scenarios and calldata detection for the common RLP broadcast error. Files added: - cmd/pushtx/main.go: core tool with tx decode, summary, and broadcast - cmd/pushtx/funnel.go: Gnosis Safe execTransaction fallback - cmd/pushtx/main_test.go: tests for core functionality - cmd/pushtx/funnel_test.go: tests for funnel and calldata detection - .github/workflows/build.yml: CI workflow for build and test Files modified: - Makefile: add pushtx target - .gitignore: add cmd/pushtx/pushtx binary Co-authored-by: drqsatoshi <240532885+drqsatoshi@users.noreply.github.com> * cmd/pushtx: add Tenderly simulation URL to funnel comment Co-authored-by: drqsatoshi <240532885+drqsatoshi@users.noreply.github.com> * Initial plan * Initial plan Co-authored-by: drqsatoshi <240532885+drqsatoshi@users.noreply.github.com> * Makefile, build/ci.go: add pushtx to .PHONY and distribution archives Co-authored-by: drqsatoshi <240532885+drqsatoshi@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: drqsatoshi <240532885+drqsatoshi@users.noreply.github.com>
60 lines
914 B
Text
60 lines
914 B
Text
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
#
|
|
# If you find yourself ignoring temporary files generated by your text editor
|
|
# or operating system, you probably want to add a global ignore instead:
|
|
# git config --global core.excludesfile ~/.gitignore_global
|
|
|
|
*/**/*un~
|
|
*/**/*.test
|
|
*un~
|
|
.DS_Store
|
|
*/**/.DS_Store
|
|
|
|
#*
|
|
.#*
|
|
*#
|
|
*~
|
|
.project
|
|
.settings
|
|
|
|
# used by the Makefile
|
|
/build/_workspace/
|
|
/build/cache/
|
|
/build/bin/
|
|
/geth*.zip
|
|
|
|
# used by the build/ci.go archive + upload tool
|
|
/geth*.tar.gz
|
|
/geth*.tar.gz.sig
|
|
/geth*.tar.gz.asc
|
|
/geth*.zip.sig
|
|
/geth*.zip.asc
|
|
|
|
|
|
# travis
|
|
profile.tmp
|
|
profile.cov
|
|
|
|
# IdeaIDE
|
|
.idea
|
|
*.iml
|
|
|
|
# VS Code
|
|
.vscode
|
|
|
|
tests/spec-tests/
|
|
|
|
# binaries
|
|
cmd/abidump/abidump
|
|
cmd/abigen/abigen
|
|
cmd/blsync/blsync
|
|
cmd/clef/clef
|
|
cmd/devp2p/devp2p
|
|
cmd/era/era
|
|
cmd/ethkey/ethkey
|
|
cmd/evm/evm
|
|
cmd/geth/geth
|
|
cmd/rlpdump/rlpdump
|
|
cmd/workload/workload
|
|
cmd/keeper/keeper
|
|
cmd/pushtx/pushtx
|