Search content
Sort by

Showing 20 of 156 results by firehawk71
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 02/04/2020, 15:55:35 UTC
The volume per day reached more than $ 40 million
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 02/04/2020, 06:35:37 UTC
Actual price - 0,17$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 31/03/2020, 20:46:50 UTC
Actual price - 0,18$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [TRB] Tellor - decentralized oracle built on Ethereum [POW/Staking]
by
firehawk71
on 30/03/2020, 14:51:12 UTC
In addition to buying on exchanges, it can also be mined. Yes difficult, but possible
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [TRB] Tellor - decentralized oracle built on Ethereum [POW/Staking]
by
firehawk71
on 30/03/2020, 09:56:23 UTC
How come this is just getting on Bitcointalk now? I just found out that this project got on Binancelabs over a year ago and they took this long to get an ANN on here? I still wonder if there are other more respectable announcement platforms other than Bitcointalk...
Apparently not all of the community is aware of Bitcointalk, so there was no announcement from them. Or others for any reason.
Bitcointalk is the largest and most important cryptocurrency forum, it is definitely better than it.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [TRB] Tellor - decentralized oracle built on Ethereum [POW/Staking]
by
firehawk71
on 30/03/2020, 05:06:33 UTC
Start mining TRB

Tellor is a staked miner. You will need 1000 TRB to mine. Additionally, TellorMiner requires that you run a dataServer process and a miner process. The instructions below can be used to get started.

1) Download miner

Windows: https://github.com/tellor-io/TellorMiner/releases/latest/download/TellorMiner.exe
Linux: wget https://github.com/tellor-io/TellorMiner/releases/latest/download/TellorMiner

2) Deposit your initial stake

To deposit your stake you can run the following command:
Code:
./TellorMiner --config=./config.json mine

3) Run the Miner

Start the miner by running this command in another terminal or process:
Code:
./TellorMiner --config=./config.json mine

After starting the miner, observe the logs it outputs to confirm it's working correctly.

TellorMiner Reference

Required Flags
--config (path to your config file)
--logConfig (path to your loggingConfig file)

