-
Notifications
You must be signed in to change notification settings - Fork 430
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
[E2E alternative backend]: Backend choice #1864
Merged
SkymanOne
merged 28 commits into
use-ink:master
from
pmikolajczyk41:pmikolajczyk41/e2e-macro
Aug 24, 2023
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
c04f89a
Parse backend type
pmikolajczyk41 c13ceca
Config tests
pmikolajczyk41 816030b
Extract client building
pmikolajczyk41 96c124f
OCD
pmikolajczyk41 d2abb06
CHANGELOG.md
pmikolajczyk41 316bf58
Merge remote-tracking branch 'origin/master' into pmikolajczyk41/e2e-…
pmikolajczyk41 37f8d09
Merge remote-tracking branch 'origin/master' into pmikolajczyk41/e2e-…
pmikolajczyk41 f679f73
Merge remote-tracking branch 'origin/master' into pmikolajczyk41/e2e-…
pmikolajczyk41 f8e295a
Add drink dependency, fix with wasm-instrument
pmikolajczyk41 7be1f3a
ChainApi
pmikolajczyk41 42484ff
Instantiate
pmikolajczyk41 06cbc9b
Calling
pmikolajczyk41 c454db3
Upload
pmikolajczyk41 b21fc27
Use all arguments
pmikolajczyk41 ec3936e
Build client in macro
pmikolajczyk41 17bf359
fmt, implement e2e backend
pmikolajczyk41 dcc746d
remove actor types
pmikolajczyk41 624d20f
convert accounts and hashes
pmikolajczyk41 2b67dc8
get rid of session
pmikolajczyk41 7f9b764
add dedicated example
pmikolajczyk41 158dd64
example working
pmikolajczyk41 97ac62b
clean a bit
pmikolajczyk41 20a36ca
Merge remote-tracking branch 'origin/master' into pmikolajczyk41/e2e-…
pmikolajczyk41 96f647f
merging cleanup
pmikolajczyk41 15aaa48
use published drink
pmikolajczyk41 f416edc
Review
pmikolajczyk41 04bb5e9
Add DRink! as valid word
pmikolajczyk41 ea738c2
Give it up
pmikolajczyk41 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we consider having a feature flag for this, since it is bringing in a few heavy substrate dependencies and (at the moment) is not the default backend.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fair point, I'll hide it tomorrow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it that heavy?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
~70 new dependencies, some of which are substrate crates (for state-machines, externalities, few pallets etc)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#1887