Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
bc27b10
add extra arg to specify extra gas portion
Sep 16, 2023
313d351
changelog
Sep 16, 2023
2578e5a
fmt
Sep 16, 2023
116caf6
fix the test
Sep 18, 2023
024405b
add call builders
Sep 25, 2023
e7b9c0e
Update changelog
Sep 25, 2023
da053c6
fix spelling
Sep 25, 2023
e872567
introduce bare calls alongside builder api
Sep 27, 2023
9df632f
add docs
Sep 27, 2023
86fab73
add upload builder
Sep 27, 2023
9e7814e
remove async in upload
Sep 27, 2023
2b3260f
ignore doctest
Sep 27, 2023
3bef64c
update integration tests
Sep 27, 2023
ad43cce
`submit_dry_run()` -> `dry_run()`
Sep 27, 2023
5109e64
format tests
Sep 27, 2023
9e5b311
fixes
Sep 27, 2023
7e7a02e
fmt
Sep 27, 2023
8e8713f
another fmt
Sep 27, 2023
8cdf350
Make env cloneable and take constructor as mut ref
Sep 28, 2023
505e582
one more fix
Sep 28, 2023
48e9543
remove unnecessary trait bound
Sep 28, 2023
93221db
remove more trait bounds
Sep 28, 2023
a8ccedf
fix tests and fmt
Sep 28, 2023
3c600b4
fix tests and tweak drink backend
Sep 28, 2023
0c076f4
move margin call to separate trait
Sep 28, 2023
3d3e04d
update docs
Sep 28, 2023
f1a3228
add BuilderClient as supertrait of E2EBackend and fix docs
Sep 28, 2023
bb332ad
fix more tests and docs
Sep 28, 2023
975762a
one last doc fix
Sep 28, 2023
714d7d8
Merge branch 'master' into gn/extra_gas_config
Sep 28, 2023
2855db2
UI tests
Sep 28, 2023
c091243
Remove unecessary trait bounds
Sep 29, 2023
5f11cbc
remove move unecessary trait bounds
Sep 29, 2023
62b1608
one more missing trait
Sep 29, 2023
d96fed4
Revert "UI tests"
Sep 29, 2023
61a0fa0
keep Clone with custom env in UI tests
Sep 29, 2023
6af9c46
remove duplicate derive
Sep 29, 2023
02bb3ec
add proper dry-run in drink
Oct 3, 2023
2d62be8
reformat the trait and add gas limit option
Oct 3, 2023
6be1cdc
fmt example
Oct 3, 2023
8036919
update docs
Oct 3, 2023
1bebfc9
Merge branch 'master' into gn/extra_gas_config
Oct 3, 2023
d7c6be4
fix CI by adding necessary trait bounds
Oct 4, 2023
7d6aafa
fix CI
Oct 4, 2023
3d8f9ba
Update integration-tests/call-builder-return-value/lib.rs
Oct 7, 2023
d3560c3
Merge branch 'master' into gn/extra_gas_config
Oct 7, 2023
7542d5a
Suggestions for removing code duplication in #1917 (#1938)
ascjones Oct 17, 2023
aef2dcd
add dummy error struct to drink
Oct 17, 2023
c5b78de
Merge branch 'master' into gn/extra_gas_config
Oct 17, 2023
c649b58
remove default
Oct 17, 2023
c5c1de5
pass args to instantiate dry run correctly
Oct 18, 2023
ccac9ff
add license files
Oct 18, 2023
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
Prev Previous commit
Next Next commit
add BuilderClient as supertrait of E2EBackend and fix docs
  • Loading branch information
SkymanOne committed Sep 28, 2023
commit f1a3228136bdab8e580dc22d58d2b55756579d50
2 changes: 1 addition & 1 deletion crates/e2e/src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ use subxt::dynamic::Value;
/// Full E2E testing backend: combines general chain API and contract-specific operations.
#[async_trait]
pub trait E2EBackend<E: Environment = DefaultEnvironment>:
ChainBackend + ContractsBackend<E>
ChainBackend + ContractsBackend<E> + BuilderClient<E>
{
}

Expand Down