Commands
Code:
mine (indicates to run the miner)
mine -r (indicates to mine utilizing a remote server)
dataserver (indicates to run the dataServer (no mining))
transfer (AMOUNT) (TOADDRESS) (indicates transfer, toAddress is Ethereum address and amount is number of Tributes (eg. transfer 10 0xea... (this transfers 10 tokens)))
approve (AMOUNT) (TOADDRESS) (ammount to approve the toaddress to send this amount of tokens
stake deposit (indicates to deposit 1000 tokens in the contract (note you must have 1000 Tributes in your account))
stake request (indicates you wish to withdraw your stake)
stake withdraw (withdraws your stake, run 1 week after request)
stake status (shows your staking balance)
balance (shows your balance)

Config file options:
Code:
* contractAddress (required) - address of TellorContract
* nodeURL (required) - node URL (e.g https://mainnet.infura.io/bbbb or https://localhost:8545 if own node)
* privateKey (required) - privateKey for your address (note, no 0x)
* databaseURL (required) - where you are reading from for the server database (if hosted)
* publicAddress (required) - public address for your miner (note, no 0x)
* ethClientTimeout (required) - timeout for making requests from your node
* trackerCycle (required) - how often your database updates (in seconds)
* trackers (required) - which pieces of the database you update
* dbFile (required) - where you want to store your local database (if self-hosting)
* serverHost (required) - location to host server
* serverPort (required) - port to host server
* serverWhitelist (required) - whitelists which publicAddress can access the data server
* fetchTimeout - timeout for requesting data from an API
* requestData - Will your miner request Data if challenge is 0.  If yes, then you will addTip() to this number.  Enter a uint number representing request id to be requested (e.g. 2)
* requestDataInterval - min frequency at which to request data at (in seconds, default 30)
* gasMultiplier - Multiplies the submitted gasPrice (e.g. 2 (will double gas costs))
* gasMax - a max for the gas price in gwei (note: this max comes BEFORE the gas multiplier.  So a max gas cost of 10 gwei, can have gas prices up to 20 if gasMultiplier is 2)
* heartbeat - an integer that controls how frequently the miner process should report the hashrate (larger is less frequent, try 1000000 to start)
* numProcessors - an integer number of processors to use for mining
* gpuConfig:{
        "foo":{
                "groupSize":64,
                "groups":128,
                "count":256,
                "disabled":false
        }
    }  -  GPU config options
* disputeTimeDelta - how far back to store values for min/max range - default 5 (in minutes)
* disputeThreshold - percentage of acceptable range outside min/max for dispute checking - default 0.01 (1%)
* psrFolder - folder location holding your psr.json file, default working directory

Running a remote data server

If you are running multiple miners, there is no reason to run multiple databases (the values you will submit should be identical). In addition, querying the same API from multiple processes can lead to rate limits on the public API's. To get around this, you can utilize a system where you run one:
Code:
TellorMiner dataServer

and multiple miners that all read off of the one database
Code:
TellorMiner mine -r
TellorMiner mine -r
etc...

To do this you need to edit your config file for the dataServer to add the public addresses of all remote miners that want to read the database:
Code:
“serverWhitelist”: [
                "0x1...",
                "0x2...."
        ]

And then in both your miner and dataServer config files, you must change the IP addresses to match (the server/port you are hosting/reading from)
Code:
"serverHost": "1.2.3.4",
"serverPort": 5000,

Note that your dataServer and miners must be separate commands

Connecting to a pool

Add the following to your config file:
Code:
"enablePoolWorker": true,
"poolURL": "<poolURL>",

Where the is the link to your pool. Current tellor pools:
Code:
http://tellorpool.org

Further options:
Code:
"poolJobDuration":10

The job duration is the time in seconds to grab information from the pool. The default time is 15 seconds.

Ending Mining Operations / Unstaking

To unstake your tokens, you need to request a withdraw:
Code:
./TellorMiner --config=./config.json stake request

One week after the request, the tokens are free to move at your discretion after running the command:
Code:
./TellorMiner --config=./config.json stake withdraw

Running the Disputer

Tellor as a system only functions properly if parties actively monitor the tellor network and dispute bad values. Expecting parties to manually look at every value submitted is obviously burdensome. The Tellor disputer automates this fact checking of values.

The way that it work is that your dataServer will store historical values (e.g. the last 10 minutes) and then compare any submitted values to the min/max of the historical values. If the value submitted is outside a certain threshold (e.g. 10% of the min/max), then the party will be notified and they can choose if they wish to dispute the bad value.

To start the disputer, add the following line to your config file IN THE TRACKERS ARRAY:
Code:
"disputeChecker"

Now when running the dataServer, you will store historical values and check for whether the submitted values were within min/max of the range of historical values given a threshold (e.g. 1% outside). The variables for configuring the time range of the historical values and the threshold are as follows:

Code:
    disputeTimeDelta: 5,
disputeThreshold: 0.01,

Where 5 and .01 are the defaults, the variables are the amount of time in minutes to store historical values for comparison and the the threshold outside the min/max of the values (e.g. 0.01 = 1%);

If the disputer is succesful and finds a submitted outside of your acceptable range, a text file containing pertinent information will be created in your working directory (the one you're running the miner out of) in the format:
Code:
"possible-dispute-(blocktime).txt"
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [TRB] Tellor - decentralized oracle built on Ethereum [POW/Staking]
by
firehawk71
on 29/03/2020, 20:21:18 UTC
Project information will be updated.
I am not a representative or developer of this coin.
Topic published to inform miners.
Developers can be found in the official media channels described above.
Post
Topic
Board Announcements (Altcoins)
[ANN] [TRB] Tellor - decentralized oracle built on Ethereum [POW/Staking]
by
firehawk71
on 29/03/2020, 20:13:47 UTC
About project
Ethereum smart contracts cannot access off-chain data. If your smart contract relies on off-chain (e.g. internet) data to evaluate or execute a function, you either have to manually feed the data to your contract, incentivize users to do it, or rely on a centralized party to provide the data (Oraclize.it is generally the standard).

The tellor oracle is a decentralized oracle. It provides a decentralized alternative for contracts to interact with and obtain data from off-chain (aka API data).

Tellor implements a hybrid Proof-of-work (PoW)/Staking model where miners have to stake tellor tributes (tellor's native token) to be able to mine and along with the PoW solution they also provide an off-chain data point. The first five miners to provide the PoW and off-chain data point are rewarded, the median becomes the official value and the value is available for on-chain contracts to use. The value can be disputed by anyone holding tellor tributes within 144 blocks(1 day) after being mined for a fee. After the value goes to dispute, anyone holding tributes can vote on it's validity. If the vote determines the value was invalid the reporting party gets awarded the miner's stake, otherwise the wrongly accused miner gets the reporting fee.

Features

Simple
Quick and easy to implement into your smart contracts

Decentralized
For developers who want a trustless solution and to not rely on third-party oracle solutions

Secure
We use a Staked Proof of Work protocol to validate our data

Own algorithm
We use our own solution for the implementation of our tasks

Our Investors
Binance, Maker and Consensys

Wallet
http://www.metamask.io/

Official miner
Windows: https://github.com/tellor-io/TellorMiner/releases/latest/download/TellorMiner.exe
Linux: wget https://github.com/tellor-io/TellorMiner/releases/latest/download/TellorMiner

Mining pools
https://miningpoolstats.stream/tellor

Block explorer
https://www.tellorscan.com/
https://etherscan.io/token/0x0ba45a8b5d5575935b8158a88c631e9f9c95a2e5
https://ethplorer.io/address/0x0ba45a8b5d5575935b8158a88c631e9f9c95a2e5

CoinTrackers
https://coinmarketcap.com/currencies/tellor/
https://www.coingecko.com/en/coins/tellor

Exchanges
https://idex.market/ETH/TRB
https://eterbase.exchange/markets/TRBETH
https://eterbase.exchange/markets/TRBUSDT
https://eterbase.exchange/markets/TRBEUR
https://bilaxy.com/trade/TRB_USDT
https://trade.citex.co.kr/trade/TRB_ETH
https://trade.citex.co.kr/trade/TRB_USDT
https://x.vite.net/trade?symbol=
https://uniswap.exchange/
https://eterbase.exchange/markets/TRBEBASE

GitHub
https://github.com/tellor-io/TellorCore

Soc media
https://discordapp.com/invite/n7drGjh
https://t.me/tellor
https://twitter.com/WeAreTellor

Whitepaper
https://tellor.io/whitepaper/

Website
https://tellor.io/

FAQ
https://tellor.io/faq/
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 28/03/2020, 21:47:59 UTC
Actual price - 0,16$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 28/03/2020, 07:01:55 UTC
What can you do with Handshake and DNS now?

Using OpenSSH, it’s possible to store SSH fingerprints in DNS. This means that if you're using a Handshake Name System (HNS) resolver, you can actually already verify SSH fingerprints in a decentralized way. This is possible without needing to install any additional, special SSH software.

DNS has an additional feature that allows you to verify TLS certificates by storing a hash of your ‘SubjectPublicKeyInfo’. This means that there is now a P2P way to trust self-signed certificates, as long as they have a valid DNSSEC trust chain set up. Anyone can set up a valid trust chain without having to ask anyone's permission to do so.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 27/03/2020, 05:21:40 UTC
Actual price - 0,16$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 24/03/2020, 13:57:18 UTC
Actual price - 0,15$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 22/03/2020, 17:35:12 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 21/03/2020, 21:17:27 UTC
Actual price - 0,17$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 21/03/2020, 18:24:35 UTC
What does the Handshake names auction process look like?

Users can buy or register domains through a Vickrey auction using HNS coins. All possible names are released weekly over the first year after launch. Users may submit blinded bids on the Handshake blockchain anytime after a name is released for auction. Bidding is open to everyone for ~5 days after the reveal period, and have ~10 days to reveal their bid price. A winner is assigned the name and, as it is a Vickrey auction, pays the second highest bid at the end of the reveal period. The winning bid amount of HNS coins is burned and permanently removed from circulation. Losing bids are returned and not burned.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 21/03/2020, 05:24:31 UTC
Actual price - 0,17$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 20/03/2020, 17:10:22 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 20/03/2020, 15:03:19 UTC
Does Handshake replace DNS?

No. Handshake is meant to replace the root zone file, not DNS. Browsing the web with human readable names is what Internet users have gotten acclimated to. Our solution allows for a seamless transition between a centralized name root zone file controlled by private parties to a decentralized root zone file controlled by actual Internet users. The Handshake blockchain itself is essentially one big distributed zone file in which anyone has the right to add an entry in.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 20/03/2020, 07:31:09 UTC
Actual price - 0,16$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
firehawk71
on 19/03/2020, 19:53:12 UTC
What issues have occured with the centralized nature of the root zone and DNS as it currently stands?

Certificate authorities and private owners of TLDs impose fees while often compromising the security of SSL by issuing bad certificates or cooperating with government attempts to spy on encrypted traffic or censor undesirable content. One common mechanism of Internet censorship that has been used with increasing and alarming frequency is DNS filtering and redirection. Another area where the centralized nature of Internet names has come to a head is domain registration privacy. Additionally, the way DNS is currently centered at a handful of choke points allows for DDoS attacks like we saw in the 2016 attack on Dyn.