Skip to content

Commit 2c88a43

Browse files
committed
Initial rebranding changes
Up version Fix sendTo
1 parent 6e82b64 commit 2c88a43

26 files changed

+66
-65
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
88
.pnpm-debug.log*
9+
.vscode/*
910

1011
# Diagnostic reports (https://nodejs.org/api/report.html)
1112
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"editor.codeActionsOnSave": {
3-
"source.fixAll.eslint": true
3+
"source.fixAll.eslint": "explicit"
44
},
55
"eslint.enable": true,
66
"eslint.validate": ["javascript", "typescript"],

CHANGELOG.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ All notable changes to this project will be documented in this file.
3030

3131
### New
3232

33-
- Added [support of Signature ID](https://github.com/tonlabs/ever-sdk/blob/master/CHANGELOG.md) on the networks with
33+
- Added [support of Signature ID](https://github.com/everx-labs/ever-sdk/blob/master/CHANGELOG.md) on the networks with
3434
`CapSignatureWithId` capability enabled.
3535
- Added new option `everdev contract deploy --workchain` to specify in which workchain to deploy a contract.
3636
- `everdev contract decode-tvc` command renamed to `everdev contract decode-stateinit`.
@@ -84,7 +84,7 @@ All notable changes to this project will be documented in this file.
8484

8585
### New
8686

87-
- `sold` - [Solidity Compiler Driver](https://github.com/tonlabs/TON-Solidity-Compiler/tree/master/sold) - version management added. Try it with `everdev sold install`.
87+
- `sold` - [Solidity Compiler Driver](https://github.com/everx-labs/TVM-Solidity-Compiler/tree/master/sold) - version management added. Try it with `everdev sold install`.
8888

8989
- Added a new `everdev sol compile` option `-i [ --include-path ] path/to/dir` to make an additional source directory available
9090
to the default import callback.\
@@ -195,7 +195,7 @@ All notable changes to this project will be documented in this file.
195195
196196
## [1.1.1] - 2022-02-11
197197
### Fixed
198-
- An error "TON Client binary bridge is not set" that occurred when using `js wrap` command as a module
198+
- An error "EVER Client binary bridge is not set" that occurred when using `js wrap` command as a module
199199
200200
### Improved
201201
- Command parameter parsing when using tondev as a module.
@@ -251,7 +251,7 @@ Now its version is always equal to the compiler's version.
251251
252252
## [0.10.5] - 2021-11-11
253253
### NEW
254-
- Added the ability to compile [SafeMultisigWallet](https://github.com/tonlabs/ton-labs-contracts/tree/master/solidity/safemultisig) for Linux platform. The size of the compiled contract will be different from the original due to a different linker, but the compiler is the same
254+
- Added the ability to compile [SafeMultisigWallet](https://github.com/everx-labs/ton-labs-contracts/tree/master/solidity/safemultisig) for Linux platform. The size of the compiled contract will be different from the original due to a different linker, but the compiler is the same
255255
256256
Install the appropriate compiler, linker, and stdlib versions:
257257
```
@@ -333,7 +333,7 @@ ls -l SafeMultisigWallet.tvc
333333
- `--version` or `-v` or `-V` global option prints current tondev version.
334334
335335
### Fixed
336-
- "tondev clang set --compiler" didn't change installed compiler version https://github.com/tonlabs/tondev/issues/42
336+
- "tondev clang set --compiler" didn't change installed compiler version https://github.com/everx-labs/tondev/issues/42
337337
- `tondev` did not not fill the command args with default values when user ran commands programmatically.
338338
- `tondev info` stopped if one of the tools failed.
339339
@@ -389,7 +389,7 @@ ls -l SafeMultisigWallet.tvc
389389
## [0.5.0] - 2021-04-23
390390
391391
### New
392-
- `clang` controller for [C++ compiler](https://github.com/tonlabs/TON-Compiler):
392+
- `clang` controller for [C++ compiler](https://github.com/everx-labs/TON-Compiler):
393393
install, compile with 1 command, manage versions, etc.
394394
- `signer` controller for signer registry management:
395395
generate keys, import keys and mnemonics, specify default signer, etc.
@@ -433,7 +433,7 @@ ls -l SafeMultisigWallet.tvc
433433
- SDK functionality added
434434
- [See the list of available demo projects](README.md#see-the-list-of-available-demo-projects)
435435
- [Install demo project](README.md#install-demo-project)
436-
- [tonos-cli](README.md#tonos-cli)
436+
- [ever-cli](README.md#ever-cli)
437437
- Install
438438
- Version
439439
- Set
@@ -442,7 +442,7 @@ ls -l SafeMultisigWallet.tvc
442442
## [0.2.0] - 2021-02-26
443443
444444
### New
445-
- [TON OS Startup Edition(SE) functionality](https://github.com/tonlabs/tondev#ton-os-startup-editionse):
445+
- [EVER OS Startup Edition(SE) functionality](https://github.com/everx-labs/tondev#ton-os-startup-editionse):
446446
- Start
447447
- Version
448448
- Set

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ If you see an EACCESS error when you try to install a package globally on Mac or
7575

7676
### Using pre-compiled binaries
7777

78-
You can download precompiled binaries for your platform from [the latest release](https://github.com/tonlabs/everdev/releases/). After download you need to create directory if it does not exists.
78+
You can download precompiled binaries for your platform from [the latest release](https://github.com/everx-labs/everdev/releases/). After download you need to create directory if it does not exists.
7979

8080
For linux/macos:
8181

@@ -116,7 +116,7 @@ Select a base image that provides GLIBC ver. 2.29 or higher if you want to use t
116116
```
117117
docker run -it --rm ubuntu:20.04
118118
# apt update && apt upgrade -y && apt install -y curl
119-
# curl -L https://github.com/tonlabs/everdev/releases/download/1.3.1/everdev-linux.tgz --output everdev-linux.tgz
119+
# curl -L https://github.com/everx-labs/everdev/releases/download/1.3.1/everdev-linux.tgz --output everdev-linux.tgz
120120
# tar xvf everdev-linux.tgz
121121
# mv everdev /usr/local/bin/
122122
```
@@ -142,15 +142,15 @@ Some tools (network, signer, contract, js) and commands have short aliases. For
142142
143143
### [Solidity Compiler](docs/command-line-interface/solidity.md)
144144
145-
Controller for [Everscale Solidity compiler](https://github.com/tonlabs/TON-Solidity-Compiler).
145+
Controller for [Everscale Solidity compiler](https://github.com/everx-labs/TVM-Solidity-Compiler).
146146
147147
### [Solidity Compiler Driver](docs/command-line-interface/solidity-compiler-driver.md)
148148
149-
Controller for [sold - Everscale Solidity compiler driver](https://github.com/tonlabs/TON-Solidity-Compiler/tree/master/sold)
149+
Controller for [sold - Everscale Solidity compiler driver](https://github.com/everx-labs/TVM-Solidity-Compiler/tree/master/sold)
150150
151151
### [C/C++ Compiler](docs/command-line-interface/c.md)
152152
153-
Controller for [Everscale Clang Compiler](https://github.com/tonlabs/TON-Compiler).
153+
Controller for [Everscale Clang Compiler](https://github.com/everx-labs/TON-Compiler).
154154
155155
### [Network Tool](docs/command-line-interface/network-tool.md)
156156
@@ -166,15 +166,15 @@ Controller for working with smart contracts.
166166
167167
### [Evernode Simple Emulator (local blockchain)](docs/command-line-interface/evernode-platform-startup-edition-se.md)
168168
169-
Controller for [Local Node emulator](https://github.com/tonlabs/evernode-se).
169+
Controller for [Local Node emulator](https://github.com/everx-labs/evernode-se).
170170
171171
### [Debot Browser](docs/command-line-interface/debrowser.md)
172172
173173
Controller for DeBot browser.
174174
175175
### [TestSuite4](docs/command-line-interface/testsuite4.md)
176176
177-
Controller for [TestSuite4](https://github.com/tonlabs/TestSuite4) testing framework.
177+
Controller for [TestSuite4](https://github.com/everx-labs/TestSuite4) testing framework.
178178
179179
180180

ci/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def gitbook(project_name = null) {
88
sshagent([G_gitcred]) {
99
def tmpFolder = UUID.randomUUID().toString()
1010
sh """
11-
git clone -b gitbook [email protected]:tonlabs/${project_name} ${tmpFolder}
11+
git clone -b gitbook [email protected]:everx-labs/${project_name} ${tmpFolder}
1212
"""
1313
dir(tmpFolder) {
1414
try {

ci/gitbook/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pipeline {
1313
sshagent([G_gitcred]) {
1414
def tmpFolder = UUID.randomUUID().toString()
1515
sh """
16-
git clone -b gitbook [email protected]:tonlabs/everdev ${tmpFolder}
16+
git clone -b gitbook [email protected]:everx-labs/everdev ${tmpFolder}
1717
"""
1818
dir(tmpFolder) {
1919
try {

contracts/HelloWallet.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
/**
33
* This file was generated by EverDev.
4-
* EverDev is a part of TON OS (see http://ton.dev).
4+
* EverDev is a part of EVER OS (see http://ton.dev).
55
*/
66
pragma ton-solidity >= 0.67.0;
77
pragma AbiHeader expire;

