Bitcoin Forum
May 27, 2024, 07:28:18 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 »
1  Local / Altcoins (Bahasa Indonesia) / Re: [TUTORIAL] Membuat Koin Micin (Token) Sendiri on: March 05, 2022, 07:18:20 AM
Iya paham bang, bukan pengkodean yg ana maksud, tp kl ada contoh kan paling tidak bisa memberi sedikit gambaran
OK om, saya jelaskan secara simplenya saja ya, sesuai yang om tanyakan di atas (ownable, mintable, burnable):
- ownable
Umumnya tiap token terdapat fungsi ownable, biasannya digunakan untuk me-renounce si pemilik token. Renounce = mengubah alamat pemilik ke null atau zero address, dengan maksud supanya token tersebut tidak dapat diubah nilai dari variabel yang terdapat di dalamnya, misalnya variabel fee (marketing fee, team fee, charity fee, dan sebagainya).
Kode fungsi ownable:
Code:

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

- mintable
Token jenis mintable biasanya tidak berdiri sendiri, maksudnya proyek token mintable mempunyai tambahan smart contract lain, seperti smart contract MasterChef, TimeLock, atau bahkan sampai bikin Router sendiri.

- burnable
Burnable hanya menambahkan fungsi untuk burning token, fungsi transfer biasa sih, transfer ke null/zero address atau dead address. Tinggal nanti kita menentukan kapan proses burn nya terjadi, apakah saat terjadi transaksi atau secara manual.
contoh kode fungsi burn
Code:
    function buyBackAndBurn(uint256 amount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);

        uint256 initialBalance = balanceOf(marketingWallet);

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(
            0, // accept any amount of Tokens
            path,
            marketingWallet, // Burn address
            block.timestamp.add(300)
        );

        uint256 swappedBalance = balanceOf(marketingWallet).sub(initialBalance);

        _burn(marketingWallet, swappedBalance);

        emit SwapBNBForTokens(amount, path);
    }
Nah pembahasan seperti ini yg ana demen, paling ndak kan udah dapat gambaran or sedikit tahu meski tdk praktek langsung
2  Local / Altcoins (Bahasa Indonesia) / Re: [DISKUSI] Perkembangan NFT di Indonesia on: March 04, 2022, 06:08:31 PM
Saat ini yang menjadi pertanyaan di saya apakah NFT hanya sebuah "Hype" atau memang sebuah "Art". Karena hanya untuk sebuah karya seni contoh Rollbots kemarin yang dikeluarkan situs judi minimal di harga spotnya $1.000, apakah pembeli terakhir masih akan mampu menjual di harga yang lebih mahal apabila hypenya sudah tidak ada lagi?
NFT kan ibaratnya produk baru dari Crypto nih, biar masyarakat dunia kenal dgn NFT maka caranya membomingkan/mentrendingkan dgn menggandeng orang2 ternama

Lalu, kemarin saya mengikuti seminar NFT dari Indonesia Blockchain Society bersama Telkom, salah satu narsum nya mengatakan bahwa NFT juga dapat digunakan untuk karya fisik berupa barang. Apakah itu benar? yang saya bingungkan apabila NFT telah terjual bagaimana barang fisikny ?
Kl soal ini ana lgsg berfikir nya ke SAHAM DIGITAL, bisa jadi kedepan sebuah perusahaan akan mengeluarkan saham dalam bentuk digital di dalam blockchain
3  Local / Altcoins (Bahasa Indonesia) / Re: [TUTORIAL] Membuat Koin Micin (Token) Sendiri on: March 04, 2022, 05:48:05 PM
Kl menurut ane sih fokus utk pembuatannya dulu bang
Soal DEX sebaiknya di thread lain saja
Karena dari jenis token itu sendiri kan beda2 fungsinya (ownable, mintable, burnable, dll)
Rencananya di thread ini tidak akan membahas teknis pengkodean, om. Untuk token dengan fungsi lain-lain tersebut, seperti disampaikan pada awal thread, kita tinggal nyomot kode sumber dari smart contract (token) yang sudah exist.
Iya paham bang, bukan pengkodean yg ana maksud, tp kl ada contoh kan paling tidak bisa memberi sedikit gambaran
4  Local / Altcoins (Bahasa Indonesia) / Re: [TUTORIAL] Membuat Koin Micin (Token) Sendiri on: March 04, 2022, 05:32:33 PM
~snip~
kl itu ana udah paham bang, cuma ditiap jaringan kan barangkali ada perbedaan kode walaupun sama2 ERC20
~snip~
Sejauh ini yang saya lihat dan setelah saya bandingkan sih tidak ada bedanya om, antara ERC20, BEP20, HRC20, ERC20 (Polygon)

