Update process for nftbapp

This commit is contained in:
elegant651
2020-03-25 16:58:38 +09:00
parent 8072a65374
commit 6a95428c6b
6 changed files with 129 additions and 77 deletions

View File

@@ -16,10 +16,11 @@
v-model="auction.price"
placeholder="e.g. 1"
label="Price"
type="number"
persistent-hint
></v-text-field>
<v-btn @click="createAuction()" outline color="teal">Create Auction</v-btn>
<v-btn @click="createAuction" outlined color="teal">Create Auction</v-btn>
</v-form>
</div>
</template>
@@ -54,7 +55,7 @@ export default {
return
}
this.klaytn.createAuction(this.tokenid, this.auction.auctionTitle, this.metadata, auction.price, (receipt) => {
this.klaytn.createAuction(this.tokenid, this.auction.auctionTitle, this.metadata, this.auction.price, (receipt) => {
alert(`Creation completed...! (#${receipt.blockNumber} ,${receipt.transactionHash})`)
}, error => {
alert(error)