@iotexproject/kit 0.2.4 → 0.2.6
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/index.d.ts +9 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7060,11 +7060,6 @@ declare class Staking {
|
|
|
7060
7060
|
epochRewardPortion: number;
|
|
7061
7061
|
blockRewardPortion: number;
|
|
7062
7062
|
} | null>;
|
|
7063
|
-
candidateUpdate({ name, operatorAddress, rewardAddress }: {
|
|
7064
|
-
name: string;
|
|
7065
|
-
operatorAddress: `0x${string}`;
|
|
7066
|
-
rewardAddress: `0x${string}`;
|
|
7067
|
-
}, ctx?: ConfigContext): Promise<any>;
|
|
7068
7063
|
getEndorseBucketsByDelegate(args: {
|
|
7069
7064
|
ownerAddress: `0x${string}` | `io${string}`;
|
|
7070
7065
|
}, ctx?: ConfigContext): Promise<CompositeBucket[]>;
|
|
@@ -8689,6 +8684,7 @@ declare class Delegate {
|
|
|
8689
8684
|
amount: string;
|
|
8690
8685
|
duration: string;
|
|
8691
8686
|
autoStake: boolean;
|
|
8687
|
+
blsPubKey: string;
|
|
8692
8688
|
}, ctx?: ConfigContext): Promise<any>;
|
|
8693
8689
|
upsertRewardDistribution(args: {
|
|
8694
8690
|
foundationRewardPortion: number;
|
|
@@ -8699,6 +8695,7 @@ declare class Delegate {
|
|
|
8699
8695
|
name: string;
|
|
8700
8696
|
operatorAddress: string;
|
|
8701
8697
|
rewardAddress: string;
|
|
8698
|
+
blsPubKey?: string;
|
|
8702
8699
|
}, ctx?: ConfigContext): Promise<any>;
|
|
8703
8700
|
}
|
|
8704
8701
|
declare const modules: {
|
|
@@ -9480,6 +9477,13 @@ declare class Delegate$1 extends BaseDBModule {
|
|
|
9480
9477
|
status: string;
|
|
9481
9478
|
data: null;
|
|
9482
9479
|
}>;
|
|
9480
|
+
updateDelegateLogo({ logo, temp_eth_address }: {
|
|
9481
|
+
logo: string;
|
|
9482
|
+
temp_eth_address: string;
|
|
9483
|
+
}): Promise<{
|
|
9484
|
+
status: string;
|
|
9485
|
+
data: null;
|
|
9486
|
+
}>;
|
|
9483
9487
|
}
|
|
9484
9488
|
declare const modules$1: {
|
|
9485
9489
|
account: Account;
|