Skip to content

Instantly share code, notes, and snippets.

View AjiteshBD's full-sized avatar
🎯
Focusing

Ajitesh Mishra AjiteshBD

🎯
Focusing
  • Mumbai
View GitHub Profile
contract NFT {
// Minting a new NFT
function mint(address owner, uint256 id, string name, string description, string imageUrl) public {
// Create a structure to hold the NFT data
NFTData memory newNFT = NFTData({
owner: owner,
id: id,
name: name,
description: description,
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
// ERC1155 is a standard interface for multi-token contracts.
// This contract is an example of a simple ERC1155 contract.
contract ERC1155 {
// Mapping of tokenId to balance
mapping (uint256 => uint256) private _balances;

Privacy Policy

Kursor built the Ambulance Rush app as a Free app. This SERVICE is provided by Kursor at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at Ambulance Rush unless otherwise defined in this Privacy Policy.

@AjiteshBD
AjiteshBD / README-Template.md
Created March 13, 2019 20:03 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites