npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eth-random

v0.0.4-alpha.1

Published

An Ethereum contract for generating pseudo-random numbers

Downloads

17

Readme

Random for Solidity (eth-random)

Eth-Random is an Ethereum contract for generating pseudo-random numbers.

Our goal - Implementing the simplest and most efficient ways to generate a random number of arbitrary size over the Ethereum network.

The motivation for this project came from a need for a true and cheap way to create random assets. Despite a couple of posts and comments found on the internet, we couldn't find a single common resource. However, the beauty and strength of our approach comes from growth via developer usage! The more people using the same contract the more the internal seed value becomes unpredictable, generating stronger results.

Caveats

Firstly, the block timestamp is not terribly unpredictable and yet it's one of the strongest sources of entropy available in the blockchain along with contract's internal seed.

Ideally, the caller of Random function should have minimal interest in the result, nor let interested users choose at which block the contract will be called.

If security is a main focus, it may be best to look into purchasing an oracle solution such as oraclize

Usage

The Ethereum contract can be found at the following addresses:

Main net

  • random: 0x0230CfC895646d34538aE5b684d76Bf40a8B8B89 etherscan

Rinkeby (test)

  • random: 0x606b7f97bFEaCDf430059e6ef8918F2BaD1EF7FD etherscan

Ropsten (test)

  • random: 0x1637140C895e01d14be5a7A42Ec2c5BB22893713 etherscan

Using in truffle

Install with npm install eth-random

Initialize and use random

Once you've located the contract's address, you can initialize the API with the address.

import "eth-random/contracts/Random.sol";

contract Foo {
  Random api = Random(/* set address here */);

  function rollDice() returns (uint64) {
    return api.random(6);
  }
}

See a simple RPG example

Stats

Run 10,000 on a 1,000 range, using testrpc on locahost data spreadsheet. Distribution:

graph

average: 503.3 std deviation: 287.3

Test

Have truffle framework and testrpc installed and running.

npm test

Contributing

Please see CONTRIBUTING.md