# TUTORIAL DEPLOY CONTRACT QUEST BASE **Published by:** [BB](https://paragraph.com/@0xbb22/) **Published on:** 2023-04-06 **URL:** https://paragraph.com/@0xbb22/tutorial-deploy-contract-quest-base ## Content Link Quest : https://quests.base.org/ Tutorial Deploy :Masuk ke web Remix EthereumKalo udah, sekarang masuk ke folder contractDidalam folder contract ada file 1_Storage.sol di klik dan hapus semua kode lalu ganti dengan ini (Note : Ubah testBASE sesuai keinginan kalian)// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.2 <0.9.0; contract testBASE {uint256 number; function store(uint256 num) public { number = num; } function retrieve() public view returns (uint256){ return number; } }Cek gambar yang dilingkari merah, kesana ceklist auto compileLihat gambar yang dilingkari merah, Klik terus environment nya ubah ke inject provide - metamask (fokus kolom yg paling atas), biar connect ke wallet kita, nanti kolom account nya berubah jd wallet kita, terus klik DeployKalo udah selesai deploy cek bagian bawah, itu sc nya dicopy, pastekan ke quest base tadi ## Publication Information - [BB](https://paragraph.com/@0xbb22/): Publication homepage - [All Posts](https://paragraph.com/@0xbb22/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@0xbb22): Subscribe to updates - [Twitter](https://twitter.com/chfeky): Follow on Twitter