Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 1.36 KB

AccountSignature.md

File metadata and controls

21 lines (16 loc) · 1.36 KB

aptos_api_dart.model.AccountSignature

Load the model package

import 'package:aptos_api_dart/api.dart';

Properties

Name Type Description Notes
type String
publicKey String All bytes (Vec) data is represented as hex-encoded string prefixed with 0x and fulfilled with two hex digits per byte. Unlike the Address type, HexEncodedBytes will not trim any zeros.
signature String All bytes (Vec) data is represented as hex-encoded string prefixed with 0x and fulfilled with two hex digits per byte. Unlike the Address type, HexEncodedBytes will not trim any zeros.
publicKeys BuiltList<String> The public keys for the Ed25519 signature
signatures BuiltList<String> Signature associated with the public keys in the same order
threshold int The number of signatures required for a successful transaction
bitmap String All bytes (Vec) data is represented as hex-encoded string prefixed with 0x and fulfilled with two hex digits per byte. Unlike the Address type, HexEncodedBytes will not trim any zeros.

[Back to Model list] [Back to API list] [Back to README]