(shapeOptions: {
url: string
params?: Record<string, unknown>
})
| 358 | } |
| 359 | |
| 360 | function getStableShapeIdentity(shapeOptions: { |
| 361 | url: string |
| 362 | params?: Record<string, unknown> |
| 363 | }): string { |
| 364 | return JSON.stringify( |
| 365 | toStableSerializable({ |
| 366 | url: shapeOptions.url, |
| 367 | params: shapeOptions.params ?? null, |
| 368 | }), |
| 369 | ) |
| 370 | } |
| 371 | |
| 372 | // Check if a message contains txids in its headers |
| 373 | function hasTxids<T extends Row<unknown>>( |
no test coverage detected