-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Swift example for managing NFT allowances
Co-authored-by: Ricky Saechao <[email protected]>
- Loading branch information
Showing
2 changed files
with
182 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
/* | ||
* Hedera Swift SDK | ||
* | ||
* Copyright (C) 2022 - 2024 Hedera Hashgraph, LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import Foundation | ||
import Hedera | ||
import SwiftDotenv | ||
|
||
@main | ||
internal enum Program { | ||
internal static func main() async throws { | ||
let env = try Dotenv.load() | ||
let client = try Client.forName(env.networkName) | ||
|
||
client.setOperator(env.operatorAccountId, env.operatorKey) | ||
|
||
// Step 1: Create an NFT | ||
let nftCreateReceipt = try await TokenCreateTransaction() | ||
.name("HIP-336 NFT1") | ||
.symbol("HIP336NFT1") | ||
.tokenType(TokenType.nonFungibleUnique) | ||
.decimals(0) | ||
.initialSupply(0) | ||
.maxSupply(10) | ||
.tokenSupplyType(.finite) | ||
.treasuryAccountId(env.operatorAccountId) | ||
.adminKey(.single(env.operatorKey.publicKey)) | ||
.supplyKey(.single(env.operatorKey.publicKey)) | ||
.freezeWith(client) | ||
.execute(client) | ||
.getReceipt(client) | ||
|
||
guard let nftTokenId = nftCreateReceipt.tokenId else { | ||
fatalError("Failed to create NFT") | ||
} | ||
|
||
print("Created NFT with token ID: \(nftTokenId)") | ||
|
||
// Step 2: Mint NFTs | ||
let cids = [ | ||
"QmNPCiNA3Dsu3K5FxDPMG5Q3fZRwVTg14EXA92uqEeSRXn", | ||
"QmZ4dgAgt8owvnULxnKxNe8YqpavtVCXmc1Lt2XajFpJs9", | ||
"QmPzY5GxevjyfMUF5vEAjtyRoigzWp47MiKAtLBduLMC1T", | ||
] | ||
|
||
let metadataArray = cids.map { | ||
Data($0.utf8) | ||
} | ||
|
||
for cid in cids { | ||
let mintReceipt = try await TokenMintTransaction() | ||
.tokenId(nftTokenId) | ||
.metadata(metadataArray) | ||
.freezeWith(client) | ||
.execute(client) | ||
.getReceipt(client) | ||
|
||
guard let serials = mintReceipt.serials, !serials.isEmpty else { | ||
fatalError("Failed to mint NFTs") | ||
} | ||
|
||
for (index, serial) in serials.enumerated() { | ||
print("Minted NFT (token ID: \(nftTokenId)) with serial: \(serials.first!)") | ||
} | ||
|
||
} | ||
|
||
// Step 3: Create spender and receiver accounts | ||
let spenderKey = PrivateKey.generateEd25519() | ||
let receiverKey = PrivateKey.generateEd25519() | ||
|
||
let spenderAccountId = try await AccountCreateTransaction() | ||
.key(Key.single(spenderKey.publicKey)) | ||
.initialBalance(Hbar(2)) | ||
.execute(client) | ||
.getReceipt(client) | ||
.accountId! | ||
|
||
let receiverAccountId = try await AccountCreateTransaction() | ||
.key(Key.single(receiverKey.publicKey)) | ||
.initialBalance(Hbar(2)) | ||
.execute(client) | ||
.getReceipt(client) | ||
.accountId! | ||
|
||
print("Created spender account ID: \(spenderAccountId), receiver account ID: \(receiverAccountId)") | ||
|
||
// Step 4: Associate spender and receiver with the NFT | ||
try await TokenAssociateTransaction() | ||
.accountId(spenderAccountId) | ||
.tokenIds([nftTokenId]) | ||
.freezeWith(client) | ||
.sign(spenderKey) | ||
.execute(client) | ||
.getReceipt(client) | ||
|
||
try await TokenAssociateTransaction() | ||
.accountId(receiverAccountId) | ||
.tokenIds([nftTokenId]) | ||
.freezeWith(client) | ||
.sign(receiverKey) | ||
.execute(client) | ||
.getReceipt(client) | ||
|
||
print("Associated spender and receiver accounts with NFT") | ||
|
||
// Step 5: Approve NFT allowance for spender | ||
try await AccountAllowanceApproveTransaction() | ||
.approveTokenNftAllowance(NftId(tokenId: nftTokenId, serial: 1), env.operatorAccountId, spenderAccountId) | ||
.approveTokenNftAllowance(NftId(tokenId: nftTokenId, serial: 2), env.operatorAccountId, spenderAccountId) | ||
.execute(client) | ||
.getReceipt(client) | ||
|
||
print("Approved NFT allowance for spender") | ||
|
||
// Step 6: Transfer NFT using approved allowance | ||
let transferReceipt = try await TransferTransaction() | ||
.approvedNftTransfer(NftId(tokenId: nftTokenId, serial: 1), env.operatorAccountId, receiverAccountId) | ||
.freezeWith(client) | ||
.transactionId(TransactionId.generateFrom(spenderAccountId)) | ||
.sign(spenderKey) | ||
.execute(client) | ||
.getReceipt(client) | ||
|
||
print("Transfer successful with status: \(transferReceipt.status)") | ||
|
||
// Step 7: Revoke allowance | ||
_ = try await AccountAllowanceDeleteTransaction() | ||
.deleteAllTokenNftAllowances(NftId(tokenId: nftTokenId, serial: 2), env.operatorAccountId) | ||
.execute(client) | ||
|
||
print("Revoked NFT allowance") | ||
|
||
// Step 8: Attempt transfer after revoking allowance | ||
do { | ||
_ = try await TransferTransaction() | ||
.approvedNftTransfer(NftId(tokenId: nftTokenId, serial: 2), env.operatorAccountId, receiverAccountId) | ||
.freezeWith(client) | ||
.sign(spenderKey) | ||
.execute(client) | ||
|
||
print("Transfer after revoking allowance should have failed") | ||
} catch { | ||
print("Expected failure: \(error)") | ||
} | ||
|
||
// Cleanup resources by deleting tokens, accounts, etc. | ||
// Implement cleanup steps... | ||
} | ||
} | ||
|
||
extension Environment { | ||
/// Account ID for the operator to use in this example. | ||
internal var operatorAccountId: AccountId { | ||
AccountId(self["OPERATOR_ID"]!.stringValue)! | ||
} | ||
|
||
/// Private key for the operator to use in this example. | ||
internal var operatorKey: PrivateKey { | ||
PrivateKey(self["OPERATOR_KEY"]!.stringValue)! | ||
} | ||
|
||
/// The name of the Hedera network this example should run against. | ||
internal var networkName: String { | ||
self["HEDERA_NETWORK"]?.stringValue ?? "testnet" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters