Is it possible to get the nft contract owner, not just the nft owners

Trying to get the contract owner, not the creator, not the nft owners…
Is this possible with moralis?

Or web3? Like, can I read the read stuff of a contract and see the contract owner?

If they have a public variable in the contract that is defined as contract owner, you can definitely read it directly.

how would I get that with moralis?

You can call any read only function with runContractFuncrion: https://docs.moralis.io/moralis-server/web3-sdk/native#runcontractfunction

1 Like

Yes, thank you. I’m not sure exactly how to do it but this is the path I was looking for. Thank you, thank you!