~snip~
nah syukur2 sih yg dibahas jangan cuma ERC20 aja, tapi ERC721, ERC1155, BEP721, BEP1155
Mungkin nanti di thread lain ya om  Grin
Kl menurut ane sih fokus utk pembuatannya dulu bang
Soal DEX sebaiknya di thread lain saja
Karena dari jenis token itu sendiri kan beda2 fungsinya (ownable, mintable, burnable, dll)
5  Local / Altcoins (Bahasa Indonesia) / Re: [TUTORIAL] Membuat Koin Micin (Token) Sendiri on: March 04, 2022, 05:18:33 PM
Itu token ERC20 jaringan ETH ya bang, waduh kl bikin token beneran pasti biayanya mahal

kl boleh request sih cara bikin token di jaringan lain juga bang, seperti BSC, Solana, AVAX, Polkadot, Polygon dll

Kalau untuk BSC, Polygon, Heco, Fantom, Halo, (apalagi ya?)  Grin sama saja om, karena mereka adaptasi teknis ERC-20 nya ETH. Tinggal mengubah koneksi jaringannya ke jaringan mainet mereka (saat akan deploy), dan jika terdapat fungsi untuk exchange DEX pada kode sumber, pastikan mengubah alamat router dari exchange yang melayanai jaringan tersebut.
kl itu ana udah paham bang, cuma ditiap jaringan kan barangkali ada perbedaan kode walaupun sama2 ERC20

nah syukur2 sih yg dibahas jangan cuma ERC20 aja, tapi ERC721, ERC1155, BEP721, BEP1155

Biar kita bareng2 belajar gitu   Smiley
6  Local / Altcoins (Bahasa Indonesia) / Re: [TUTORIAL] Membuat Koin Micin (Token) Sendiri on: March 04, 2022, 05:04:14 PM
Itu token ERC20 jaringan ETH ya bang, waduh kl bikin token beneran pasti biayanya mahal

kl boleh request sih cara bikin token di jaringan lain juga bang, seperti BSC, Solana, AVAX, Polkadot, Polygon dll
7  Local / Altcoins (Bahasa Indonesia) / Re: [ANN] SEER: Proyek Prediksi unik di dunia Blockchain on: December 15, 2018, 02:20:55 PM
Terima kasih banyak kepada team SEER yg telah memberikan penghargaan kepada kami



Semoga SEER banyak mendapat dukungan dari berbagai komunitas
8  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN]🔥🌟VVCOIN🌟🔥Tourism APP with BlockchainTech: Join Telegram to get VVCOIN on: July 02, 2018, 12:54:41 PM
This project has a good concept, but the VVcoin team must work hard to restore investors confidence by fixing / stabilizing prices in all markets according to the rate on its official website. Maybe this is a tough challenge for the VVcoin team. Good luck and success
9  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY] 🔥🌟🛰 DECIBELS - 🛰 Decentralized Multi-Media Codex Revolution 🛰🌟🔥 on: March 11, 2018, 12:58:57 PM
#Proof of authentication post link

Twitter URL: https://twitter.com/Rinafid
Twitter username: @Rinafid

Telegram username: @Rinafid

Medium username: @Rinafid
10  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY] 🏘️🌏🏘️ REALISTA - The First Global Real Estate Platform 🏘️🌏🏘 on: March 11, 2018, 12:34:49 PM
#Proof of authentication post link

Twitter URL: https://twitter.com/Rinafid
Telegram username: @Rinafid
11  Local / Altcoins (Bahasa Indonesia) / Re: [ANN] [ICO] 🔥 BLOK: Merevolusi global on-demand tenaga kerja melalui blockhain on: February 19, 2018, 03:49:57 PM
Sebuah konsep cerdas dan ide yang bagus
Saya mendukung proyek ini semoga akan sukses sampai dengan ICO selesai
12  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY][ICO] Volans - Decentralized Payment System on: February 17, 2018, 04:27:15 PM
Twitter Campaign
Twitter URL: https://twitter.com/Rinafid
Followers: 1700

Week #3 (12/02 - 18/02)
Tweet :
https://twitter.com/Rinafid/status/965564209621647360

Retweet :
https://twitter.com/Volans_official/status/964881281568985088
https://twitter.com/Volans_official/status/964076734906818560
https://twitter.com/Volans_official/status/965307591558656000
https://twitter.com/Volans_official/status/965510477383176192


Week #4 (19/02 - 25/02)
Tweet :
https://twitter.com/Rinafid/status/967042658718728193

Retweet :
https://twitter.com/Volans_official/status/966038990716588034
13  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY] All-In Coin. 0.5 ETH to 15 ETH BOUNTY POOL in tokens for only 20 people on: February 16, 2018, 06:50:54 AM
Joined Twitter Campaign

Week #1
Tweet :
https://twitter.com/Rinafid/status/964388847374106624
https://twitter.com/Rinafid/status/964879973344362496
https://twitter.com/Rinafid/status/965180295795195904
https://twitter.com/Rinafid/status/965553294536884224
https://twitter.com/Rinafid/status/965944621988659200

Week #2
Tweet :
https://twitter.com/Rinafid/status/967031846788722688
14  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [ANN][NEW BOUNTY][IPBO] - CryptoPuppies.Land - on: February 16, 2018, 12:03:08 AM
Twitter Profile Link : https://twitter.com/Rinafid

