@iotexproject/kit 0.1.39 → 0.1.41
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 +3 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8863,7 +8863,6 @@ export type LaunchPadParam = {
|
|
|
8863
8863
|
};
|
|
8864
8864
|
export type CreateProjectParams = {
|
|
8865
8865
|
id?: number;
|
|
8866
|
-
recipient: `0x${string}`;
|
|
8867
8866
|
projectName: string;
|
|
8868
8867
|
tokenAddress: string;
|
|
8869
8868
|
owner: string;
|
|
@@ -8899,7 +8898,7 @@ declare class BondingCurve {
|
|
|
8899
8898
|
chainId?: undefined;
|
|
8900
8899
|
value?: undefined;
|
|
8901
8900
|
}>;
|
|
8902
|
-
upsertProject(args: CreateProjectParams, ctx?: ConfigContext): Promise<postgres.Row
|
|
8901
|
+
upsertProject(args: CreateProjectParams, ctx?: ConfigContext): Promise<postgres.Row>;
|
|
8903
8902
|
projectList(args: {}, ctx?: ConfigContext): Promise<postgres.RowList<postgres.Row[]> | undefined>;
|
|
8904
8903
|
projectDetail(args: {
|
|
8905
8904
|
projectName: string;
|
|
@@ -8938,6 +8937,7 @@ declare class BondingCurve {
|
|
|
8938
8937
|
data: any;
|
|
8939
8938
|
chainId: string;
|
|
8940
8939
|
value: string;
|
|
8940
|
+
type: string;
|
|
8941
8941
|
}[];
|
|
8942
8942
|
quote: string;
|
|
8943
8943
|
error?: undefined;
|
|
@@ -8946,6 +8946,7 @@ declare class BondingCurve {
|
|
|
8946
8946
|
address: `0x${string}`;
|
|
8947
8947
|
data: any;
|
|
8948
8948
|
chainId: string;
|
|
8949
|
+
type: string;
|
|
8949
8950
|
}[];
|
|
8950
8951
|
quote: string;
|
|
8951
8952
|
error?: undefined;
|