@iotexproject/kit 0.1.40 → 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 +1 -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;
|