From 61905e38d42b54c706926062b3b35eee769cef83 Mon Sep 17 00:00:00 2001 From: Andrei Date: Thu, 24 Aug 2023 23:09:29 +0700 Subject: [PATCH] fix: change modifier of the 'core' field in staking class --- packages/sdk/src/staking/staking.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sdk/src/staking/staking.ts b/packages/sdk/src/staking/staking.ts index c92785c9..f80d5249 100644 --- a/packages/sdk/src/staking/staking.ts +++ b/packages/sdk/src/staking/staking.ts @@ -31,7 +31,7 @@ import { } from "./types.js"; export class LidoSDKStaking { - protected core: LidoSDKCore; + readonly core: LidoSDKCore; protected contractStETH: | GetContractReturnType | undefined;