Skip to content

removeProductSync

removeProductSync(client, options): Promise<OutputType>

Defined in: packages/synapse-core/src/sp-registry/remove-product.ts:128

Remove a product from the service provider and wait for confirmation

Removes a product from the calling provider’s offerings and waits for the transaction to be confirmed. Returns the receipt with the event.

ParameterTypeDescription
clientClient<Transport, Chain, Account>The viem client with account to use for the transaction.
options{ contractAddress?: `0x${string}`; onHash?: (hash) => void; productType?: number; }removeProductSync.OptionsType
options.contractAddress?`0x${string}`Service provider registry contract address. If not provided, the default is the registry contract address for the chain.
options.onHash?(hash) => voidCallback function called with the transaction hash before waiting for the receipt.
options.productType?numberThe product type to remove (0 for PDP). Defaults to 0.

Promise<OutputType>

The transaction receipt and extracted event removeProductSync.OutputType

Errors removeProductSync.ErrorType

import { removeProductSync } from '@filoz/synapse-core/sp-registry'
import { createWalletClient, http } from 'viem'
import { privateKeyToAccount } from 'viem/accounts'
import { calibration } from '@filoz/synapse-core/chains'
const account = privateKeyToAccount('0x...')
const client = createWalletClient({
account,
chain: calibration,
transport: http(),
})
const { receipt, event } = await removeProductSync(client, {
productType: 0,
onHash: (hash) => console.log('Transaction sent:', hash),
})
console.log('Removed provider ID:', event.args.providerId)
console.log('Removed product type:', event.args.productType)