mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-12-02 05:57:21 +01:00
Update readme file, fix error in setting default ocean-contracts version.
This commit is contained in:
parent
7ee85c9503
commit
b61407d9c5
19
README.md
19
README.md
@ -58,14 +58,15 @@ The startup script comes with a set of options for customizing various things.
|
|||||||
|
|
||||||
The default versions are always a combination of component versions which are considered stable.
|
The default versions are always a combination of component versions which are considered stable.
|
||||||
|
|
||||||
| Aquarius | Provider | Ganache |
|
| Aquarius | Provider | Ganache | ocean-contracts |
|
||||||
| -------- | -------- | -------- |
|
| -------- | -------- | -------- | --------------- |
|
||||||
| `vx.x.x` | `vx.x.x` | `latest` |
|
| `vx.x.x` | `vx.x.x` | `latest` | `test`
|
||||||
|
|
||||||
You can override the Docker image tag used for a particular component by setting its associated environment variable before calling `start_ocean.sh`:
|
You can override the Docker image tag used for a particular component by setting its associated environment variable before calling `start_ocean.sh`:
|
||||||
|
|
||||||
- `AQUARIUS_VERSION`
|
- `AQUARIUS_VERSION`
|
||||||
- `PROVIDER_VERSION`
|
- `PROVIDER_VERSION`
|
||||||
|
- `CONTRACTS_VERSION`
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
@ -116,7 +117,17 @@ This Building Block can be disabled by setting the `--no-aquarius` flag.
|
|||||||
| ----------- | ------------- | --------------------- | --------------------- | --------------------------------------------------- |
|
| ----------- | ------------- | --------------------- | --------------------- | --------------------------------------------------- |
|
||||||
| `ganache` | `8545` | http://ganache:9000 | http://localhost:8545 | |
|
| `ganache` | `8545` | http://ganache:9000 | http://localhost:8545 | |
|
||||||
|
|
||||||
The accounts can be access with this seed phrase:
|
### ocean-contracts
|
||||||
|
* Deploy all smart contracts from the ocean-contracts repo
|
||||||
|
* Export artifacts files (.json) to default shared folder between all containers
|
||||||
|
* Create address file (address.json) that has the address of each deployed
|
||||||
|
smart contract that is required by the ocean library. This file is saved to the same folder with the artifacts files
|
||||||
|
|
||||||
|
| Hostname | External Port | Internal URL | Local URL | Description |
|
||||||
|
| ------------------- | ------------- | --------------------- | --------------------- | ------------------------------------------- |
|
||||||
|
| `ocean-contracts` | | | | |
|
||||||
|
|
||||||
|
The accounts can be accessed with this seed phrase:
|
||||||
|
|
||||||
```
|
```
|
||||||
taxi music thumb unique chat sand crew more leg another off lamp
|
taxi music thumb unique chat sand crew more leg another off lamp
|
||||||
|
@ -29,7 +29,7 @@ COMPOSE_DIR="${DIR}/compose-files"
|
|||||||
# Default versions of Aquarius, Provider
|
# Default versions of Aquarius, Provider
|
||||||
export AQUARIUS_VERSION=${AQUARIUS_VERSION:-latest}
|
export AQUARIUS_VERSION=${AQUARIUS_VERSION:-latest}
|
||||||
export PROVIDER_VERSION=${PROVIDER_VERSION:-latest}
|
export PROVIDER_VERSION=${PROVIDER_VERSION:-latest}
|
||||||
export CONTRACTS_VERSION=${CONTRACTS_VERSION-test}
|
export CONTRACTS_VERSION=${CONTRACTS_VERSION:-test}
|
||||||
export PROJECT_NAME="ocean"
|
export PROJECT_NAME="ocean"
|
||||||
export FORCEPULL="false"
|
export FORCEPULL="false"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user