evm-deployer 0.0.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/AUTHORS.rst +43 -0
- package/COPYING +661 -0
- package/README.md +92 -0
- package/dist/evm-deployer/evm-deployer.js +2 -0
- package/dist/evm-deployer/fs-worker.js +1 -0
- package/dist/evm-deployer/index.html +24 -0
- package/dist/libevm-deployer/fs-worker.js +1 -0
- package/dist/libevm-deployer/index.html +24 -0
- package/dist/libevm-deployer/libevm-deployer.js +2 -0
- package/evm-deployer +1022 -0
- package/lib/deployer +602 -0
- package/libevm-deployer +174 -0
- package/package.json +134 -0
package/README.md
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
[comment]: <> (SPDX-License-Identifier: AGPL-3.0)
|
|
2
|
+
|
|
3
|
+
[comment]: <> (----------------------------------------------------)
|
|
4
|
+
[comment]: <> (Copyright © 2024, 2025, 2026)
|
|
5
|
+
[comment]: <> ( Pellegrino Prevete)
|
|
6
|
+
[comment]: <> (All rights reserved)
|
|
7
|
+
[comment]: <> (----------------------------------------------------)
|
|
8
|
+
|
|
9
|
+
[comment]: <> (This program is free software: you can redistribute)
|
|
10
|
+
[comment]: <> (it and/or modify it under the terms of the)
|
|
11
|
+
[comment]: <> (GNU Affero General Public License as published)
|
|
12
|
+
[comment]: <> (by the Free Software Foundation, either version)
|
|
13
|
+
[comment]: <> (3 of the License.)
|
|
14
|
+
|
|
15
|
+
[comment]: <> (This program is distributed in the hope that it)
|
|
16
|
+
[comment]: <> (will be useful, but WITHOUT ANY WARRANTY;)
|
|
17
|
+
[comment]: <> (without even the implied warranty of)
|
|
18
|
+
[comment]: <> (MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.)
|
|
19
|
+
[comment]: <> (See the GNU Affero General Public License)
|
|
20
|
+
[comment]: <> (for more details.)
|
|
21
|
+
|
|
22
|
+
[comment]: <> (You should have received a copy of the)
|
|
23
|
+
[comment]: <> (GNU Affero General Public License)
|
|
24
|
+
[comment]: <> (with this program.)
|
|
25
|
+
[comment]: <> (If not, see <https://www.gnu.org/licenses/>.)
|
|
26
|
+
|
|
27
|
+
# EVM Deployer (`evm-deployer.js`)
|
|
28
|
+
|
|
29
|
+
Javascript smart contracts deployer for Ethereum
|
|
30
|
+
Virtual Machine (EVM) compatible blockchain networks.
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
man \
|
|
34
|
+
evm-deployer
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
It tightly integrates with
|
|
38
|
+
[EVM Wallet](
|
|
39
|
+
https://github.com/themartiancompany/evm-wallet),
|
|
40
|
+
and uses
|
|
41
|
+
[Solidity compiler](
|
|
42
|
+
https://github.com/themartiancompany/solidity-compiler)
|
|
43
|
+
to compile contracts,
|
|
44
|
+
[EVM Chains Info](
|
|
45
|
+
https://github.com/themartiancompany/evm-chains-info)
|
|
46
|
+
to retrieve informations about the blockchain networks and
|
|
47
|
+
[Ethers](
|
|
48
|
+
https://github.com/ethers-io/ethers)
|
|
49
|
+
to deploy contracts.
|
|
50
|
+
|
|
51
|
+
This program is part of the EVM Toolchain.
|
|
52
|
+
|
|
53
|
+
## Installation
|
|
54
|
+
|
|
55
|
+
The program in this source repo
|
|
56
|
+
can be installed from source using GNU Make.
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
make \
|
|
60
|
+
install
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
The program has officially published on the
|
|
64
|
+
the uncensorable
|
|
65
|
+
[Ur](
|
|
66
|
+
https://github.com/themartiancompany/ur)
|
|
67
|
+
user repository and application store as
|
|
68
|
+
`evm-deployer`.
|
|
69
|
+
The source code is published on the
|
|
70
|
+
[Ethereum Virtual Machine File System](
|
|
71
|
+
https://github.com/themartiancompany/evmfs)
|
|
72
|
+
so it can't possibly be taken down.
|
|
73
|
+
|
|
74
|
+
To install it from there just type
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
ur \
|
|
78
|
+
evm-deployer
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
A censorable HTTP Github mirror of the recipe published there,
|
|
82
|
+
containing a full list of the software dependencies needed to run the
|
|
83
|
+
program is hosted on
|
|
84
|
+
[evm-deployer-ur](
|
|
85
|
+
https://github.com/themartiancompany/evm-deployer-ur).
|
|
86
|
+
Be aware the mirror could go offline any time as Github and more
|
|
87
|
+
in general all HTTP resources are inherently unstable and censorable.
|
|
88
|
+
|
|
89
|
+
## License
|
|
90
|
+
|
|
91
|
+
This program is released by Pellegrino Prevete under the terms
|
|
92
|
+
of the GNU Affero General Public License version 3.
|