对 DAML 的命令提交服务的一次调用中的多个命令是否会导致一个或多个事务?

Do multiple commands in one call to DAML's Command Submission Service result in one or many transactions?

Commands 对象上的 commands 字段采用 Command 对象的列表。描述为

Individual elements of this atomic command.

这是否意味着命令列表将导致单个事务?命令是否保证按提供的顺序提交,即事务树中相应的子事务按该顺序发生?

https://github.com/digital-asset/daml/blob/52d2026b2a57c9d82e7d53d6d694dcf775de4209/ledger-api/grpc-definitions/com/digitalasset/ledger/api/v1/command_submission_service.proto#L39 and https://docs.daml.com/app-dev/ledger-api-introduction/proto-docs.html#submitrequest 所示,它们会导致单笔交易。