-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
65 lines (54 loc) · 2.2 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Web3 kütüphanesini yükleme
const Web3 = require('web3');
// Kontrat ABI'sini yükleme
const contractABI = require('./sashanftmarketplace.json');
// Web3 sağlayıcısını ayarlama
const web3 = new Web3(Web3.givenProvider || 'http://localhost:8545');
// Kontrat adresi
const contractAddress = 'YOUR_CONTRACT_ADDRESS';
// Kontrat nesnesini oluşturma
const contract = new web3.eth.Contract(contractABI, contractAddress);
// MetaMask ile cüzdan bağlanma işlevi
async function connectWallet() {
try {
await window.ethereum.request({ method: "eth_requestAccounts" });
console.log("Wallet connected:", await web3.eth.getAccounts());
} catch (error) {
console.error(error);
}
}
// NFT satın alma işlevi
async function buyNFT() {
const account = await web3.eth.getAccounts();
await contract.methods.mint(account[0], 1).send({ from: account[0] });
console.log("NFT purchased successfully!");
}
// Engellenmiş bir cüzdanı engellemek için işlev
async function blockWallet(walletAddress) {
await contract.methods.blockWallet(walletAddress).send({ from: walletAddress });
console.log("Wallet blocked successfully!");
}
// Engellenmiş bir cüzdanı engelden kaldırmak için işlev
async function unblockWallet(walletAddress) {
await contract.methods.unblockWallet(walletAddress).send({ from: walletAddress });
console.log("Wallet unblocked successfully!");
}
// NFT'leri görüntüleme işlevi
async function viewNFTs() {
const account = await web3.eth.getAccounts();
const ownedNFTs = await contract.methods.ownedNFTs(account[0]).call();
console.log("Owned NFTs:", ownedNFTs);
}
// NFT transfer işlevi
async function transferNFT(to, tokenId) {
const account = await web3.eth.getAccounts();
await contract.methods.safeTransferFrom(account[0], to, tokenId).send({ from: account[0] });
console.log("NFT transferred successfully!");
}
// Örnek işlev çağrıları
connectWallet(); // Cüzdanı bağla
buyNFT(); // NFT satın al
blockWallet('WALLET_ADDRESS'); // Cüzdanı engelle
unblockWallet('WALLET_ADDRESS'); // Cüzdanı engelden kaldır
viewNFTs(); // Sahip olunan NFT'leri görüntüle
transferNFT('TO_ADDRESS', 'TOKEN_ID'); // NFT transfer et