Skip to content

Commit

Permalink
0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
octalmage committed Jun 14, 2023
1 parent 8f2de10 commit 5f0e944
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
38 changes: 19 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ DESCRIPTION
contracts.
```
_See code: [src/commands/console.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/console.ts)_
_See code: [src/commands/console.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/console.ts)_
## `terrain contract:build CONTRACT`
Expand All @@ -546,7 +546,7 @@ DESCRIPTION
Build wasm bytecode.
```
_See code: [src/commands/contract/build.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/contract/build.ts)_
_See code: [src/commands/contract/build.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/contract/build.ts)_
## `terrain contract:instantiate CONTRACT`
Expand All @@ -572,7 +572,7 @@ DESCRIPTION
Instantiate the contract.
```
_See code: [src/commands/contract/instantiate.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/contract/instantiate.ts)_
_See code: [src/commands/contract/instantiate.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/contract/instantiate.ts)_
## `terrain contract:migrate CONTRACT`
Expand All @@ -599,7 +599,7 @@ DESCRIPTION
Migrate the contract.
```
_See code: [src/commands/contract/migrate.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/contract/migrate.ts)_
_See code: [src/commands/contract/migrate.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/contract/migrate.ts)_
## `terrain contract:new NAME`
Expand All @@ -625,7 +625,7 @@ EXAMPLES
$ terrain code:new awesome_contract --path path/to/dapp --authors "ExampleAuthor<example@email.domain>"
```
_See code: [src/commands/contract/new.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/contract/new.ts)_
_See code: [src/commands/contract/new.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/contract/new.ts)_
## `terrain contract:optimize CONTRACT`
Expand All @@ -639,7 +639,7 @@ DESCRIPTION
Optimize wasm bytecode.
```
_See code: [src/commands/contract/optimize.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/contract/optimize.ts)_
_See code: [src/commands/contract/optimize.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/contract/optimize.ts)_
## `terrain contract:schema CONTRACT`
Expand All @@ -653,7 +653,7 @@ DESCRIPTION
Generate contract schema.
```
_See code: [src/commands/contract/schema.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/contract/schema.ts)_
_See code: [src/commands/contract/schema.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/contract/schema.ts)_
## `terrain contract:store CONTRACT`
Expand All @@ -679,7 +679,7 @@ DESCRIPTION
Store code on chain.
```
_See code: [src/commands/contract/store.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/contract/store.ts)_
_See code: [src/commands/contract/store.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/contract/store.ts)_
## `terrain contract:updateAdmin CONTRACT ADMIN`
Expand All @@ -704,7 +704,7 @@ DESCRIPTION
Update the admin of a contract.
```
_See code: [src/commands/contract/updateAdmin.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/contract/updateAdmin.ts)_
_See code: [src/commands/contract/updateAdmin.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/contract/updateAdmin.ts)_
## `terrain deploy CONTRACT`
Expand Down Expand Up @@ -735,7 +735,7 @@ DESCRIPTION
Build wasm bytecode, store code on chain and instantiate.
```
_See code: [src/commands/deploy.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/deploy.ts)_
_See code: [src/commands/deploy.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/deploy.ts)_
## `terrain help [COMMAND]`
Expand Down Expand Up @@ -787,7 +787,7 @@ EXAMPLES
$ terrain new awesome-dapp --path path/to/dapp --framework vue --authors "ExampleAuthor<example@email.domain>"
```
_See code: [src/commands/new.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/new.ts)_
_See code: [src/commands/new.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/new.ts)_
## `terrain query CONTRACT MSG`
Expand Down Expand Up @@ -815,7 +815,7 @@ EXAMPLES
$ terrain query juno1..af00x '{"get_count": {}}' --network testnet --config-path ../config.terrain.json
```
_See code: [src/commands/query.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/query.ts)_
_See code: [src/commands/query.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/query.ts)_
## `terrain sync-refs`
Expand All @@ -833,7 +833,7 @@ DESCRIPTION
Sync configuration with frontend app.
```
_See code: [src/commands/sync-refs.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/sync-refs.ts)_
_See code: [src/commands/sync-refs.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/sync-refs.ts)_
## `terrain task:new [TASK]`
Expand All @@ -847,7 +847,7 @@ DESCRIPTION
Create a new task.
```
_See code: [src/commands/task/new.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/task/new.ts)_
_See code: [src/commands/task/new.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/task/new.ts)_
## `terrain task:run [TASK]`
Expand All @@ -871,7 +871,7 @@ DESCRIPTION
run predefined task
```
_See code: [src/commands/task/run.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/task/run.ts)_
_See code: [src/commands/task/run.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/task/run.ts)_
## `terrain test CONTRACT-NAME`
Expand All @@ -893,7 +893,7 @@ EXAMPLES
$ terrain test counter --no-fail-fast
```
_See code: [src/commands/test.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/test.ts)_
_See code: [src/commands/test.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/test.ts)_
## `terrain test:coverage [CONTRACT-NAME]`
Expand All @@ -912,7 +912,7 @@ EXAMPLES
$ terrain test:coverage counter
```
_See code: [src/commands/test/coverage.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/test/coverage.ts)_
_See code: [src/commands/test/coverage.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/test/coverage.ts)_
## `terrain tx CONTRACT MSG`
Expand Down Expand Up @@ -945,7 +945,7 @@ EXAMPLES
$ terrain tx juno1..af00x '{"reset": {"count": 0}}' --network testnet
```
_See code: [src/commands/tx.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/tx.ts)_
_See code: [src/commands/tx.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/tx.ts)_
## `terrain wallet:new`
Expand All @@ -963,5 +963,5 @@ DESCRIPTION
Generate a new wallet to use for signing contracts.
```
_See code: [src/commands/wallet/new.ts](https://github.com/terra-money/terrain/blob/v0.7.0/src/commands/wallet/new.ts)_
_See code: [src/commands/wallet/new.ts](https://github.com/terra-money/terrain/blob/v0.8.0/src/commands/wallet/new.ts)_
<!-- commandsstop -->
4 changes: 2 additions & 2 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.7.0",
"version": "0.8.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 5f0e944

Please sign in to comment.