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
BurnCollectonV1 always fails with invalid authority, when called with CPI, or just using the ts SDK.
Barebones repro:
constumi=getUmi(authority)constcollection=generateSigner(umi)awaitcreateCollectionV1(umi,{
collection,name: "Test Core Collection",uri: "",}).sendAndConfirm(umi)// this throws with Invalid AuthorityawaitburnCollectionV1(umi,{collection: collection.publicKey,compressionProof: null}).sendAndConfirm(umi)constexists=awaitumi.rpc.accountExists(collection.publicKey)console.log({ exists })
Program Logs:
| Program CoREENxT6tW1HoK8ypY1SxRMZTcVPm7R94rH4PZNhX7d invoke [1]
| Program log: Instruction: BurnCollection
| Program log: checks: {}
| Program log: approved: false rejected false
| Program log: approved: false rejected false
| Program log: Invalid Authority
| Program CoREENxT6tW1HoK8ypY1SxRMZTcVPm7R94rH4PZNhX7d consumed 6042 of 200000 compute units
| Program CoREENxT6tW1HoK8ypY1SxRMZTcVPm7R94rH4PZNhX7d failed: custom program error: 0x9
The text was updated successfully, but these errors were encountered:
BurnCollectonV1 always fails with invalid authority, when called with CPI, or just using the ts SDK.
Barebones repro:
The text was updated successfully, but these errors were encountered: