Skip to content

Instantly share code, notes, and snippets.

View AjiteshBD's full-sized avatar
🎯
Focusing

Ajitesh Mishra AjiteshBD

🎯
Focusing
  • Mumbai
View GitHub Profile
@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

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.

// 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;
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,
//Creating a wallet
const { PrivateKey } = require('bsv');
const privateKey = new PrivateKey();
const address = privateKey.toAddress();
console.log(`Your new wallet address is ${address}`);
//Sending money
const { Transaction } = require('bsv');
#!/usr/bin/env python
from BitcoinSV import Script
class NFT(Script):
def __init__(self):
self.owner = None
self.items = {}
self.itemOwners = {}
super(NFT, self).__init__()
contract NFT {
address public owner;
uint public defaultRoyalties;
mapping (uint => NFTItem) public items;
mapping (uint => address) public itemOwners;
struct NFTItem {
uint itemId;
bool isMinted;
@AjiteshBD
AjiteshBD / bsv
Last active December 5, 2022 13:10
// Load the Bitcoin SV library
const BitcoinSVCore = require('bitcoinsv-core');
// Create an instance of the Bitcoin SV library
const bsvCore = new BitcoinSVCore();
// Set the network to the Bitcoin SV testnet
bsvCore.Networks.defaultNetwork = bsvCore.Networks.testnet
// Define the NFT contract
// Import the Tokenized library
const Tokenized = require('@tokenized/tokenized');
// Establish a connection to the Bitcoin SV node
let config = {
host: 'localhost',
port: 8332,
username: 'admin',
password: 'password'
};
//Create a NFT contract
const { Tokenized } = require('@bitboss/tokenized');
//Connect to the Bitcoin SV testnet
const network = 'testnet';
const tokenized = new Tokenized(network);
//Deploy a NFT contract
const deployTransaction = await tokenized.contracts.NFT.deploy();