Bitcoin Forum
May 10, 2024, 07:25:35 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Altcoin Discussion / Any ICO projects have experience buying e-mail lists? on: August 10, 2018, 07:07:35 AM
Any ICO project managers, community managers, or e-mail folks have any experience buying lists from websites like https://cryptoemaillists.com/? They say they purchased from closed ICOs so they're confirmed buyers. Seems to me it's a clear path to ROI but have no idea how to think about this.
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ICO][ANN] INTIVA TOKEN - TOKENIZING THE MEDICAL ECONOMY 👩‍⚕️🏥 💉 on: April 03, 2018, 03:50:48 PM
talked to these guys @ global blockchain in santa clara - seems like a lot of people working on it. definitely not a scrappy fly by night project like some others there
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] TREVI TOKEN, SMART CONTRACT BACKED PERSONAL SAVINGS 💰 on: January 16, 2018, 04:59:30 PM
How do I get us dollar into Trevi for easy saavings?
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] RetailCoins - Common Token to Support Swaps of Retail Loyalty & Rewards on: January 06, 2018, 06:27:31 AM
Does this mean I could take the rewards I earn at Walgreens and apply them at Stop & Shop?

This could be a very tricky but valuable market.

Would you consider this an exchange? Does each vendor have its own excahnge price? Like I sell my Walgreens points at 1 Walgreens point for 0.5 RC and Stop & Shop points can be purchased for 6 RC?

Need clarification
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Licensing Coin Marketplace 🎥 Your One-Stop Shop for Licensed Media on: October 26, 2017, 06:30:29 PM
Checked out the website....when are you guys going to post some new partners?  I'm interested in buying but not until I see the team.

I hope you guys post something soon.
They sent an e-mail yesterday about disney and the ringer. it's also up on their twitter. weird they haven't updated this thread?

Should be where they're going first...If they want to sell anything, here's where to do it.  Someone's dropping the ball Sad
I think e-mailing people who purchased already is the thought there but i agree. hoping to find aresponse soon
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Licensing Coin Marketplace 🎥 Your One-Stop Shop for Licensed Media on: October 26, 2017, 06:23:43 PM
Checked out the website....when are you guys going to post some new partners?  I'm interested in buying but not until I see the team.

I hope you guys post something soon.
They sent an e-mail yesterday about disney and the ringer. it's also up on their twitter. weird they haven't updated this thread?
7  Bitcoin / Bitcoin Discussion / Re: How do I transfer BTG? on: October 26, 2017, 12:08:18 AM
Thanks - lots of confusing information out there.

Probably a good buying opportunity? Would think that it becomes more valuable with the unfrozen market...
8  Bitcoin / Bitcoin Discussion / How do I transfer BTG? on: October 25, 2017, 11:11:33 PM
I have some BTG on Bitfinex but when I try to transfer it to another wallet, the withdraw screen returns an error. Am I not allowed to transfer it yet?
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Licensing Coin Marketplace 🎥 Your One-Stop Shop for Licensed Media on: October 04, 2017, 05:44:43 PM
Could you explain how a "normal" person like myself might use this service? I know when I've tried to find a stock photo or maybe something from a Getty-like service, it's usually cost prohibitive. With this model, is it possibly more friendly to everyday consumers?
We're certainly building this to be a B2B tool but it will be available to all. Prices will be set by the suppliers, but we're going to have a wide range of supply-side vendors including those who provide user-generated content. Generally, that means lower prices.

Our goal isn't necessarily to be the cheapest licensing solution. It's more about bringing parties together, eliminating friction, and bringing the two parties closer to the transaction.
who are the board members?
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Licensing Coin Marketplace 🎥 Your One-Stop Shop for Licensed Media on: October 03, 2017, 03:40:29 PM
is a 1% transaction fee enough to build a business? getty and others charge 30% because they need to support the entire cost structure. margins aren't huge, i don't think.
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN][TGE] Razum Global - The system of integral balance on: October 02, 2017, 04:16:01 PM
$1.00 per token ? for 355Million ? .............
way too cheap for ICO brother, you should put $3.00. the price too low brother, should make better.
if you place the price $3.00 you can get 1 billion usd. thats how to do the ICO

