-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update project references #121
Conversation
README.md
Outdated
|
||
[](https://slack.gnosis.pm) | ||
|
||
## Getting Started | ||
|
||
See the [documentation](https://gnosisjs.readthedocs.io/en/latest/). | ||
See the [documentation](https://pm-js.readthedocs.io/en/latest/). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Be careful with this.
@@ -31,7 +31,7 @@ async function createDescription () { | |||
createDescription() | |||
``` | |||
|
|||
Of course, future events will come to pass, and once they do, the outcome should be determinable. Oracles report on the outcome of events. The simplest oracle contract provided by Gnosis is a [`CentralizedOracle`](https://gnosis-contracts.readthedocs.io/en/latest/CentralizedOracle.html), and it is controlled by a single entity: the `owner` of the contract, which is a single Ethereum address, and which will from this point forward in this guide be referred to as the centralized oracle itself. | |||
Of course, future events will come to pass, and once they do, the outcome should be determinable. Oracles report on the outcome of events. The simplest oracle contract provided by Gnosis is a [`CentralizedOracle`](https://pm-contracts.readthedocs.io/en/latest/CentralizedOracle.html), and it is controlled by a single entity: the `owner` of the contract, which is a single Ethereum address, and which will from this point forward in this guide be referred to as the centralized oracle itself. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Be careful with this.
> ``` | ||
> https://gnosisdb.rinkeby.gnosis.pm/api/events/EVENT_ADDRESS | ||
> https://pm-trading-db.rinkeby.gnosis.pm/api/events/EVENT_ADDRESS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Be careful with this.
I'm gonna hold off for a moment so that all the RtD stuff can be finalized |
8b88896
to
8832aca
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎰 🎲 🎴
"nodebuild": "babel src/ --out-dir dist --source-maps", | ||
"webbuild": "webpack && cross-env WEBPACK_ENV=minified webpack -p", | ||
"dev": "run-with-testrpc 'npm run migrate && webpack-dev-server'", | ||
"test": "run-with-testrpc -l 40000000 'npm run migrate && npm run test-manual'", | ||
"test-manual": "multidep test/multidep.json && mocha --timeout 120000 --require babel-core/register $MOCHA_OPTS", | ||
"test-gnosisdb": "cross-env GNOSIS_OPTIONS='{\"ipfs\":{\"host\":\"localhost\",\"port\":5001,\"protocol\":\"http\"}}' npm run test-manual", | ||
"test-pm-trading-db": "cross-env GNOSIS_OPTIONS='{\"ipfs\":{\"host\":\"localhost\",\"port\":5001,\"protocol\":\"http\"}}' npm run test-manual", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@denisgranha Gotta remember about this script name change...
@@ -92,8 +92,8 @@ describe('Gnosis', function () { | |||
|
|||
await gnosis.setWeb3Provider(ganache.provider({ network_id: 4 })) | |||
|
|||
assert.equal(gnosis.olympiaToken.address, '0xa0c107db0e9194c18359d3265289239453b56cf2') | |||
assert.equal(gnosis.olympiaAddressRegistry.address, '0x79da1c9ef6bf6bc64e66f8abffddc1a093e50f13') | |||
assert.equal(gnosis.olympiaToken.address, '0x979861df79c7408553aaf20c01cfb3f81ccf9341') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know these changed upstream... I can't remember if that was intentional 😅
8832aca
to
3bbd6a3
Compare
Updated to be consistent with the new project names.
package-lock.json and
/dist
must be regenerated.