-
Notifications
You must be signed in to change notification settings - Fork 27
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
Tests use permissionless l1 #641
Merged
Merged
Changes from 19 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
651ee90
basic teleporter test passing
cam-schultz 9a46f4f
bind validator manager interfaces
cam-schultz 9012825
consolidate deploy methods
cam-schultz a47a345
consolidate validator manager function call helpers
cam-schultz fb8af19
convert subnet on network creation
cam-schultz 68af482
build fix
cam-schultz ad53a47
consolidate init and deploy helpers
cam-schultz f4d418d
vdr churn test uses manager
cam-schultz 41b1f13
fix: use type param
cam-schultz 8a21d86
vdr churn uses manager
cam-schultz 0d8309e
collect signatures using sigagg
cam-schultz 2995f90
skip registry test
cam-schultz 1c9e89f
consolidate delegation helpers
cam-schultz 064f849
convert subnet supports proxy & all manager types
cam-schultz 1fd68ff
lint
cam-schultz c1fc63c
parameterize initial subnet weights
cam-schultz f53242c
wait to allow churn period to roll over
cam-schultz f7629d2
remove bootstrap vdrs from subnet
cam-schultz 8e4025d
go mod tidy
cam-schultz 9c783f5
cleanup
cam-schultz 19f1047
remove unused method
cam-schultz 5b3a79c
parameterize number of primary network validators
cam-schultz fdd3e57
depend on local relayer
cam-schultz e632c55
remove local dep
cam-schultz ea2c4d5
wip
cam-schultz 106a220
wip
cam-schultz d0fa517
p2p tests passing
cam-schultz 4dab87e
cleanup
cam-schultz c3e06c8
awm-relayer compat
cam-schultz 452b448
revert local awm-relayer dependent changes
cam-schultz 34d761f
Merge branch 'main' into tests-use-permissionless-l1
cam-schultz 5e57afc
initialize with uptime chain
cam-schultz 1bd1eda
build fix
cam-schultz 226937a
bump to ava go v1.12.0-fuji
cam-schultz 997097c
Merge branch 'main' into tests-use-permissionless-l1
cam-schultz 47ee410
feedback
cam-schultz 24dd273
Merge branch 'main' into tests-use-permissionless-l1
cam-schultz 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
35 changes: 33 additions & 2 deletions
35
abi-bindings/go/validator-manager/ERC20TokenStakingManager/ERC20TokenStakingManager.go
Large diffs are not rendered by default.
Oops, something went wrong.
2,190 changes: 2,190 additions & 0 deletions
2,190
abi-bindings/go/validator-manager/interfaces/IPoSValidatorManager/IPoSValidatorManager.go
Large diffs are not rendered by default.
Oops, something went wrong.
1,228 changes: 1,228 additions & 0 deletions
1,228
abi-bindings/go/validator-manager/interfaces/IValidatorManager/IValidatorManager.go
Large diffs are not rendered by default.
Oops, something went wrong.
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.
I added this to allow the deployment utility to return an
IPoSValidatorManager
object, and recover theERC20
instance after the fact. It also seems reasonable that use cases will emerge that will want to access the staked asset programatically.