Bitcoin Forum
May 05, 2024, 10:13:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 [31] 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 ... 93 »
  Print  
Author Topic: [ANN] Ellaism: Ethereum network with no premine and no contentious hard forks  (Read 118836 times)
eggsandspamm
Full Member
***
Offline Offline

Activity: 299
Merit: 100


View Profile
November 03, 2017, 09:27:18 PM
 #601

Wonder if anyone has any plans of bring over some dice games to the Ella chain  Smiley
1714947210
Hero Member
*
Offline Offline

Posts: 1714947210

View Profile Personal Message (Offline)

Ignore
1714947210
Reply with quote  #2

1714947210
Report to moderator
1714947210
Hero Member
*
Offline Offline

Posts: 1714947210

View Profile Personal Message (Offline)

Ignore
1714947210
Reply with quote  #2

1714947210
Report to moderator
The network tries to produce one block per 10 minutes. It does this by automatically adjusting how difficult it is to produce blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714947210
Hero Member
*
Offline Offline

Posts: 1714947210

View Profile Personal Message (Offline)

Ignore
1714947210
Reply with quote  #2

1714947210
Report to moderator
1714947210
Hero Member
*
Offline Offline

Posts: 1714947210

View Profile Personal Message (Offline)

Ignore
1714947210
Reply with quote  #2

1714947210
Report to moderator
1714947210
Hero Member
*
Offline Offline

Posts: 1714947210

View Profile Personal Message (Offline)

Ignore
1714947210
Reply with quote  #2

1714947210
Report to moderator
tbates76
Jr. Member
*
Offline Offline

Activity: 82
Merit: 1


View Profile
November 03, 2017, 09:47:42 PM
 #602

This coin has a TON of potential. Keeping my hash and Eye on it!


buzzkillb
Sr. Member
****
Offline Offline

Activity: 1021
Merit: 324


View Profile
November 03, 2017, 10:27:24 PM
 #603

Mining calculator. Does any of ELLA pools have that implemented or not yet?

This is a quick look for a calculator. Shows 100mh/s hash against how many coins for 24/hr and price. Currently top on the pool of coins.
http://minerpool.net/
Juudai
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
November 03, 2017, 11:26:54 PM
 #604

I'm not experienced in technical aspects but mabe someone knows.

Is there a way to create a dapp serving as a faucet? Donations will be sent to it by community members so that newcomers can receive a small airdrop of ELLA just to play with and to join the community.

Is is technically possible?

Yes it's possible. What's your objective here? You want to create a smart contract that distributes ella with the received donations?
Yes, sort of a classic crypto-faucet. User just fills in his ELLA address and gets a small amount of ELLA to his wallet. Same ELLA address and IP can repeat the same operation in, let' say, 60 min, etc.

Faucet wallet can be credited by any amount of donation from anyone using ELLA.

