@galacticcouncil/sdk-next 0.9.0-pr203-48c7ee9 → 0.10.0-pr206-70b5b04

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.
@@ -0,0 +1,16 @@
1
+ export declare const CONVICTIONS: {
2
+ readonly none: 0.1;
3
+ readonly locked1x: 1;
4
+ readonly locked2x: 2;
5
+ readonly locked3x: 3;
6
+ readonly locked4x: 4;
7
+ readonly locked5x: 5;
8
+ readonly locked6x: 6;
9
+ };
10
+ export type TConviction = keyof typeof CONVICTIONS;
11
+ export type TVote = {
12
+ id: number;
13
+ amount: bigint;
14
+ conviction: TConviction;
15
+ };
16
+ export declare const isConviction: (conviction: string) => conviction is TConviction;
@@ -0,0 +1 @@
1
+ export declare function getAccountAddress(seed: string): import("polkadot-api").SS58String;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacticcouncil/sdk-next",
3
- "version": "0.9.0-pr203-48c7ee9",
3
+ "version": "0.10.0-pr206-70b5b04",
4
4
  "description": "Galactic next gen sdk (papi)",
5
5
  "author": "GalacticCouncil",
6
6
  "repository": {