opnet 1.4.2 → 1.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- export declare const version = "1.4.2";
1
+ export declare const version = "1.4.4";
@@ -4,7 +4,7 @@ import { BigNumberish } from '../common/CommonTypes.js';
4
4
  import { OPNetTransactionTypes } from '../interfaces/opnet/OPNetTransactionTypes.js';
5
5
  import { TransactionBase } from '../transactions/Transaction.js';
6
6
  import { BlockHeaderChecksumProof, IBlock } from './interfaces/IBlock.js';
7
- export declare class Block implements Omit<IBlock, 'gasUsed' | 'ema' | 'baseGas' | 'deployedContracts'> {
7
+ export declare class Block implements Omit<IBlock, 'gasUsed' | 'ema' | 'baseGas' | 'deployments'> {
8
8
  readonly height: BigNumberish;
9
9
  readonly hash: string;
10
10
  readonly previousBlockHash: string;
@@ -27,6 +27,6 @@ export declare class Block implements Omit<IBlock, 'gasUsed' | 'ema' | 'baseGas'
27
27
  readonly gasUsed: bigint;
28
28
  readonly checksumProofs: BlockHeaderChecksumProof;
29
29
  readonly transactions: TransactionBase<OPNetTransactionTypes>[];
30
- readonly deployedContracts: Address[];
30
+ readonly deployments: Address[];
31
31
  constructor(block: IBlock, network: Network);
32
32
  }
@@ -28,5 +28,5 @@ export interface IBlockCommon {
28
28
  }
29
29
  export interface IBlock extends IBlockCommon {
30
30
  transactions?: ITransaction[] | TransactionBase<OPNetTransactionTypes>[];
31
- deployedContracts?: string[];
31
+ deployments?: string[];
32
32
  }