Comment on page
NFT 숨김
Android
iOS
Web
이름 | 타입 | 설명 | 참조 |
---|---|---|---|
network | String | 네트워크 | required |
account | String | 계정 | required |
collection_id | String | 컬렉션 아이디 | required |
token_id | String | NFT 토큰 아이디 | required |
object
이름 | 타입 | 설명 |
---|---|---|
result | String | 숨김 성공여부("OK", "FAIL") |
// parameters
val network = "polygon"
val account = "0x..."
val collection_id = "0x..."
val token_id = "2"
//숨김처리
val insertNFTHide = setNFTsHide(network,
account,
collection_id,
token_id)
//숨김취소
val deleteNFTHide = deleteNFTsHide(network,
account,
collection_id,
token_id)
println(insertNFTHide)
println(deleteNFTHide)
// result log
/*
{
"result" : "OK"
}
*/
이름 | 타입 | 설명 | 참조 |
---|---|---|---|
network | String | 네트워크 | required |
account | String | 계정 | required |
collection_id | String | 컬렉션 아이디 | required |
token_id | String | NFT 토큰 아이디 | required |
object
이름 | 타입 | 설명 |
---|---|---|
result | String | 숨김 성공여부("OK", "FAIL") |
// parameters
let network = "polygon"
let account = "0x..."
let collection_id = "0x..."
let token_id = "2"
//숨김처리
let insertNFTHide = try await setNFTsHide(network: network,
account: account,
collection_id: collection_id,
token_id: token_id)
//숨김취소
let deleteNFTHide = try await deleteNFTsHide(network: network,
account: account,
collection_id: collection_id,
token_id: token_id)
print(insertNFTHide)
print(deleteNFTHide)
// result log
/*
{
"result" : "OK"
}
*/

Last modified 3mo ago