@vechain/sdk-network
Version:
This module serves as the standard interface connecting decentralized applications (dApps) and users to the VeChainThor blockchain
15 lines (13 loc) • 358 B
text/typescript
import { type Revision } from '@vechain/sdk-core';
/**
* Input options for:
* * {@link AccountModule.getAccount},
* * {@link AccountModule.getBytecode},
* * {@link AccountModule.getStorage},
*/
export interface AccountInputOptions {
/**
* (Optional) The block number or ID to reference the bytecode version.
*/
revision?: Revision;
}