Dan

Results 6 comments of Dan

Check if there are any duplicated activities after the last merge. Was my issue.

@lorisleiva ``` "@metaplex-foundation/js": "^0.15.0", ``` ```ts const { nft } = await metaplex .nfts() .create({ tokenOwner, name: "Some name", uri: "https://someuri.com", sellerFeeBasisPoints: 6969, creators: [ { address: keypair.publicKey, verified: true,...

Thanks, this fixed my issue! Wondering why still not merged

@alexanderniebuhr had the same issue, fixed after I changed "moduleResolution" from "NodeNext" to "Node"

You can always bring your own zValidator (BYOZV) 😉 ```ts import type { ValidationTargets } from 'hono'; import { validator } from 'hono/validator'; import type { ZodSchema, z } from...