WEEK 1 (Feb 13-19)
Tweet :
https://twitter.com/Rinafid/status/964288282531061760
https://twitter.com/Rinafid/status/964876000550010880
https://twitter.com/Rinafid/status/965566888599199744

Retweet :
https://twitter.com/iPuppiesLand/status/957820771090432000
https://twitter.com/iPuppiesLand/status/957820126845394946
https://twitter.com/iPuppiesLand/status/965005135914110977


WEEK 2 (Feb 20-26)
Tweet :
https://twitter.com/Rinafid/status/967040284642062339

Retweet :
https://twitter.com/iPuppiesLand/status/966133172575621120
15  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [OPEN][AIRDROP][BOUNTY] ARCHICOIN Community Airdrop [OPEN FOR FIRST 200] on: February 10, 2018, 02:13:24 PM
All tasks done & Form filled
Joined the airdrop, goodluck
16  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY] ArcBlock - BORN FOR BLOCKCHAIN 3.0 on: January 31, 2018, 05:21:47 AM
Twitter Campaign
Twitter Username: @Rinafid
Twitter URL: https://twitter.com/Rinafid
Followers: 1665

ETH Address : 0x07d59bb48408cf219a79a843607b46d566541790

WEEK #2 ( 13/1 - 19/1)
Retweet:
https://twitter.com/ArcBlock_io/status/954104772306620417
https://twitter.com/ArcBlock_io/status/953856672061063168
https://twitter.com/ArcBlock_io/status/953856048305246208
https://twitter.com/ArcBlock_io/status/953755741051027456
https://twitter.com/ArcBlock_io/status/953487174950969346
https://twitter.com/ArcBlock_io/status/953454511481409536
https://twitter.com/ArcBlock_io/status/953453810164424704
https://twitter.com/ArcBlock_io/status/953453048612999174
https://twitter.com/ArcBlock_io/status/952303115759431680

WEEK #3 ( 20/1 - 26/1)
Retweet:
https://twitter.com/ArcBlock_io/status/956948521797734400
https://twitter.com/ArcBlock_io/status/956665263977586688
https://twitter.com/ArcBlock_io/status/956230550066515969
https://twitter.com/ArcBlock_io/status/955655825531527168
https://twitter.com/ArcBlock_io/status/955643650750451714
https://twitter.com/ArcBlock_io/status/955604600027009024
https://twitter.com/ArcBlock_io/status/954930245358022656
https://twitter.com/ArcBlock_io/status/954928917143609344
https://twitter.com/ArcBlock_io/status/954926942805004288
https://twitter.com/ArcBlock_io/status/954838379979472897
https://twitter.com/ArcBlock_io/status/954821599416455168
https://twitter.com/ArcBlock_io/status/954575218403618816
https://twitter.com/ArcBlock_io/status/954574699782115328
https://twitter.com/ArcBlock_io/status/954574044929712128
https://twitter.com/ArcBlock_io/status/954573849047289856
https://twitter.com/ArcBlock_io/status/954570145468477440
https://twitter.com/ArcBlock_io/status/954568707841327105

WEEK #4 (27/01 - 02/02)
Retweet:
https://twitter.com/ArcBlock_io/status/958501778659692544
https://twitter.com/ArcBlock_io/status/958500177379315712
https://twitter.com/ArcBlock_io/status/958189033359896576
https://twitter.com/ArcBlock_io/status/958852916898648065
https://twitter.com/ArcBlock_io/status/958857632558796801
https://twitter.com/ArcBlock_io/status/958862210503147520
https://twitter.com/ArcBlock_io/status/958870768951152645
https://twitter.com/ArcBlock_io/status/959279454219526144
https://twitter.com/ArcBlock_io/status/959281586595221505
17  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY] ArcBlock - BORN FOR BLOCKCHAIN 3.0 on: January 08, 2018, 03:09:47 AM
The main site not accessible  Sad
18  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY][ICO] ONZ Coin - DPoS Blockchain for Social Networks | up to $630,000 on: January 08, 2018, 02:41:23 AM
Subscribe newsletter done
Join OnzCoin Telegram Community
Username Telegram: @rinafid
19  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY][Pre-ICO] Artex - First global art work platform based on blockchain on: November 07, 2017, 12:31:10 PM
Dear Participants! You don't need to report your social activities here. We'll check them manually. Thanks fo your interest.

Still people posting reports here. already dev said no need to post here weekly report here.

Yeah, Dev has said above but there are still many who post the report here
20  Local / Altcoins (Bahasa Indonesia) / Re: 🔥💠 LIST ICO & BOUNTY CAMPAIGN TERUPDATE 💠🔥 | MELODYCRYPTO.COM on: October 30, 2017, 04:11:24 AM
Wah ide yang bagus ada thread semacam ini, semoga sukses gan
Pages: [1] 2 3 4 5 6 7 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!