-
Notifications
You must be signed in to change notification settings - Fork 62
feat(iota-transactional-test-runner): Make so that a "simple" Abstract Account could be created more easily + aa gas funding #9604
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
Merged
Dkwcs
merged 11 commits into
vm-lang/aa-auth/8805-beta-feature-branch
from
vm-lang/aa-auth/9277-aa-creation-test-runner
Dec 15, 2025
Merged
Conversation
This file contains hidden or 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
…n and support deny for move authenticators # Description of change The account creation Move API was simplified by removing `AuthenticatorInfoV1CompatibilityProof`. Support `Deny` for Move authenticators on the signing phase. ## Links to any relevant issues fixes #9459 fixes #8856 Co-authored-by: Valerii Reutov <valeriy.reutov@gmail.com>
A new iota-adapter-test-runner subcommand has been added, allowing independent publishing of dependencies for Move code used in tests. This helps avoid duplication and improves overall flexibility. New way of creating abstract accounts that store in the test_runner storage and funded since initialization via init-abstract-account
|
The latest updates on your projects. Learn more about Vercel for GitHub. 6 Skipped Deployments
|
This was
linked to
issues
Dec 12, 2025
valeriyr
approved these changes
Dec 15, 2025
Base automatically changed from
vm-lang/cherry-pick-create-account-and-deny
to
vm-lang/aa-auth/8805-beta-feature-branch
December 15, 2025 10:17
…e-branch' into vm-lang/aa-auth/9277-aa-creation-test-runner
46a9b78
into
vm-lang/aa-auth/8805-beta-feature-branch
40 checks passed
miker83z
pushed a commit
that referenced
this pull request
Jan 19, 2026
…t Account could be created more easily + aa gas funding (#9604) # Description of change **Added subcommand** is `publish-deps`. A new `publish-deps` subcommand that compiles and publishes support Move modules from a given path. Path can be relative to iota root directory or absolute. It looks like: ``` //# init --addresses test=0x0 --accounts A //# publish-deps --paths crates/iota-adapter-transactional-tests/data/account_abstraction/abstract_account.move //# publish --sender A --dependencies aa ``` **Added subcommand** is `init-abstract-account`. This subcommand creates and funds Abstract Accounts in tests. Wiring between Abstract Accounts and the existing `abstract` subcommand. `Abstract` subcommand is using abstract_accounts collection to get an early created abstract account as a TestAccount instance(gas is included). Example of new subcommand usage: `//# init-abstract-account --sender A --package-metadata object(3,1) --inputs "authenticate" "authenticate_hello_world" --aa-create-fn-path aa::abstract_account::create --aa-type AbstractAccount` ## Links to any relevant issues Fixes #9276 . Fixes #9277 . ## How the change has been tested Run iota-adapter-transactional-tests tests With `cargo simtest`
miker83z
pushed a commit
that referenced
this pull request
Jan 26, 2026
…t Account could be created more easily + aa gas funding (#9604) # Description of change **Added subcommand** is `publish-deps`. A new `publish-deps` subcommand that compiles and publishes support Move modules from a given path. Path can be relative to iota root directory or absolute. It looks like: ``` //# init --addresses test=0x0 --accounts A //# publish-deps --paths crates/iota-adapter-transactional-tests/data/account_abstraction/abstract_account.move //# publish --sender A --dependencies aa ``` **Added subcommand** is `init-abstract-account`. This subcommand creates and funds Abstract Accounts in tests. Wiring between Abstract Accounts and the existing `abstract` subcommand. `Abstract` subcommand is using abstract_accounts collection to get an early created abstract account as a TestAccount instance(gas is included). Example of new subcommand usage: `//# init-abstract-account --sender A --package-metadata object(3,1) --inputs "authenticate" "authenticate_hello_world" --aa-create-fn-path aa::abstract_account::create --aa-type AbstractAccount` ## Links to any relevant issues Fixes #9276 . Fixes #9277 . ## How the change has been tested Run iota-adapter-transactional-tests tests With `cargo simtest`
miker83z
pushed a commit
that referenced
this pull request
Jan 26, 2026
…t Account could be created more easily + aa gas funding (#9604) # Description of change **Added subcommand** is `publish-deps`. A new `publish-deps` subcommand that compiles and publishes support Move modules from a given path. Path can be relative to iota root directory or absolute. It looks like: ``` //# init --addresses test=0x0 --accounts A //# publish-deps --paths crates/iota-adapter-transactional-tests/data/account_abstraction/abstract_account.move //# publish --sender A --dependencies aa ``` **Added subcommand** is `init-abstract-account`. This subcommand creates and funds Abstract Accounts in tests. Wiring between Abstract Accounts and the existing `abstract` subcommand. `Abstract` subcommand is using abstract_accounts collection to get an early created abstract account as a TestAccount instance(gas is included). Example of new subcommand usage: `//# init-abstract-account --sender A --package-metadata object(3,1) --inputs "authenticate" "authenticate_hello_world" --aa-create-fn-path aa::abstract_account::create --aa-type AbstractAccount` ## Links to any relevant issues Fixes #9276 . Fixes #9277 . ## How the change has been tested Run iota-adapter-transactional-tests tests With `cargo simtest`
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
sc-platform
Issues related to the Smart Contract Platform group.
vm-language
Issues related to the VM & Language Team
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.
Description of change
Added subcommand is
publish-deps.A new
publish-depssubcommand that compiles and publishes support Move modules from a given path.Path can be relative to iota root directory or absolute.
It looks like:
Added subcommand is
init-abstract-account.This subcommand creates and funds Abstract Accounts in tests.
Wiring between Abstract Accounts and the existing
abstractsubcommand.Abstractsubcommand is using abstract_accounts collection to get an early created abstract account as a TestAccount instance(gas is included).Example of new subcommand usage:
//# init-abstract-account --sender A --package-metadata object(3,1) --inputs "authenticate" "authenticate_hello_world" --aa-create-fn-path aa::abstract_account::create --aa-type AbstractAccountLinks to any relevant issues
Fixes #9276 .
Fixes #9277 .
How the change has been tested
Run iota-adapter-transactional-tests tests
With
cargo simtest