cargo concordium build --out dist/smart-contract-multi/module.wasm.v1 --schema-out dist/smart-contract-multi/schema.bin
concordium-client module deploy dist/smart-contract-multi/module.wasm.v1 --sender --name cis2_multi --grpc-port 10001
concordium-client contract init --sender --energy 30000 --contract cis2-multi --grpc-port 10001
concordium-client contract update --entrypoint mint --parameter-json nft-artifacts/mint-params.json --schema dist/smart-contract-multi/schema.bin --sender --energy 6000 --grpc-port 10001
concordium-client contract invoke --entrypoint view --schema dist/smart-contract-multi/schema.bin --grpc-port 10001
concordium-client contract invoke --entrypoint tokenMetadata --parameter-json nft-artifacts/ids.json --schema dist/smart-contract-multi/schema.bin --grpc-port 10001
concordium-client contract update --entrypoint transfer --parameter-json nft-artifacts/transfer.json --schema dist/smart-contract-multi/schema.bin --sender --energy 6000 --grpc-port 10001