-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -514,7 +514,7 @@ DESCRIPTION | |
contracts. | ||
``` | ||
_See code: [src/commands/console.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/console.ts)_ | ||
_See code: [src/commands/console.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/console.ts)_ | ||
## `terrain contract:generateClient CONTRACT` | ||
|
@@ -533,7 +533,7 @@ DESCRIPTION | |
Generate a Wallet Provider or Terra.js compatible TypeScript client. | ||
``` | ||
_See code: [src/commands/contract/generateClient.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/contract/generateClient.ts)_ | ||
_See code: [src/commands/contract/generateClient.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/contract/generateClient.ts)_ | ||
## `terrain contract:instantiate CONTRACT` | ||
|
@@ -558,7 +558,7 @@ DESCRIPTION | |
Instantiate the contract. | ||
``` | ||
_See code: [src/commands/contract/instantiate.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/contract/instantiate.ts)_ | ||
_See code: [src/commands/contract/instantiate.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/contract/instantiate.ts)_ | ||
## `terrain contract:migrate CONTRACT` | ||
|
@@ -585,7 +585,7 @@ DESCRIPTION | |
Migrate the contract. | ||
``` | ||
_See code: [src/commands/contract/migrate.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/contract/migrate.ts)_ | ||
_See code: [src/commands/contract/migrate.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/contract/migrate.ts)_ | ||
## `terrain contract:new NAME` | ||
|
@@ -611,7 +611,7 @@ EXAMPLES | |
$ terrain code:new awesome_contract --path path/to/dapp --authors "ExampleAuthor<[email protected]>" | ||
``` | ||
_See code: [src/commands/contract/new.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/contract/new.ts)_ | ||
_See code: [src/commands/contract/new.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/contract/new.ts)_ | ||
## `terrain contract:store CONTRACT` | ||
|
@@ -635,7 +635,7 @@ DESCRIPTION | |
Store code on chain. | ||
``` | ||
_See code: [src/commands/contract/store.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/contract/store.ts)_ | ||
_See code: [src/commands/contract/store.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/contract/store.ts)_ | ||
## `terrain contract:updateAdmin CONTRACT ADMIN` | ||
|
@@ -658,7 +658,7 @@ DESCRIPTION | |
Update the admin of a contract. | ||
``` | ||
_See code: [src/commands/contract/updateAdmin.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/contract/updateAdmin.ts)_ | ||
_See code: [src/commands/contract/updateAdmin.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/contract/updateAdmin.ts)_ | ||
## `terrain deploy CONTRACT` | ||
|
@@ -688,7 +688,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.5.7/src/commands/deploy.ts)_ | ||
_See code: [src/commands/deploy.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/deploy.ts)_ | ||
## `terrain help [COMMAND]` | ||
|
@@ -740,7 +740,7 @@ EXAMPLES | |
$ terrain new awesome-dapp --path path/to/dapp --framework vue --authors "ExampleAuthor<[email protected]>" | ||
``` | ||
_See code: [src/commands/new.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/new.ts)_ | ||
_See code: [src/commands/new.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/new.ts)_ | ||
## `terrain sync-refs [FILE]` | ||
|
@@ -758,7 +758,7 @@ DESCRIPTION | |
Sync configuration with frontend app. | ||
``` | ||
_See code: [src/commands/sync-refs.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/sync-refs.ts)_ | ||
_See code: [src/commands/sync-refs.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/sync-refs.ts)_ | ||
## `terrain task:new [TASK]` | ||
|
@@ -772,7 +772,7 @@ DESCRIPTION | |
create new task | ||
``` | ||
_See code: [src/commands/task/new.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/task/new.ts)_ | ||
_See code: [src/commands/task/new.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/task/new.ts)_ | ||
## `terrain task:run [TASK]` | ||
|
@@ -794,7 +794,7 @@ DESCRIPTION | |
run predefined task | ||
``` | ||
_See code: [src/commands/task/run.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/task/run.ts)_ | ||
_See code: [src/commands/task/run.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/task/run.ts)_ | ||
## `terrain test CONTRACT-NAME` | ||
|
@@ -816,7 +816,7 @@ EXAMPLES | |
$ terrain test counter --no-fail-fast | ||
``` | ||
_See code: [src/commands/test.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/test.ts)_ | ||
_See code: [src/commands/test.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/test.ts)_ | ||
## `terrain test:coverage [CONTRACT-NAME]` | ||
|
@@ -835,7 +835,7 @@ EXAMPLES | |
$ terrain test:coverage counter | ||
``` | ||
_See code: [src/commands/test/coverage.ts](https://github.com/terra-money/terrain/blob/v0.5.7/src/commands/test/coverage.ts)_ | ||
_See code: [src/commands/test/coverage.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/test/coverage.ts)_ | ||
## `terrain wallet:new` | ||
|
@@ -853,5 +853,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.5.7/src/commands/wallet/new.ts)_ | ||
_See code: [src/commands/wallet/new.ts](https://github.com/terra-money/terrain/blob/v0.5.8/src/commands/wallet/new.ts)_ | ||
<!-- commandsstop --> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters