blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
554 B
13 lines
554 B
// Copyright © 2021 Stormbird PTE. LTD.
|
|
|
|
import Foundation
|
|
|
|
struct GetTokenUri {
|
|
let abi = "[ { \"constant\": true, \"inputs\": [ {\"name\": \"\",\"type\": \"uint256\"}, ], \"name\": \"tokenURI\", \"outputs\": [{\"name\": \"\", \"type\": \"string\"}], \"type\": \"function\" } ]\n"
|
|
let name = "tokenURI"
|
|
}
|
|
|
|
struct GetUri {
|
|
let abi = "[ { \"constant\": true, \"inputs\": [ {\"name\": \"\",\"type\": \"uint256\"}, ], \"name\": \"uri\", \"outputs\": [{\"name\": \"\", \"type\": \"string\"}], \"type\": \"function\" } ]\n"
|
|
let name = "uri"
|
|
} |