1 more thing, your ICO price dunt have any team inside? but the price is $1 ? crazy laaaaa people nowadays

1 billion USD is "how to do the ICO?"

What the hell are you smoking?
12  Alternate cryptocurrencies / Tokens (Altcoins) / Re: ⚡ [ANN] ⚡ TriForce Tokens Gaming ⚡ [ICO Escrowed] 🚀 Industry Partnerships 🚀 on: October 02, 2017, 04:14:05 PM
this is like the one-millionth game token announcement. do we need 30 of these things to solve the issue? maybe work to team up with other actors in the space, don't re-invent the wheel for the sake of a lame attempt at self-enrichment.
13  Other / Politics & Society / Re: Putin endorsed Ethereum on: September 28, 2017, 09:39:29 PM
This could be the start of a long-term financial gain that Russia could see.  If cryptocurrency continues on it's current path (esp with ETH and BTC), this could prove a significant cash flow for a country like Russia.
14  Alternate cryptocurrencies / Altcoin Discussion / Deploying New Token - Beginner Question on: September 28, 2017, 12:33:09 AM
I'm trying to launch my own token (just for fun, to try out some things with my friends). Went to the Mist Contracts page, selected Deploy New Contract, and paste the "full coin code" from the Ethereum.org guide:
Code:
pragma solidity ^0.4.16;

interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }

contract MyToken {
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function MyToken(
        uint256 initialSupply,
        string tokenName,
        uint8 decimalUnits,
        string tokenSymbol
    ) {
        balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
        totalSupply = initialSupply;                        // Update total supply
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
        decimals = decimalUnits;                            // Amount of decimals for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        require(_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require(balanceOf[_from] >= _value);                // Check if the sender has enough
        require(balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        Transfer(_from, _to, _value);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value)
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }

    /**
     * Destroy tokens from other ccount
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        Burn(_from, _value);
        return true;
    }
}

But I get the error:
Code:
 Source file requires different compiler version (current compiler is 0.4.13+commit.0fb4cb1a.Emscripten.clang - note that nightly builds are considered to be strictly less than the released version
pragma solidity ^0.4.16;
^----------------------^

Where do I get the 0.4.13 full coin code? Am I an idiot?
15  Alternate cryptocurrencies / Altcoin Discussion / Re: Newbie (me) trying to invest in a project on: September 26, 2017, 04:50:09 PM
best advice i have is to tag along to one of the big popular projects and do a small investment - like maybe $5 to $10 - just to go through the process and figure it out.
16  Alternate cryptocurrencies / Altcoin Discussion / Re: so what do you think about the new cyber unit? on: September 26, 2017, 04:47:26 PM
absolutely necessary! glad to see the SEC taking on the bad actors. unfortunately, i think a lot of them are located internationally, so i don't know how much the SEC can directly do but i'm sure they'll cooperate with international organizations.
17  Alternate cryptocurrencies / Altcoin Discussion / Re: Don't invest in ICOs without working products. on: September 26, 2017, 04:28:29 PM
agree. as much as people don't want to treat these like normal financial institutions, we should be looking at this the way that angel investors look at investments. it's exceedingly rare for a company to receive angel investment without at least an MVP/alpha version and some set of initial traction.
18  Other / Politics & Society / North Korea accuses US of declaring war on: September 25, 2017, 08:00:48 PM
It's all over the place today - BBC, CNN, etc. so choose your news platform of choice - but North Korea's foreign minister Ri Yong-ho said "The whole world should clearly remember it was the US who first declared war on our country" in response to DJT's tweets over the weekend.

The first time war has started because of Twitter... what a world.
19  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: TrezarCoin for BTC on: September 25, 2017, 07:58:18 PM
BTC only? Or would you take fiat?
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ICO] Munchee: Yelp meet Instagram - A blockchain-based restaurant review on: September 25, 2017, 07:55:45 PM
Seriosuly, can 1 person explain  why my mom or dad would use this app? Doesn't seem like a real mass appeal thing.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!