Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
octalmage committed May 27, 2022
1 parent b95d0f9 commit 5b652d8
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 34 deletions.
60 changes: 30 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ Terrain is **not**:
# Table of contents

<!-- toc -->

- [Setup](#setup)
- [Getting Started](#getting-started)
- [Migrating CosmWasm Contracts on Terra](#migrating-cosmwasm-contracts-on-terra)
- [Use Terrain Main Branch Locally](#use-terrain-main-branch-locally)
- [Terrain Commands](#terrain-commands)

* [Terrain](#terrain)
* [Table of contents](#table-of-contents)
* [Setup](#setup)
* [Getting Started](#getting-started)
* [Migrating CosmWasm Contracts on Terra](#migrating-cosmwasm-contracts-on-terra)
* [Use Terrain Main Branch Locally](#use-terrain-main-branch-locally)
* [Terrain Commands](#terrain-commands)
<!-- tocstop -->

# Setup
Expand Down Expand Up @@ -427,7 +427,6 @@ npm unlink terrain
# Terrain Commands
<!-- commands -->
* [`terrain code:new NAME`](#terrain-codenew-name)
* [`terrain code:store CONTRACT`](#terrain-codestore-contract)
* [`terrain console`](#terrain-console)
Expand Down Expand Up @@ -459,7 +458,7 @@ DESCRIPTION
Generate new contract.
```
_View code: [src/commands/code/new.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/code/new.ts)_
_See code: [src/commands/code/new.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/code/new.ts)_
## `terrain code:store CONTRACT`
Expand All @@ -483,7 +482,7 @@ DESCRIPTION
Store code on chain.
```
_View code: [src/commands/code/store.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/code/store.ts)_
_See code: [src/commands/code/store.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/code/store.ts)_
## `terrain console`
Expand All @@ -504,7 +503,7 @@ DESCRIPTION
contracts.
```
_View code: [src/commands/console.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/console.ts)_
_See code: [src/commands/console.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/console.ts)_
## `terrain contract:instantiate CONTRACT`
Expand All @@ -529,7 +528,7 @@ DESCRIPTION
Instantiate the contract.
```
_View code: [src/commands/contract/instantiate.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/contract/instantiate.ts)_
_See code: [src/commands/contract/instantiate.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/contract/instantiate.ts)_
## `terrain contract:migrate [CONTRACT]`
Expand All @@ -538,9 +537,11 @@ Migrate the contract.
```
USAGE
$ terrain contract:migrate [CONTRACT] --signer <value> [--no-rebuild] [--network <value>] [--config-path <value>]
[--refs-path <value>] [--keys-path <value>] [--instance-id <value>] [--code-id <value>]
[--refs-path <value>] [--keys-path <value>] [--instance-id <value>] [--code-id <value>] [--arm64]
FLAGS
--arm64 use rust-optimizer-arm64 for optimization. Not recommended for production, but it will optimize
quicker on arm64 hardware during development.
--code-id=<value> target code id for migration
--config-path=<value> [default: ./config.terrain.json]
--instance-id=<value> [default: default]
Expand All @@ -554,7 +555,7 @@ DESCRIPTION
Migrate the contract.
```
_View code: [src/commands/contract/migrate.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/contract/migrate.ts)_
_See code: [src/commands/contract/migrate.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/contract/migrate.ts)_
## `terrain contract:updateAdmin CONTRACT ADMIN`
Expand All @@ -577,7 +578,7 @@ DESCRIPTION
Update the admin of a contract.
```
_View code: [src/commands/contract/updateAdmin.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/contract/updateAdmin.ts)_
_See code: [src/commands/contract/updateAdmin.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/contract/updateAdmin.ts)_
## `terrain deploy CONTRACT`
Expand Down Expand Up @@ -607,11 +608,11 @@ DESCRIPTION
Build wasm bytecode, store code on chain and instantiate.
```
_View code: [src/commands/deploy.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/deploy.ts)_
_See code: [src/commands/deploy.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/deploy.ts)_
## `terrain help [COMMAND]`
Display help for terrain.
display help for terrain
```
USAGE
Expand All @@ -624,10 +625,10 @@ FLAGS
--all see all commands in CLI
DESCRIPTION
Display help for terrain.
display help for terrain
```
_View code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.18/src/commands/help.ts)_
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.18/src/commands/help.ts)_
## `terrain new NAME`
Expand Down Expand Up @@ -657,7 +658,7 @@ EXAMPLES
$ terrain new --framework next awesome-dapp --path path/to/dapp
```
_View code: [src/commands/new.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/new.ts)_
_See code: [src/commands/new.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/new.ts)_
## `terrain sync-refs [FILE]`
Expand All @@ -675,25 +676,25 @@ DESCRIPTION
Sync configuration with frontend app.
```
_View code: [src/commands/sync-refs.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/sync-refs.ts)_
_See code: [src/commands/sync-refs.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/sync-refs.ts)_
## `terrain task:new [TASK]`
Create new task.
create new task
```
USAGE
$ terrain task:new [TASK]
DESCRIPTION
Create new task.
create new task
```
_View code: [src/commands/task/new.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/task/new.ts)_
_See code: [src/commands/task/new.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/task/new.ts)_
## `terrain task:run [TASK]`
Run predefined task.
run predefined task
```
USAGE
Expand All @@ -707,10 +708,10 @@ FLAGS
--refs-path=<value> [default: refs.terrain.json]
DESCRIPTION
Run predefined task.
run predefined task
```
_View code: [src/commands/task/run.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/task/run.ts)_
_See code: [src/commands/task/run.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/task/run.ts)_
## `terrain test CONTRACT-NAME`
Expand All @@ -732,7 +733,7 @@ EXAMPLES
$ terrain test counter --no-fail-fast
```
_View code: [src/commands/test.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/test.ts)_
_See code: [src/commands/test.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/test.ts)_
## `terrain wallet:new`
Expand All @@ -750,6 +751,5 @@ DESCRIPTION
Generate a new wallet.
```
_View code: [src/commands/wallet/new.ts](https://github.com/terra-money/terrain/blob/v0.2.0/src/commands/wallet/new.ts)_
_See code: [src/commands/wallet/new.ts](https://github.com/terra-money/terrain/blob/v0.3.0/src/commands/wallet/new.ts)_
<!-- commandsstop -->
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@terra-money/terrain",
"description": "Terra development environment",
"version": "0.2.0",
"version": "0.3.0",
"__comment": "^ update template package.json to the same version when publish",
"author": "Supanat Potiwarakorn @iboss-ptk",
"bugs": "https://github.com/terra-money/terrain/issues",
Expand Down

0 comments on commit 5b652d8

Please sign in to comment.