docs/SUMMARY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424

2525
## Links
2626

27-
* [everdev repository](https://github.com/tonlabs/everdev)
28-
* [ever-sdk repository](https://github.com/tonlabs/ever-sdk)
27+
* [everdev repository](https://github.com/everx-labs/everdev)
28+
* [ever-sdk repository](https://github.com/everx-labs/ever-sdk)

docs/command-line-interface/evernode-platform-startup-edition-se.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Available Versions: 0, 0.24, 0.24.5, 0.24.6, 0.24.8, 0.24.9, 0.24.10, 0.24.11, 0
2323

2424
## Set
2525

26-
This command switches Evernode SE to the specified version and port and downloads it, if it is missing. **Attention! This command does not start TON OS SE, you need to run `start` command separately.**
26+
This command switches Evernode SE to the specified version and port and downloads it, if it is missing. **Attention! This command does not start EVER OS SE, you need to run `start` command separately.**
2727

2828
```shell
2929
everdev se set --version 0.24.11 --port 2020

docs/command-line-interface/signer-tool.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Options:
4949
5050
## Add a signer with specific keys
5151
52-
This command adds a signer with previously generated (e.g. with tonos-cli) keys.
52+
This command adds a signer with previously generated (e.g. with ever-cli) keys.
5353
5454
```bash
5555
everdev signer add signer_name signer_secret_key_or_seed_phrase_in_quotes
@@ -78,7 +78,7 @@ Options:
7878
8 Spanish
7979
--force, -f Overwrite signer if already exists
8080
```
81-
**Note:** By default the dictionary is set to english, which allows using seed phrases generated by other TONOS tools, such as tonos-cli.
81+
**Note:** By default the dictionary is set to english, which allows using seed phrases generated by other EVERX tools, such as ever-cli.
8282
8383
8484
## List registered signers

docs/command-line-interface/testsuite4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
TestSuite4 is a framework designed to simplify development and testing of TON Contracts. It contains lightweight blockchain emulator making it easy to develop contracts in a TDD-friendly style.
44

5-
For more information, visit [TestSuite4's documentation](https://tonlabs.github.io/TestSuite4/).
5+
For more information, visit [TestSuite4's documentation](https://everx-labs.github.io/TestSuite4/).
66

77
:information_source: `Python 3.6 - 3.9` and `pip` required.
88

docs/guides/creating-controller.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Currently all the controllers must be implemented inside of the `everdev` packag
1212

1313
To create a new controller:
1414

15-
- Clone `[email protected]:tonlabs/everdev.git`.
15+
- Clone `[email protected]:everx-labs/everdev.git`.
1616
- Create and checkout branch for the new controller.
1717
- Create a folder under `src/controllers`.
1818
- Implement the controller code.

docs/guides/quick-start.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
This guide will help you get started with such essential Everscale tools as:
66

7-
* [Everdev CLI](https://github.com/tonlabs/everdev)
8-
* [Solidity Compiler](https://github.com/tonlabs/TON-Solidity-Compiler)
9-
* [Local Blockchain](https://github.com/tonlabs/evernode-se)
7+
* [Everdev CLI](https://github.com/everx-labs/everdev)
8+
* [Solidity Compiler](https://github.com/everx-labs/TVM-Solidity-Compiler)
9+
* [Local Blockchain](https://github.com/everx-labs/evernode-se)
1010
* [Everscale Blockchain Explorer](https://ever.live)
1111
* [GraphQL API](https://docs.everplatform.dev/reference/graphql-api)
1212
* [Evercloud dashboard](https://dashboard.evercloud.dev)
@@ -87,15 +87,15 @@ $ everdev se start
8787

8888
### Configure default network
8989

90-
Set Local Blockchain [SE (Simple Emulator)](https://github.com/tonlabs/evernode-se) as the default network:
90+
Set Local Blockchain [SE (Simple Emulator)](https://github.com/everx-labs/evernode-se) as the default network:
9191

9292
```bash
9393
$ everdev network default se
9494
```
9595

9696
### Configure Giver wallet that will sponsor deploy operation
9797

98-
Here we use address and private key of [SE High Load Giver](https://github.com/tonlabs/evernode-se/tree/master/contracts/giver\_v3). 
98+
Here we use address and private key of [SE High Load Giver](https://github.com/everx-labs/evernode-se/tree/master/contracts/giver\_v3). 
9999

100100
Note: it may be already configured if you make a clean install of the latest Everdev. Then you can skip this step. If you are updating from some old version, it is necessary.
101101

docs/view-controller-info.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ compiler 0.42.0, 0.41.0, 0.40.0, 0.39.0, 0.38.2, 0.38.1
2424
linker 0.3.0, 0.1.0
2525
stdlib 0.42.0, 0.41.0, 0.40.0, 0.39.0, 0.38.2, 0.38.1
2626
27-
TON OS SE
27+
EVER OS SE
2828
2929
Instance State Version GraphQL Port Docker Container Docker Image
3030
-------- ------------- ------- ------------ -------------------- -----------------------
@@ -46,7 +46,7 @@ surf 8534c46f7a135058773fa1298cb3a299a5ddd40dafe41cb06c64f274da360bfb
4646
test (Default) ad4bf7bd8da244932c52127a943bfa9217b6e215c1b3307272283c4d64f34486
4747
test2 5c2e348c5caeb420a863dc5e972f897ebe5ee899a6ef2a8299aac352eca4380a
4848
49-
TON OS CLI
49+
EVER OS CLI
5050
5151
Component Version Available
5252
--------- ------- --------------------------------------------------------------------------------

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "everdev",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"description": "Everscale Dev Environment",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/tonlabs/everdev.git"
9+
"url": "https://github.com/everx-labs/everdev.git"
1010
},
1111
"scripts": {
1212
"prepublishOnly": "npm i && tsc",
@@ -29,10 +29,10 @@
2929
"Freeton",
3030
"Dev",
3131
"Development",
32-
"TONOS",
32+
"EVER OS",
3333
"EVEROS"
3434
],
35-
"author": "TON DEV SOLUTIONS LTD.",
35+
"author": "EverX Labs Ltd",
3636
"license": "Apache-2.0",
3737
"licenses": [
3838
{
@@ -91,4 +91,4 @@
9191
"npm run format"
9292
]
9393
}
94-
}
94+
}

src/controllers/tonos-cli/components.ts renamed to src/controllers/ever-cli/components.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { Component } from "../../core"
22

3-
const TOOL_FOLDER_NAME = "tonos-cli"
3+
const TOOL_FOLDER_NAME = "ever-cli"
44

55
export const components = {
66
tonoscli: new (class extends Component {
77
getSourceName(version: string): string {
8-
return `tonos-cli-${version.split(".").join("_")}-{p}.zip`
8+
return `ever-cli-${version.split(".").join("_")}-{p}.zip`
99
}
10-
})(TOOL_FOLDER_NAME, "tonos-cli", {
10+
})(TOOL_FOLDER_NAME, "ever-cli", {
1111
resolveVersionRegExp: /tonos_cli\s+([0-9.]+)/,
1212
isExecutable: true,
1313
runGlobally: true,

src/controllers/tonos-cli/index.ts renamed to src/controllers/ever-cli/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { components } from "./components"
33

44
export const tonosInstallCommand: Command = {
55
name: "install",
6-
title: "Install latest stable TON OS CLI",
6+
title: "Install latest stable EVER OS CLI",
77
args: [],
88
async run(terminal: Terminal) {
99
await Component.ensureInstalledAll(terminal, components)
@@ -44,9 +44,9 @@ export const tonosVersionCommand: Command = {
4444
},
4545
}
4646

47-
export const TONOS: ToolController = {
48-
name: "tonos-cli",
49-
title: "TON OS CLI",
47+
export const EVEROS: ToolController = {
48+
name: "ever-cli",
49+
title: "EVER OS CLI",
5050
commands: [
5151
tonosInstallCommand,
5252
tonosSetCommand,

src/controllers/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Sold } from "./sold"
44
// import {TestSuite} from "./ts";
55
import { JsApps } from "./js"
66
import { SE } from "./se"
7-
import { TONOS } from "./tonos-cli"
7+
import { EVEROS } from "./ever-cli"
88
import { TestSuite4 } from "./ts4"
99
import { DeBrowser } from "./debrowser"
1010
import { Command, matchName, Terminal, ToolController } from "../core"
@@ -22,7 +22,7 @@ export const controllers = [
2222
SignerTool,
2323
Contract,
2424
JsApps,
25-
TONOS,
25+
EVEROS,
2626
TestSuite4,
2727
DeBrowser,
2828
]

src/controllers/js/installer.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { Terminal, everdevHome } from "../../core"
44
import { downloadFromGithub, httpsGetJson } from "../../core/utils"
55

66
const demoBranch = "master"
7-
const demoInfoURL = `https://raw.githubusercontent.com/tonlabs/sdk-samples/${demoBranch}/demo.json`
8-
const demoArchiveURL = `https://github.com/tonlabs/sdk-samples/archive/${demoBranch}.zip`
7+
const demoInfoURL = `https://raw.githubusercontent.com/everx-labs/sdk-samples/${demoBranch}/demo.json`
8+
const demoArchiveURL = `https://github.com/everx-labs/sdk-samples/archive/${demoBranch}.zip`
99
const demoFolder = `sdk-samples-${demoBranch}`
1010

1111
function jsHome() {

src/controllers/network/giver.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export class NetworkGiver implements AccountGiver {
121121
return new NetworkGiver(contract, client, address, signer, info, send)
122122
}
123123

124-
async sendTo(address: string, value: number): Promise<void> {
124+
async sendTo(address: string, value: number): Promise<any> {
125125
const valueToSend = this.value ?? value
126126
try {
127127
await this.send(this.account, address, valueToSend)

src/controllers/se/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212

1313
export const SE: ToolController = {
1414
name: "se",
15-
title: "TON OS SE",
15+
title: "EVER OS SE",
1616
commands: [
1717
seInfoCommand,
1818
seVersionCommand,

0 commit comments

Comments
 (0)