Handles metadata for a Contract
Read and update metadata for this contract
const contract = await sdk.getContract("{{contract_address}}");const metadata = await contract.metadata.get();await contract.metadata.set({ name: "My Contract", description: "My contract description",});