@obolnetwork/obol-sdk 2.11.5-rc.1 → 2.11.5
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.
- package/dist/browser/src/index.js +16 -7
- package/dist/browser/src/index.js.map +1 -1
- package/dist/cjs/src/index.js +9 -6
- package/dist/cjs/src/index.js.map +1 -1
- package/dist/esm/src/index.js +16 -7
- package/dist/esm/src/index.js.map +1 -1
- package/dist/types/src/eoa/eoa.d.ts +1 -1
- package/dist/types/src/exits/exit.d.ts +1 -1
- package/dist/types/src/incentives/incentives.d.ts +1 -1
- package/dist/types/src/splits/splitHelpers.d.ts +1 -1
- package/dist/types/src/splits/splits.d.ts +1 -1
- package/dist/types/src/verification/v1.10.0.d.ts +4 -4
- package/dist/types/src/verification/v1.6.0.d.ts +4 -4
- package/dist/types/src/verification/v1.7.0.d.ts +4 -4
- package/dist/types/src/verification/v1.8.0.d.ts +4 -4
- package/package.json +4 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ProviderType, type SignerType, type EOAWithdrawalPayload, type EOADepositPayload } from '../types';
|
|
1
|
+
import { type ProviderType, type SignerType, type EOAWithdrawalPayload, type EOADepositPayload } from '../types.js';
|
|
2
2
|
/**
|
|
3
3
|
* EOA can be used for managing EOA (Externally Owned Account) operations like withdrawals.
|
|
4
4
|
* @class
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ProviderType, ExitClusterConfig, ExitValidationPayload, ExitValidationBlob, SignedExitValidationMessage, ExistingExitValidationBlobData, FullExitBlob } from '../types';
|
|
1
|
+
import type { ProviderType, ExitClusterConfig, ExitValidationPayload, ExitValidationBlob, SignedExitValidationMessage, ExistingExitValidationBlobData, FullExitBlob } from '../types.js';
|
|
2
2
|
/**
|
|
3
3
|
* Exit validation and verification class for Obol distributed validators.
|
|
4
4
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ClaimableIncentives, type ETH_ADDRESS, type ProviderType, type SignerType, type ClaimIncentivesResponse } from '../types';
|
|
1
|
+
import { type ClaimableIncentives, type ETH_ADDRESS, type ProviderType, type SignerType, type ClaimIncentivesResponse } from '../types.js';
|
|
2
2
|
/**
|
|
3
3
|
* Incentives can be used for fetching and claiming Obol incentives.
|
|
4
4
|
* @class
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type OWRTranches, type ClusterValidator, type ETH_ADDRESS, type SplitRecipient, type SignerType, type SplitV2Recipient, type OVMArgs } from '../types';
|
|
1
|
+
import { type OWRTranches, type ClusterValidator, type ETH_ADDRESS, type SplitRecipient, type SignerType, type SplitV2Recipient, type OVMArgs } from '../types.js';
|
|
2
2
|
type Call = {
|
|
3
3
|
target: ETH_ADDRESS;
|
|
4
4
|
callData: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ClusterValidator, type ProviderType, type SignerType, type OVMRewardsSplitPayload, type OVMTotalSplitPayload, type OVMRequestWithdrawalPayload, type OVMDepositPayload } from '../types';
|
|
1
|
+
import { type ClusterValidator, type ProviderType, type SignerType, type OVMRewardsSplitPayload, type OVMTotalSplitPayload, type OVMRequestWithdrawalPayload, type OVMDepositPayload } from '../types.js';
|
|
2
2
|
/**
|
|
3
3
|
* ObolSplits can be used for creating and managing Obol splits.
|
|
4
4
|
* @class
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UintNumberType } from '@chainsafe/ssz/lib/type/uint';
|
|
2
|
-
import { type creatorAddressWrapperType, type creatorContainerType, type operatorAddressWrapperType, type operatorContainerType, validatorsContainerType } from './sszTypes';
|
|
1
|
+
import { UintNumberType } from '@chainsafe/ssz/lib/type/uint.js';
|
|
2
|
+
import { type creatorAddressWrapperType, type creatorContainerType, type operatorAddressWrapperType, type operatorContainerType, validatorsContainerType } from './sszTypes.js';
|
|
3
3
|
import { ByteListType, ByteVectorType, ContainerType, ListBasicType, ListCompositeType, BooleanType } from '@chainsafe/ssz';
|
|
4
|
-
import { type ValueOfFields } from '@chainsafe/ssz/lib/view/container';
|
|
5
|
-
import { type ClusterDefinition, type ClusterLock } from '../types';
|
|
4
|
+
import { type ValueOfFields } from '@chainsafe/ssz/lib/view/container.js';
|
|
5
|
+
import { type ClusterDefinition, type ClusterLock } from '../types.js';
|
|
6
6
|
type DefinitionFieldsV1X10 = {
|
|
7
7
|
uuid: ByteListType;
|
|
8
8
|
name: ByteListType;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UintNumberType } from '@chainsafe/ssz/lib/type/uint';
|
|
2
|
-
import { type creatorAddressWrapperType, type creatorContainerType, type operatorAddressWrapperType, type operatorContainerType, validatorsContainerType } from './sszTypes';
|
|
1
|
+
import { UintNumberType } from '@chainsafe/ssz/lib/type/uint.js';
|
|
2
|
+
import { type creatorAddressWrapperType, type creatorContainerType, type operatorAddressWrapperType, type operatorContainerType, validatorsContainerType } from './sszTypes.js';
|
|
3
3
|
import { ByteListType, ByteVectorType, ContainerType, ListCompositeType } from '@chainsafe/ssz';
|
|
4
|
-
import { type ValueOfFields } from '@chainsafe/ssz/lib/view/container';
|
|
5
|
-
import { type ClusterDefinition, type ClusterLock } from '../types';
|
|
4
|
+
import { type ValueOfFields } from '@chainsafe/ssz/lib/view/container.js';
|
|
5
|
+
import { type ClusterDefinition, type ClusterLock } from '../types.js';
|
|
6
6
|
type DefinitionFieldsV1X6 = {
|
|
7
7
|
uuid: ByteListType;
|
|
8
8
|
name: ByteListType;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UintNumberType } from '@chainsafe/ssz/lib/type/uint';
|
|
2
|
-
import { type creatorAddressWrapperType, type creatorContainerType, type operatorAddressWrapperType, type operatorContainerType, validatorsContainerType } from './sszTypes';
|
|
1
|
+
import { UintNumberType } from '@chainsafe/ssz/lib/type/uint.js';
|
|
2
|
+
import { type creatorAddressWrapperType, type creatorContainerType, type operatorAddressWrapperType, type operatorContainerType, validatorsContainerType } from './sszTypes.js';
|
|
3
3
|
import { ByteListType, ByteVectorType, ContainerType, ListCompositeType } from '@chainsafe/ssz';
|
|
4
|
-
import { type ValueOfFields } from '@chainsafe/ssz/lib/view/container';
|
|
5
|
-
import { type ClusterDefinition, type ClusterLock } from '../types';
|
|
4
|
+
import { type ValueOfFields } from '@chainsafe/ssz/lib/view/container.js';
|
|
5
|
+
import { type ClusterDefinition, type ClusterLock } from '../types.js';
|
|
6
6
|
type DefinitionFieldsV1X7 = {
|
|
7
7
|
uuid: ByteListType;
|
|
8
8
|
name: ByteListType;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UintNumberType } from '@chainsafe/ssz/lib/type/uint';
|
|
2
|
-
import { type creatorAddressWrapperType, type creatorContainerType, type operatorAddressWrapperType, type operatorContainerType, validatorsContainerType } from './sszTypes';
|
|
1
|
+
import { UintNumberType } from '@chainsafe/ssz/lib/type/uint.js';
|
|
2
|
+
import { type creatorAddressWrapperType, type creatorContainerType, type operatorAddressWrapperType, type operatorContainerType, validatorsContainerType } from './sszTypes.js';
|
|
3
3
|
import { ByteListType, ByteVectorType, ContainerType, ListBasicType, ListCompositeType } from '@chainsafe/ssz';
|
|
4
|
-
import { type ValueOfFields } from '@chainsafe/ssz/lib/view/container';
|
|
5
|
-
import { type ClusterDefinition, type ClusterLock } from '../types';
|
|
4
|
+
import { type ValueOfFields } from '@chainsafe/ssz/lib/view/container.js';
|
|
5
|
+
import { type ClusterDefinition, type ClusterLock } from '../types.js';
|
|
6
6
|
type DefinitionFieldsV1X8 = {
|
|
7
7
|
uuid: ByteListType;
|
|
8
8
|
name: ByteListType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@obolnetwork/obol-sdk",
|
|
3
|
-
"version": "2.11.5
|
|
3
|
+
"version": "2.11.5",
|
|
4
4
|
"description": "A package for creating Distributed Validators using the Obol API.",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/obolnetwork/obol-sdk/issues"
|
|
@@ -55,6 +55,9 @@
|
|
|
55
55
|
"registry": "https://registry.npmjs.org/",
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
+
"overrides": {
|
|
59
|
+
"viem": "2.21.8"
|
|
60
|
+
},
|
|
58
61
|
"dependencies": {
|
|
59
62
|
"@chainsafe/bls": "6.0.3",
|
|
60
63
|
"@chainsafe/blst": "^0.2.0",
|