You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{validateExport}from'@interop/wallet-export-ts'constexportEndpoint=process.env.EXPORT_ENDPOINTconstexportResponse=awaitfetch(exportEndpoint,{headers: {'accept': 'application/x-tar'}})awaitvalidateExport(exportResponse.blob())// note blob() is async, so this is taking a Promise as input// { valid: true, errors: [] }
Implement (and export from the npm library) a
validateExportStream
function.importActorProfile
function)manifest.yaml
file (later on we're gonna check the schema on that file too)activitypub
top level folderactivitypub/actor.json
andoutbox.json
See spec at https://codeberg.org/fediverse/fep/src/branch/main/fep/6fcd/fep-6fcd.md#activitypub-export-example
The text was updated successfully, but these errors were encountered: