@reef-chain/react-lib 2.5.2 → 2.5.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,4 +1,4 @@
1
- import { reefState, network as nw } from '@reef-chain/util-lib';
1
+ import { reefState, network as nw, extension as extReef } from '@reef-chain/util-lib';
2
2
  import { Provider } from '@reef-chain/evm-provider';
3
3
  import { ReefSigner } from '../state';
4
4
  type Network = nw.Network;
@@ -14,6 +14,7 @@ interface State {
14
14
  signers: ReefSigner[];
15
15
  selectedReefSigner?: ReefSigner;
16
16
  reefState: any;
17
+ extension: extReef.InjectedExtension | undefined;
17
18
  }
18
19
  export interface InitReefStateOptions {
19
20
  network?: Network;