Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: txn command to simulate #1283

Merged
merged 44 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
25849da
feat: --no-build command allows returning built transaction
willemneal May 2, 2024
4ea2d25
fix: clippy and fmt
willemneal May 3, 2024
58daf6c
fix: address PR comments and skip install step for build only deploy
willemneal May 7, 2024
a0e3923
feat: add txn subcommand
willemneal May 2, 2024
0fedbdb
Merge branch 'main' into feat/txn-command
leighmcculloch May 10, 2024
10ac181
fix that should have been part of the merge
leighmcculloch May 10, 2024
d1d6e33
fix that should have been part of the merge
leighmcculloch May 10, 2024
0cf656d
rename txn to tx
leighmcculloch May 10, 2024
151026a
fix: remove `tx sign`
willemneal May 12, 2024
a43ac7a
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal May 13, 2024
64719b8
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal May 13, 2024
a3ee1aa
fix: print json for `tx send`
willemneal May 13, 2024
588afd8
fix: only use stdin as input for txn simulate/send commands
willemneal May 13, 2024
8e0db60
fix: remove `txn inspect` for now
willemneal May 14, 2024
b2320d3
fix: add back cargo alias
willemneal May 14, 2024
c8247b7
fix: docs
willemneal May 14, 2024
b249242
fix: fmt
willemneal May 14, 2024
60e3a9d
fix: expect fund to work
willemneal May 14, 2024
26346a2
fix: make commands network runnable and fix tests
willemneal May 20, 2024
5a13617
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal May 20, 2024
1c3ec6d
fix: fmt
willemneal May 20, 2024
17e3ad2
fix: use default TestEnv
willemneal May 20, 2024
df35760
fix: clippy
willemneal May 20, 2024
33a7055
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal May 27, 2024
87f965c
fix: remove send as it is hard to test without sign
willemneal May 27, 2024
7387c55
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal May 27, 2024
bb6d154
fix: docs
willemneal May 27, 2024
6fefb97
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal May 29, 2024
121d4b9
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal May 30, 2024
fc3874c
fix: simulate should return a Txn Envelope
willemneal May 30, 2024
0437ac6
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal May 31, 2024
a9996a5
fix: testing added DeployKind to allow deploys to return various data
willemneal May 31, 2024
0053862
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal May 31, 2024
0552599
fix: add check for sim_only
willemneal May 31, 2024
4140bc9
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal Jun 17, 2024
98b4164
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal Jun 18, 2024
b2a075f
fix: update to use new RPC method
willemneal Jun 18, 2024
0be5d20
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal Jun 20, 2024
c65f16c
fix: tests and docs
willemneal Jun 20, 2024
d62de52
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal Jun 21, 2024
0a2e72e
fix: address comments and use new tx.into() for tx_env for cleaner code
willemneal Jun 21, 2024
348d647
fix: remove inspect.rs
willemneal Jun 21, 2024
61907ca
fix: update tests
willemneal Jun 21, 2024
e8b48a6
Merge remote-tracking branch 'origin/main' into feat/txn-command
willemneal Jun 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[alias] # command aliases
f = "fmt"
md-gen = "run --bin doc-gen --features clap-markdown"
s = "run --quiet --"
# b = "build"
# c = "check"
# t = "test"
Expand Down
Loading
Loading