follow us on twitter . like us on facebook . follow us on instagram . subscribe to our youtube channel . announcements on telegram channel . ask urgent question ONLY . Subscribe to our reddit . Altcoins Talks Shop Shop


This is an Ad. Advertised sites are not endorsement by our Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction. Advertise Here Ads bidding Bidding Open

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - boysnoel12

Pages: 1 2 3 [4] 5 6
46
Sorting Box / Re: Counting posts
« on: October 04, 2018, 07:23:17 PM »
I also encounter the same problem but in my case I posted more than 72 characters without the space when you count but my post count won't increase. You guys encounter the same problem as I did? If you guys did please help me understand more of the forum's systems.

47
Hello guys I am boysnoel12,
I would like to share this tip on "how to enable Two Factor Authentication also known as 2FA by using address only" to newbies and other forum members that didn't know how to enable 2FA. To those who already know how can also help (if you want to).

Before I start, You must download and install Google Authenticator in your mobile device. You can download google authenticator in Playstore.


1] Open the website where you want to enable 2FA and log in your account, after that open account settings. In my case refer to image below where I can see the 2FA in my accounts settings. My case is in einax website. (Note: I'm not advertising their website and I use it for example only)


2] Click the Two-Factor Authentication as shown in image above and you will be redirect to new page where you can see the address needed to enable 2FA. Refer Image below.



3] Copy the address address provided from the website.


4] Open the Google Authenticator you downloaded from Playstore. Next, Press the red + sign button.


Next, Click enter a provided key


Enter the name of the website where you want to enable 2FA account and paste the address and then Click "ADD".
Ex: Altcoinstalks 2FA Guide
Address: LBCUE6MW2GV2I4VI


You can see the "CODE" now in your mobile device and it changes time after time


Now, type the code where you copy the address and "CLICK ENABLE 2FA".
Ex code: 105885


You're good to go. You're 2FA is enabled.


TAKE NOTE:
Don't forget to backup address key because it's very important when you lose your device. Make sure it's well written on the piece of paper or make a backup copy in your USB device or PC.

REASON: You can't get code again from another device if you don't have a back up of your address ( 16 digits) and you lose your mobile device but if you did save a back up and by doing the same steps in the guide with the same address key (16 digits) you use in google authenticator that you backed up then you don't have to worry.

Feel free to ask questions or correct my mistakes If i have mistakes in my guide.
In my case I enable 2FA in my account in einax.com to be an example on how to enable 2FA.

48
Solidity / Re: [GUIDE] CREATE your own TOKEN in a few simple steps!
« on: October 04, 2018, 07:01:39 PM »
It's all true there's nothing fake in there, the only problem is the person behind the token itself if it is use for scam or not scam. You can create too if you want.

There's an exchange that will accept your own token in their exchange. Einax.com they also had airdrops system for those ICO who wants to conduct an airdrops.

49
Referral Links / Re: AIRDROPS, GIVEAWAYS AND BOUNTIES!
« on: September 11, 2018, 09:33:33 PM »
Good Job! I know this will take a long time to finish as there will be more bounties or airdrops will be coming. Keep up the goid work. This will help me find bounties.

50
Cryptocurrency discussions / Create Your Own Erc20 Tokens!
« on: September 11, 2018, 09:15:50 PM »
To those who plan on creating a project I can share a guide on how to create ERC20 Tokens with easy steps!
This is the link to the guide on how to create erc20 tokens -
https://www.altcoinstalks.com/index.php?topic=47936.0

51
Tulong para sa baguhan / Tulong mga kabayan!
« on: September 11, 2018, 09:09:22 PM »
Bakit nasa 24 lang ang post ko at hindi madagdagan kung hindi ka gagawa ng bagong topic. Sa paggawa lang ng bagong topic o thread ang alam ko na nakadagdag ng post points. Kapag nag reply ka sa topic o kaya quote ang post count lang nadadagdagan at hindi yung post points o activity points kung sa bitcointalk pa.

52
Philippines (Tagalog) / Re: bago magbigay ng mga katanungan.
« on: September 11, 2018, 09:05:34 PM »
Basta bagohan mas marami ang tanong kaysa kaalaman tungkol sa cryptocurrency or sa blockchain.

53
Philippines (Tagalog) / Re: Mayroon bang limitasyon sa pag post kada araw?
« on: September 11, 2018, 09:04:19 PM »
Wala ngang limit pero hindi na madagdagan ang post points mo parq makaoag rank up

