@martiandao/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
19 lines • 610 B
TypeScript
import type { AccountSignature } from './AccountSignature';
import type { Address } from './Address';
/**
* Multi agent signature for multi agent transactions
*
* This allows you to have transactions across multiple accounts
*/
export declare type MultiAgentSignature = {
sender: AccountSignature;
/**
* The other involved parties' addresses
*/
secondary_signer_addresses: Array<Address>;
/**
* The associated signatures, in the same order as the secondary addresses
*/
secondary_signers: Array<AccountSignature>;
};
//# sourceMappingURL=MultiAgentSignature.d.ts.map