@fairmint/canton-node-sdk
Version:
Canton Node SDK
25 lines • 821 B
TypeScript
/**
* Create a new ANS entry
*
* @example
* ```typescript
* const entry = await client.createAnsEntry({
* name: 'my-app',
* url: 'https://my-app.com',
* description: 'My application'
* });
*
* ```;
*/
export declare const CreateAnsEntry: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
name: string;
url: string;
description: string;
}, {
entryContextCid: import("../../../../../generated/apps/validator/src/main/openapi/ans-external").components["schemas"]["ContractId"];
subscriptionRequestCid: import("../../../../../generated/apps/validator/src/main/openapi/ans-external").components["schemas"]["ContractId"];
name: string;
url: string;
description: string;
}>;
//# sourceMappingURL=create-entry.d.ts.map