@taqueria/plugin-taquito 0.28.0 → 0.28.1
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.
- package/README.md +4 -4
- package/_readme.eta +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ The Taquito plugin provides stateful tasks to originate and interact with smart
|
|
|
5
5
|
## Requirements
|
|
6
6
|
|
|
7
7
|
- Taqueria v0.26.0 or later
|
|
8
|
-
- Node.js v16.
|
|
8
|
+
- Node.js v16.16 or later. (v17.x.x or later is not supported)
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
@@ -21,17 +21,17 @@ The target networks, sandboxes, and environments are configured in the Taqueria
|
|
|
21
21
|
> ### :page_with_curl: Note
|
|
22
22
|
> Network environments have the notion of Taqueria Operator Account. This account is meant to be used internally and it is generated for you if it doesn't already exist. Instructions on how to fund the account is provided by the `taq` binary when the account is first generated
|
|
23
23
|
|
|
24
|
-
## The `taq
|
|
24
|
+
## The `taq deploy` task
|
|
25
25
|
|
|
26
26
|
Basic usage is:
|
|
27
27
|
|
|
28
28
|
```shell
|
|
29
|
-
taq
|
|
29
|
+
taq deploy <contractName>
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
### Basic description
|
|
33
33
|
|
|
34
|
-
The Taquito plugin exposes a `taq
|
|
34
|
+
The Taquito plugin exposes a `taq deploy` (or `taq originate`) task in Taqueria which will originate the specified Michelson contract to a Taqueria environment
|
|
35
35
|
|
|
36
36
|
This will originate a Michelson `.tz` file in the `artifacts` directory to the default development environment (the sandbox named `local`)
|
|
37
37
|
|
package/_readme.eta
CHANGED
|
@@ -7,7 +7,7 @@ The Taquito plugin provides stateful tasks to originate and interact with smart
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
9
9
|
- Taqueria v0.26.0 or later
|
|
10
|
-
- Node.js v16.
|
|
10
|
+
- Node.js v16.16 or later. (v17.x.x or later is not supported)
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
@@ -24,17 +24,17 @@ The target networks, sandboxes, and environments are configured in the Taqueria
|
|
|
24
24
|
Network environments have the notion of Taqueria Operator Account. This account is meant to be used internally and it is generated for you if it doesn't already exist. Instructions on how to fund the account is provided by the `taq` binary when the account is first generated
|
|
25
25
|
<%= it.closeAdmonition %>
|
|
26
26
|
|
|
27
|
-
## The `taq
|
|
27
|
+
## The `taq deploy` task
|
|
28
28
|
|
|
29
29
|
Basic usage is:
|
|
30
30
|
|
|
31
31
|
```shell
|
|
32
|
-
taq
|
|
32
|
+
taq deploy <contractName>
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### Basic description
|
|
36
36
|
|
|
37
|
-
The Taquito plugin exposes a `taq
|
|
37
|
+
The Taquito plugin exposes a `taq deploy` (or `taq originate`) task in Taqueria which will originate the specified Michelson contract to a Taqueria environment
|
|
38
38
|
|
|
39
39
|
This will originate a Michelson `.tz` file in the `artifacts` directory to the default development environment (the sandbox named `local`)
|
|
40
40
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taqueria/plugin-taquito",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.1",
|
|
4
4
|
"description": "A taqueria plugin for originating smart contracts using Taquito",
|
|
5
5
|
"targets": {
|
|
6
6
|
"default": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://github.com/ecadlabs/taqueria#readme",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@taqueria/node-sdk": "^0.28.
|
|
45
|
+
"@taqueria/node-sdk": "^0.28.1",
|
|
46
46
|
"@taquito/michel-codec": "^15.0.0",
|
|
47
47
|
"@taquito/signer": "^15.0.0",
|
|
48
48
|
"@taquito/taquito": "^15.0.0",
|