@taqueria/plugin-taquito 0.4.2 → 0.5.3-rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +16 -11
  2. package/_readme.eta +16 -11
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,10 +1,6 @@
1
1
  # Taqueria Taquito Plugin
2
2
 
3
- The Taquito plugin provides a task to originate a smart contract to a Tezos network
4
-
5
- ## Requirements
6
-
7
- The Taquito plugin has no additional requirements
3
+ The Taquito plugin provides a stateful task to originate a smart contract to a Tezos sandbox or testnet
8
4
 
9
5
  ## Installation
10
6
 
@@ -15,19 +11,27 @@ taq install @taqueria/plugin-taquito
15
11
 
16
12
  ## Configuration
17
13
 
18
- ***Coming soon***
14
+ The target networks, sandboxes, and environments are configured in the Taqueria project's `config.json` file. For additional information on configuring network, documentation can be found [here](https://taqueria.io/docs/getting-started/networks/)
19
15
 
20
16
  ## Usage
21
17
 
22
- The Taquito plugin exposes an `originate` task in Taqueria which will originate the specified Michelson contract to the configured network
18
+ ### The `taq originate` task
19
+
20
+ The Taquito plugin exposes an `taq originate` task in Taqueria which will originate the specified Michelson contract to a Taqueria environment
23
21
 
24
- ### Originating a Michelson Contract
22
+ Basic usage is:
25
23
 
26
- ***Coming soon***
24
+ ```shell
25
+ taq originate
26
+ ```
27
27
 
28
- ### Examples
28
+ This will originate all '.tz' files in the `/artifacts` directory to the default environment (the sandbox named `local`)
29
29
 
30
- ***Coming soon***
30
+ To target a different environment, use the `--environment` flag with the named Taqueria environment you want to target :
31
+
32
+ ```shell
33
+ taq originate -e ithacanetEnv
34
+ ```
31
35
 
32
36
  ## Plugin Architecture
33
37
 
@@ -40,3 +44,4 @@ The plugin provides a single task `originate`, used for originating Michelson co
40
44
  | task | 'deploy' |
41
45
  | command | 'deploy [contract]` |
42
46
  | aliases | ['originate'] |
47
+
package/_readme.eta CHANGED
@@ -2,11 +2,7 @@
2
2
  # Taqueria Taquito Plugin
3
3
  <% } %>
4
4
 
5
- The Taquito plugin provides a task to originate a smart contract to a Tezos network
6
-
7
- ## Requirements
8
-
9
- The Taquito plugin has no additional requirements
5
+ The Taquito plugin provides a stateful task to originate a smart contract to a Tezos sandbox or testnet
10
6
 
11
7
  ## Installation
12
8
 
@@ -17,19 +13,27 @@ taq install @taqueria/plugin-taquito
17
13
 
18
14
  ## Configuration
19
15
 
20
- ***Coming soon***
16
+ The target networks, sandboxes, and environments are configured in the Taqueria project's `config.json` file. For additional information on configuring network, documentation can be found [here](https://taqueria.io/docs/getting-started/networks/)
21
17
 
22
18
  ## Usage
23
19
 
24
- The Taquito plugin exposes an `originate` task in Taqueria which will originate the specified Michelson contract to the configured network
20
+ ### The `taq originate` task
21
+
22
+ The Taquito plugin exposes an `taq originate` task in Taqueria which will originate the specified Michelson contract to a Taqueria environment
25
23
 
26
- ### Originating a Michelson Contract
24
+ Basic usage is:
27
25
 
28
- ***Coming soon***
26
+ ```shell
27
+ taq originate
28
+ ```
29
29
 
30
- ### Examples
30
+ This will originate all '.tz' files in the `/artifacts` directory to the default environment (the sandbox named `local`)
31
31
 
32
- ***Coming soon***
32
+ To target a different environment, use the `--environment` flag with the named Taqueria environment you want to target :
33
+
34
+ ```shell
35
+ taq originate -e ithacanetEnv
36
+ ```
33
37
 
34
38
  ## Plugin Architecture
35
39
 
@@ -42,3 +46,4 @@ The plugin provides a single task `originate`, used for originating Michelson co
42
46
  | task | 'deploy' |
43
47
  | command | 'deploy [contract]` |
44
48
  | aliases | ['originate'] |
49
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taqueria/plugin-taquito",
3
- "version": "0.4.2",
3
+ "version": "0.5.3-rc1",
4
4
  "description": "A taqueria plugin for originating smart contracts using Taquito",
5
5
  "targets": {
6
6
  "default": {
@@ -46,7 +46,7 @@
46
46
  "typescript": "^4.7.2"
47
47
  },
48
48
  "dependencies": {
49
- "@taqueria/node-sdk": "^0.4.2",
49
+ "@taqueria/node-sdk": "^0.6.2",
50
50
  "@taquito/signer": "^12.1.1",
51
51
  "@taquito/taquito": "^12.1.1",
52
52
  "fast-glob": "^3.2.11"