54
Solidity / [GUIDE] CREATE your own TOKEN in a few simple steps!
« on: September 11, 2018, 08:33:36 PM »
Hello everyone I would like to share this "GUIDE" in here.

Ever wanted to create a token for your project, build up a community of supporters by destributing tokens through an airdrop and maybe launch an ICO at some point? Then this guide is for you!
In this step-by-step guide I will show you how you can create your own ERC20 token.

0. Have some ETH
In order to finish this guide you will need to have at least $2 worth of Ethereum [ETH]. In this guide I'm using Metamask Chrome Extenstion which you can get here: https://metamask.io/


1. Creating an ERC20 Ethereum based token
First we want to deploy a smart contract that is ERC20 standard compliant.
Open up Remix (which is an awesome browser-based IDE for smart contract development) by following this link: https://remix.ethereum.org/. By default you will see some ballot.sol smart contract. You may close this ballot.sol tab and create a new one by clicking on a circled "+" sign
Now once you've got a new empty tab copy the code below and paste it into Remix:

Code: [Select]
pragma solidity ^0.4.24;

// ----------------------------------------------------------------------------
// (c) BokkyPooBah / Bok Consulting Pty Ltd 2018. The MIT Licence.
// ----------------------------------------------------------------------------


// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------
library SafeMath {
    function add(uint a, uint b) internal pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }
    function sub(uint a, uint b) internal pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }
    function mul(uint a, uint b) internal pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }
    function div(uint a, uint b) internal pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }
}


// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
    function totalSupply() public constant returns (uint);
    function balanceOf(address tokenOwner) public constant returns (uint balance);
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


// ----------------------------------------------------------------------------
// Contract function to receive approval and execute function in one call
//
// Borrowed from MiniMeToken
// ----------------------------------------------------------------------------
contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes data) public;
}


// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}


// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and a
// fixed supply
// ----------------------------------------------------------------------------
contract FixedSupplyToken is ERC20Interface, Owned {
    using SafeMath for uint;

    string public symbol;
    string public  name;
    uint8 public decimals;
    uint _totalSupply;

    mapping(address => uint) balances;
    mapping(address => mapping(address => uint)) allowed;


    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor() public {
        symbol = "FIXED";
        name = "Example Fixed Supply Token";
        decimals = 18;
        _totalSupply = 1000000 * 10**uint(decimals);
        balances[owner] = _totalSupply;
        emit Transfer(address(0), owner, _totalSupply);
    }


    // ------------------------------------------------------------------------
    // Total supply
    // ------------------------------------------------------------------------
    function totalSupply() public view returns (uint) {
        return _totalSupply.sub(balances[address(0)]);
    }


    // ------------------------------------------------------------------------
    // Get the token balance for account `tokenOwner`
    // ------------------------------------------------------------------------
    function balanceOf(address tokenOwner) public view returns (uint balance) {
        return balances[tokenOwner];
    }


    // ------------------------------------------------------------------------
    // Transfer the balance from token owner's account to `to` account
    // - Owner's account must have sufficient balance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transfer(address to, uint tokens) public returns (bool success) {
        balances[msg.sender] = balances[msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        emit Transfer(msg.sender, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account
    //
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
    // recommends that there are no checks for the approval double-spend attack
    // as this should be implemented in user interfaces
    // ------------------------------------------------------------------------
    function approve(address spender, uint tokens) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Transfer `tokens` from the `from` account to the `to` account
    //
    // The calling account must already have sufficient tokens approve(...)-d
    // for spending from the `from` account and
    // - From account must have sufficient balance to transfer
    // - Spender must have sufficient allowance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transferFrom(address from, address to, uint tokens) public returns (bool success) {
        balances[from] = balances[from].sub(tokens);
        allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        emit Transfer(from, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Returns the amount of tokens approved by the owner that can be
    // transferred to the spender's account
    // ------------------------------------------------------------------------
    function allowance(address tokenOwner, address spender) public view returns (uint remaining) {
        return allowed[tokenOwner][spender];
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account. The `spender` contract function
    // `receiveApproval(...)` is then executed
    // ------------------------------------------------------------------------
    function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data);
        return true;
    }


    // ------------------------------------------------------------------------
    // Don't accept ETH
    // ------------------------------------------------------------------------
    function () public payable {
        revert();
    }


    // ------------------------------------------------------------------------
    // Owner can transfer out any accidentally sent ERC20 tokens
    // ------------------------------------------------------------------------
    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20Interface(tokenAddress).transfer(owner, tokens);
    }
}
I copied this code from this wiki page
Now click "Start to comile" and make sure there are no compilation errors (red messages)

Now log in to your MetaMask browswer extension and make sure Remix is connected to it. It should appear like so:

Change your token name, symbol and total supply:
 

Now simply switch contract to FixedSupplyToken and hit Deploy button. That's it!

After you hit Deploy button Remix will ask you for a confirmation

If you're fine with the gas price it suggests you to pay you may click "Confirm" at the bottom of this pop up window.
This will bring up Metamask window that looks something like this:
Where we can see that our contract depoloyment will cost us $1.12
Now click "Confirm" button and your contract should be deployed to Ethereum mainnet

After a couple of minutes it should get confirmed and you will see the link to your freshly deployed smart contract in Metamask transactions list. Here's my token's deployment transaction:
https://etherscan.io/tx/0x6a39c40cc35eb03874808358eb0ab2ea9967c0c27f40fe3bf65c345fa2080da2
Token's smart contract address is: 0x0e0a6c613ea16ae347cb98732e152530ae9bc7f2
Great! At this point our token is fully functional.

2. Confirm contract on etherscan.io
It's always a good idea to confirm your smart contracts code on etherscan.io so everybody will be able to view it easily. Since my token's contract address is 0x0e0a6c613Ea16aE347CB98732e152530Ae9Bc7F2 I will use it as an example

Go to token's contract page on etherscan.io:
https://etherscan.io/address/0x0e0a6c613ea16ae347cb98732e152530ae9bc7f2

Click on Code tab and hit Verify And Publish

On the "Verify Contract Code" you should fill all the required fields correctly so etherscan could verify your token's smart contract code:
Click Verify and Publish button and if everything is well you should see the following:

Now that token's code is verified anybody can easily review it and make sure it does exactly what you are claiming it does. Furthermore this token is now eligible to be listed on exchange sites where you want to be listed after ICO is finished.

55
Basic questions about this forum / Post Interval!
« on: September 11, 2018, 08:25:11 PM »
How much time to wait before posting another post?

Is there a formula on how much post points you earn?

56
Sorting Box / Re: Hello, Bouk here.
« on: September 11, 2018, 08:22:39 PM »
Just manage your time and plan each move you make in cryptoworld.

57
Basic questions about this forum / Rank Requirements
« on: September 11, 2018, 08:21:09 PM »
Hi everyone, This is the table I create about Rank Requirements. I created this thread is to let you know that I am not responsible for your account getting penalties. Post at your own risk. This table is to track your progress If your going to "RANK" or "NOT".

Table of Contents
Rank Requirements

Rank Requirements

RankRequired Post Count  Required Karma
Newbie00
Baby Steps100
Jr. Member200
Full Member600
Sr. Member1200
Hero Member5000
Legendary1000+0

If there's an update just let me know and I'll also update this one. Just let me know if there's a mistake I might have made.

58
Crypto Wallets / Re: Which wallet do you use?
« on: September 07, 2018, 11:58:07 PM »
I use myetherewallet since I start doing bounties.

59
Sorting Box / Re: Investing
« on: September 07, 2018, 11:57:00 PM »
There are good coins to invest like bitcoin, ethereum, litecoin, dogecoin and much more.

60
Forum related / Table of rank requirements
« on: August 26, 2018, 08:38:24 PM »
Can I make a table of rank requirements in here?
All I need is the number of post requirements and complete ranks available to achieved!
Please PM me so I can start if I get the permission from admin.



admin edit: fixed title

Pages: 1 2 3 [4] 5 6
ETH & ERC20 Tokens Donations: 0x2143F7146F0AadC0F9d85ea98F23273Da0e002Ab
BNB & BEP20 Tokens Donations: 0xcbDAB774B5659cB905d4db5487F9e2057b96147F
BTC Donations: bc1qjf99wr3dz9jn9fr43q28x0r50zeyxewcq8swng
BTC Tips for Moderators: 1Pz1S3d4Aiq7QE4m3MmuoUPEvKaAYbZRoG
Powered by SMFPacks Social Login Mod