From 7634cfce464cd8b3afeb50309ad0205f810d3908 Mon Sep 17 00:00:00 2001 From: Mikhail <16622558+mmv08@users.noreply.github.com> Date: Thu, 11 Jul 2024 11:38:11 +0200 Subject: [PATCH] Update src/types.ts Co-authored-by: Nicholas Rodrigues Lordello --- src/types.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/types.ts b/src/types.ts index d20f80456..acc3fe04c 100644 --- a/src/types.ts +++ b/src/types.ts @@ -29,7 +29,7 @@ export interface SingletonDeploymentJSON { // 1.3.0: canonical, eip155, zksync // 1.4.1: canonical, zksync // Ex: deployments: { "canonical": { "codeHash": "0x1234", "address": "0x5678"}} - deployments: AtLeastOne>; + deployments: AtLeastOne>; // A record of network addresses, where the key is the network identifier and the value is either a single address type or an array of address types. networkAddresses: Record; @@ -63,7 +63,7 @@ export interface SingletonDeployment { // 1.3.0: canonical, eip155, zksync // 1.4.1: canonical, zksync // Ex: deployments: { "canonical": { "codeHash": "0x1234", "address": "0x5678"}} - deployments: AtLeastOne>; + deployments: AtLeastOne>; // A record of network addresses, where the key is the network identifier and the value is the address. networkAddresses: Record; @@ -77,7 +77,7 @@ export interface SingletonDeploymentV2 { released: boolean; contractName: string; version: string; - deployments: AtLeastOne>>; + deployments: AtLeastOne>; /* eslint-disable-next-line @typescript-eslint/no-explicit-any */ abi: any[]; networkAddresses: Record;