有没有办法列出我的帐户拥有的所有子帐户?

Is there a way to list all the subaccounts my account have?

我正在使用 Rust 制定一份合同,该合同创建子账户并将一些代币转移给它作为其功能的一部分,但由于我多次重复该过程来测试这些功能,我想知道我是否留下了许多已创建的子账户。有没有办法列出一个帐户拥有的所有子帐户?

没有简单的方法,因为每个子账户都是一个独立的账户,upper-level账户无法控制子账户。

尽管您可以尝试使用 Indexer for Explorer public database 来查询 accounts table,例如:

SELECT account_id FROM accounts WHERE account_id LIKE '%.youraccount.near';

自述文件

NOTE: Please, keep in mind that the access to the database is shared across everyone in the world, so it is better to make sure you limit the amount of queris and individual queries are efficient.