Yes this can be done and shouldn't take very long. Obviously this can't be 100% decentralized as you need to process user input (to avoid duplicates and filter repeating ip's and ella addresses).

The process goes something like this: User enters address -> server processes the information -> if user is legit ask the contract to send X amount of ella to the user -> contract sends the amount of ella to the recipient -> update front end

The only "decentralized" aspect of this project would be that the Ella would be stored on the contract address visible to everybody and only the owner (faucet) could request transactions (or the contract itself). A foot note to this, this doesn't make it decentralized as a central party (the faucet owner) can potentially keep all the ella from the donations since he is the only one with authorization to make transactions.

If you want to make this truly decentralized (contract + html + web3) you're prone to having some malicious user drain your wallet by using proxies and generating thousands of ella addresses, since you can't sanitize the requests which makes it not viable in my humble opinion.

I'm not a technical guy but hopefully someone some day makes that "ELLA Faucet Dapp" for the newcomers to get a bit of ELLA to play with it and to join the community.

And of course the wallet is more than welcome. Happy to hear it's gonna get live very soon. Cannot wait to test it.

I'm working on your idea right now, I can probably have a working prototype in 24 hours, maybe less if I don't get sidetracked by something irl.

Just got home, here's a rough proof of concept of a faucet smart contract:

Code:
pragma solidity ^0.4.18;

contract ellaFaucet {
    
    /* The calls to onlyOwner functions made to this contract need to be signed with the private key of the contract owner's address referenced in the constructor function _
    /* as a requirement to call the 'payFaucetUser' function (or else anyone could call it and claim infinite times with random addresses) _
    /* also as a requirement to call the 'changeClaimAmount' function (or else anyone could change the amount of ella the faucet dispenses) _
    /* gas is paid by the contract caller (the owner in this specific case if you're calling via web3 back end) so make sure the owner's address has some ella in it */
    
    address private owner;
    uint private claimAmount;
    
    modifier onlyOwner() {
        assert(msg.sender == owner);
        _;
    }
    
    function ellaFaucet() public { // constructor
        owner = msg.sender;
        claimAmount = 1000000000000000000; // Wei equivalent to 1 ella per claim
    }
    
    function () public payable {} // allow the contract to receive ella donations
    
    function payFaucetUser(address _payee) public onlyOwner returns (bool) {
        if (this.balance > 1000000000000000000) {
            _payee.transfer(claimAmount);
            return true;
        } else {
            throw; // faucet is dry :(
        }
    }
    
    function availableAmount() public view returns (uint) {
        return this.balance;
    }
    
    function changeClaimAmount(uint amount) public onlyOwner { // owner only
        claimAmount = amount;
    }
    
    function checkOwner() public view returns (address) {
        return owner;
    }
    
    function checkClaimAmount() public view returns (uint) {
        return claimAmount;
    }
}

I wrote this in 5 minutes, it can probably be improved. Obviously this will need a front end UI and a back end service so you can sanitize users (avoid multiple claims from the same ip, etc)
riddlez666
Member
**
Offline Offline

Activity: 166
Merit: 10


View Profile WWW
November 03, 2017, 11:44:39 PM
 #605

I'm not experienced in technical aspects but mabe someone knows.

Is there a way to create a dapp serving as a faucet? Donations will be sent to it by community members so that newcomers can receive a small airdrop of ELLA just to play with and to join the community.

Is is technically possible?

Yes it's possible. What's your objective here? You want to create a smart contract that distributes ella with the received donations?
Yes, sort of a classic crypto-faucet. User just fills in his ELLA address and gets a small amount of ELLA to his wallet. Same ELLA address and IP can repeat the same operation in, let' say, 60 min, etc.

Faucet wallet can be credited by any amount of donation from anyone using ELLA.

Yes this can be done and shouldn't take very long. Obviously this can't be 100% decentralized as you need to process user input (to avoid duplicates and filter repeating ip's and ella addresses).

The process goes something like this: User enters address -> server processes the information -> if user is legit ask the contract to send X amount of ella to the user -> contract sends the amount of ella to the recipient -> update front end

The only "decentralized" aspect of this project would be that the Ella would be stored on the contract address visible to everybody and only the owner (faucet) could request transactions (or the contract itself). A foot note to this, this doesn't make it decentralized as a central party (the faucet owner) can potentially keep all the ella from the donations since he is the only one with authorization to make transactions.

If you want to make this truly decentralized (contract + html + web3) you're prone to having some malicious user drain your wallet by using proxies and generating thousands of ella addresses, since you can't sanitize the requests which makes it not viable in my humble opinion.

I'm not a technical guy but hopefully someone some day makes that "ELLA Faucet Dapp" for the newcomers to get a bit of ELLA to play with it and to join the community.

And of course the wallet is more than welcome. Happy to hear it's gonna get live very soon. Cannot wait to test it.

I'm working on your idea right now, I can probably have a working prototype in 24 hours, maybe less if I don't get sidetracked by something irl.

Just got home, here's a rough proof of concept of a faucet smart contract:

Code:
pragma solidity ^0.4.18;

contract ellaFaucet {
    
    /* The calls to onlyOwner functions made to this contract need to be signed with the private key of the contract owner's address referenced in the constructor function _
    /* as a requirement to call the 'payFaucetUser' function (or else anyone could call it and claim infinite times with random addresses) _
    /* also as a requirement to call the 'changeClaimAmount' function (or else anyone could change the amount of ella the faucet dispenses) _
    /* gas is paid by the contract caller (the owner in this specific case if you're calling via web3 back end) so make sure the owner's address has some ella in it */
    
    address private owner;
    uint private claimAmount;
    
    modifier onlyOwner() {
        assert(msg.sender == owner);
        _;
    }
    
    function ellaFaucet() public { // constructor
        owner = msg.sender;
        claimAmount = 1000000000000000000; // Wei equivalent to 1 ella per claim
    }
    
    function () public payable {} // allow the contract to receive ella donations
    
    function payFaucetUser(address _payee) public onlyOwner returns (bool) {
        if (this.balance > 1000000000000000000) {
            _payee.transfer(claimAmount);
            return true;
        } else {
            throw; // faucet is dry :(
        }
    }
    
    function availableAmount() public view returns (uint) {
        return this.balance;
    }
    
    function changeClaimAmount(uint amount) public onlyOwner { // owner only
        claimAmount = amount;
    }
    
    function checkOwner() public view returns (address) {
        return owner;
    }
    
    function checkClaimAmount() public view returns (uint) {
        return claimAmount;
    }
}

I wrote this in 5 minutes, it can probably be improved. Obviously this will need a front end UI and a back end service so you can sanitize users (avoid multiple claims from the same ip, etc)

id like to work with you on the front end /backend i can provide a vps for it.
riddlez666
Member
**
Offline Offline

Activity: 166
Merit: 10


View Profile WWW
November 04, 2017, 12:00:32 AM
 #606

i can provide the url of faucet.ellaism.io for it which is perfect for dapps
eggsandspamm
Full Member
***
Offline Offline

Activity: 299
Merit: 100


View Profile
November 04, 2017, 02:25:23 AM
 #607

is the quantity of tokens limited?

Check out https://coinmarketcap.com/currencies/ellaism/
eggsandspamm
Full Member
***
Offline Offline

Activity: 299
Merit: 100


View Profile
November 04, 2017, 02:53:04 AM
 #608

is the quantity of tokens limited?


Max of 280,000,000 started at 0 and all coins have been mined.
tinchopf
Full Member
***
Offline Offline

Activity: 157
Merit: 100


ARweY484XkBSRCaPMATy9PCfrKJkgqWF6T


View Profile
November 04, 2017, 03:17:13 AM
 #609

is the quantity of tokens limited?

Now I'm confused... That's the maximum number of coins, and also the number of tokens?

Max of 280,000,000 started at 0 and all coins have been mined.

eggsandspamm
Full Member
***
Offline Offline

Activity: 299
Merit: 100


View Profile
November 04, 2017, 03:30:26 AM
 #610

Sorry, do you mean tokens that can be built on top of Ella’s chain? In that case I doubt There’s a limit.

As far as coins, max circulating ella is 280,000,000 with around 1,600,000 currently in circulation.
wickedabc
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
November 04, 2017, 06:03:59 AM
 #611

I will follow closely
sc0rp1on
Newbie
*
Offline Offline

Activity: 81
Merit: 0


View Profile WWW
November 04, 2017, 07:34:30 AM
 #612

Wow. I don't check the thread for a day and all this happens.
I like the coin doubler. Should we start doubling our coins? lol
eggsandspamm
Full Member
***
Offline Offline

Activity: 299
Merit: 100


View Profile
November 04, 2017, 08:20:35 AM
 #613

Wow. I don't check the thread for a day and all this happens.
I like the coin doubler. Should we start doubling our coins? lol

Lol careful a the contract is just a proof of concept , also looks like you only get back 12% of what you put in Wink
tr8kr
Hero Member
*****
Offline Offline

Activity: 661
Merit: 500


View Profile
November 04, 2017, 09:38:27 AM
 #614

That’s a really good community , all peeps on the discord are working together to build something that could catch a lot of people that missed the train on eth,etc or komodo but with a different vision on the utility of this chain. Not gonna stop to mine this gem for long !
myxamop
Hero Member
*****
Offline Offline

Activity: 882
Merit: 502


View Profile
November 04, 2017, 09:52:56 AM
 #615

That’s a really good community , all peeps on the discord are working together to build something that could catch a lot of people that missed the train on eth,etc or komodo but with a different vision on the utility of this chain. Not gonna stop to mine this gem for long !
Totally agree, l think this chain have a bright future.
CHRlS
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile WWW
November 04, 2017, 10:27:28 AM
 #616

Pool List:

https://minerpool.net/pools/ellaism/


▒░░ PIRL ░░░WHALECOIN░░▒█▀▄▀█ ▀█▀ ▒█▄░▒█ ▒█▀▀▀ ▒█▀▀█ ▒█▀▀█ ▒█▀▀▀█ ▒█▀▀▀█ ▒█░░░ ░ ▒█▄░▒█ ▒█▀▀▀ ▀▀█▀▀  ░▒░░ PIRL ░░░WHALECOIN░░▒
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒█▒█ ▒█░ ▒█▒█▒█ ▒█▀▀▀ ▒█▄▄▀ ▒█▄▄█ ▒█░░▒█ ▒█░░▒█ ▒█░░░ ░ ▒█▒█▒█ ▒█▀▀▀ ░▒█░░░░▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
▒░ MUSICOIN  ░░░░  UBIQ ░▒█░░▒█ ▄█▄ ▒█░░▀█ ▒█▄▄▄ ▒█░▒█ ▒█░░░ ▒█▄▄▄█ ▒█▄▄▄█ ▒█▄▄█ █ ▒█░░▀█ ▒█▄▄▄ ░▒█░░░░▒░ MUSICOIN░░░░░░UBIQ░▒
Cryptobitpool
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile WWW
November 04, 2017, 11:49:11 AM
 #617

EU Server Pool:

http://ella.cryptobitpool.eu
taildown
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
November 04, 2017, 01:06:09 PM
 #618

Interesting, keep my eye on
striker7334 2.0
Sr. Member
****
Offline Offline

Activity: 560
Merit: 300


Unprofessional shitcoin trader since 2011


View Profile
November 04, 2017, 05:08:17 PM
 #619

So I see that Bisq is coming soon are there any plans to try and get on somewhere like Crypto-Bridge or Openledger? I know technically they are a part of the competition but in the end the more DEX's ELLA is on, the better its future is secure. One last note on DEX's a Waves gateway would really bring this coin up the ranks pretty quick and inspire community development to really take off move onto things like mobile wallets and other projects of adoption!

sjeezman
Full Member
***
Offline Offline

Activity: 127
Merit: 100


View Profile
November 04, 2017, 05:15:15 PM
 #620

I see the mcap is now around 300k.
I think this can easily be 30 million, no?
I dont want to shill any coin, but seeing this features en development, it should atleast be at 10 million mcap.
I think an exchange like cryptopia can help.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 [31] 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 ... 93 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!