@taqueria/plugin-taquito 0.0.0-pr-726-e060c010 → 0.0.0-pr-575-850bfda7
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 +26 -18
- package/_readme.eta +44 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,34 +1,42 @@
|
|
|
1
1
|
# Taqueria Taquito Plugin
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The Taquito plugin provides a task to originate a smart contract to a Tezos network
|
|
4
4
|
|
|
5
|
+
## Requirements
|
|
5
6
|
|
|
6
|
-
|
|
7
|
+
The Taquito plugin has no additional requirements
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
## Installation
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
To install the Taquito plugin on a Taqueria project, navigate to the project folder and run:
|
|
12
|
+
```shell
|
|
13
|
+
taq install @taqueria/plugin-taquito
|
|
14
|
+
```
|
|
11
15
|
|
|
12
|
-
|
|
13
|
-
- `originate`
|
|
16
|
+
## Configuration
|
|
14
17
|
|
|
15
|
-
|
|
18
|
+
***Coming soon***
|
|
16
19
|
|
|
17
|
-
|
|
18
|
-
- Node.js v16 or later
|
|
19
|
-
- Docker v0.8.4 or later
|
|
20
|
+
## Usage
|
|
20
21
|
|
|
21
|
-
|
|
22
|
+
The Taquito plugin exposes an `originate` task in Taqueria which will originate the specified Michelson contract to the configured network
|
|
22
23
|
|
|
23
|
-
|
|
24
|
+
### Originating a Michelson Contract
|
|
24
25
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
***Coming soon***
|
|
27
|
+
|
|
28
|
+
### Examples
|
|
29
|
+
|
|
30
|
+
***Coming soon***
|
|
29
31
|
|
|
30
32
|
## Plugin Architecture
|
|
31
33
|
|
|
32
|
-
This is a plugin developed for Taqueria built on NodeJS using the Taqueria Node SDK
|
|
34
|
+
This is a plugin developed for Taqueria built on NodeJS using the Taqueria Node SDK
|
|
35
|
+
|
|
36
|
+
The plugin provides a single task `originate`, used for originating Michelson contracts to a Tezos network:
|
|
33
37
|
|
|
34
|
-
|
|
38
|
+
| attribute | value |
|
|
39
|
+
|------------|:-------------------------|
|
|
40
|
+
| task | 'deploy' |
|
|
41
|
+
| command | 'deploy [contract]` |
|
|
42
|
+
| aliases | ['originate'] |
|
package/_readme.eta
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<% if (it.output == "github") { %>
|
|
2
|
+
# Taqueria Taquito Plugin
|
|
3
|
+
<% } %>
|
|
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
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
To install the Taquito plugin on a Taqueria project, navigate to the project folder and run:
|
|
14
|
+
```shell
|
|
15
|
+
taq install @taqueria/plugin-taquito
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Configuration
|
|
19
|
+
|
|
20
|
+
***Coming soon***
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
The Taquito plugin exposes an `originate` task in Taqueria which will originate the specified Michelson contract to the configured network
|
|
25
|
+
|
|
26
|
+
### Originating a Michelson Contract
|
|
27
|
+
|
|
28
|
+
***Coming soon***
|
|
29
|
+
|
|
30
|
+
### Examples
|
|
31
|
+
|
|
32
|
+
***Coming soon***
|
|
33
|
+
|
|
34
|
+
## Plugin Architecture
|
|
35
|
+
|
|
36
|
+
This is a plugin developed for Taqueria built on NodeJS using the Taqueria Node SDK
|
|
37
|
+
|
|
38
|
+
The plugin provides a single task `originate`, used for originating Michelson contracts to a Tezos network:
|
|
39
|
+
|
|
40
|
+
| attribute | value |
|
|
41
|
+
|------------|:-------------------------|
|
|
42
|
+
| task | 'deploy' |
|
|
43
|
+
| command | 'deploy [contract]` |
|
|
44
|
+
| aliases | ['originate'] |
|