-
Notifications
You must be signed in to change notification settings - Fork 17
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
1 parent
8680fa2
commit 0d9acf1
Showing
76 changed files
with
827 additions
and
9,259 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 |
---|---|---|
|
@@ -11,6 +11,8 @@ module.exports = { | |
|
||
}, | ||
ignorePatterns: [ | ||
|
||
"coverage/**", | ||
"typechain-types/**", | ||
"**/venv/**" | ||
] | ||
}; |
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 |
---|---|---|
@@ -1,9 +1,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/proxy" | ||
schedule: | ||
interval: "weekly" | ||
day: "saturday" | ||
allow: | ||
- dependency-type: "production" | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
||
- package-ecosystem: "pip" | ||
directory: "/scripts/" | ||
schedule: | ||
interval: "weekly" |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "dictionary"] | ||
path = dictionary | ||
url = https://github.com/skalenetwork/dictionary.git |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM node:18 | |
RUN mkdir /app | ||
|
||
COPY VERSION /app | ||
COPY proxy /app | ||
COPY ./ /app | ||
|
||
WORKDIR /app | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"ignorePaths": [ | ||
".gitignore", | ||
"artifacts/**", | ||
"cache/**", | ||
"coverage/**", | ||
"coverage.json", | ||
"data/**", | ||
"typechain-types/**", | ||
"**/venv/**" | ||
], | ||
"dictionaries": ["domain-terms", "libraries", "names", "skale-terms", "solidity"], | ||
"dictionaryDefinitions": [ | ||
{ "name": "skale-terms", "path": "dictionary/skale-terms.txt"}, | ||
{ "name": "libraries", "path": "dictionary/libraries.txt"}, | ||
{ "name": "domain-terms", "path": "dictionary/domain-terms.txt"}, | ||
{ "name": "names", "path": "dictionary/names.txt"}, | ||
{ "name": "solidity", "path": "dictionary/solidity.txt"} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
<!-- SPDX-License-Identifier: (AGPL-3.0-only OR CC-BY-4.0) --> | ||
<!-- cspell:words creds --> | ||
|
||
# SKALE IMA Deployer | ||
|
||
These helper scripts will deploy `IMA` on a SKALE chain. | ||
|
||
## Usage | ||
|
||
1) Place credentials files for each SKALE chain into the `creds` directory | ||
2) Run `python deployer.py` | ||
1) Place credentials files for each SKALE chain into the `creds` directory | ||
2) Run `python deployer.py` | ||
|
||
## Requirements | ||
|
||
- python 3.6+ | ||
- scp | ||
- all dependencies for truffle deployment (see `proxy` folder) | ||
- python 3.6+ | ||
- scp | ||
- all dependencies for truffle deployment (see root folder) |
Submodule dictionary
added at
cb4838
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
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
Oops, something went wrong.