Skip to content

Commit

Permalink
rename: tvm
Browse files Browse the repository at this point in the history
  • Loading branch information
awnion committed Jan 5, 2024
1 parent 56383b7 commit 2e4875d
Show file tree
Hide file tree
Showing 12 changed files with 905 additions and 618 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
3 changes: 2 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[submodule "common"]
path = common
url = https://github.com/tonlabs/common
url = https://github.com/tvmlabs/common
branch = main
12 changes: 5 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
build = 'common/build/build.rs'
edition = '2021'
name = 'ton_executor'
name = 'tvm_executor'
version = '1.16.99'

[dependencies]
failure = '0.1.6'
lazy_static = '1.4'
log = '0.4'
ton_block = { git = 'https://github.com/tonlabs/ever-block.git', tag = '1.9.119' }
ton_types = { git = 'https://github.com/tonlabs/ever-types.git', tag = '2.0.31' }
ton_vm = { git = 'https://github.com/tonlabs/ever-vm.git', tag = '1.8.227' }
tvm_block = { git = 'https://github.com/tvmlabs/tvm-block.git', branch = "main" }
tvm_types = { git = 'https://github.com/tvmlabs/tvm-types.git', branch = "main" }
tvm_vm = { git = 'https://github.com/tvmlabs/tvm-vm.git', branch = "main" }

[features]
signature_with_id = [ 'ton_block/signature_with_id', 'ton_vm/signature_with_id' ]
signature_with_id = [ 'tvm_block/signature_with_id', 'tvm_vm/signature_with_id' ]

[[bench]]
harness = false
Expand All @@ -23,5 +23,3 @@ name = 'benchmarks'
bench = false

[profile]


35 changes: 17 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
<p align="center">
<a href="https://github.com/venom-blockchain/developer-program">
<img src="https://raw.githubusercontent.com/venom-blockchain/developer-program/main/vf-dev-program.png" alt="Logo" width="366.8" height="146.4">
</a>
</p>
# tvm-executor

# ever-executor

Transaction executor for Everscale/Venom nodes
Transaction executor for TVM nodes

## Table of Contents

- [About](#about)
- [Getting Started](#getting-started)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
- [tvm-executor](#tvm-executor)
- [Table of Contents](#table-of-contents)
- [About](#about)
- [Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Installing](#installing)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
- [Tags](#tags)

## About

Implementation of transaction executor for Everscale/Venom nodes in safe Rust.
Implementation of transaction executor for TVM nodes in safe Rust.

## Getting Started

Expand All @@ -29,14 +28,14 @@ Rust complier v1.65+.
### Installing

```
git clone --recurse-submodules https://github.com/tonlabs/ever-executor.git
cd ever-executor
git clone --recurse-submodules https://github.com/tvmlabs/tvm-executor.git
cd tvm-executor
cargo build --release
```

## Usage

This project output is the library which is used as a part of Everscale/Venom node. Also it can be used in standalone tools.
This project output is the library which is used as a part of TVM node. Also it can be used in standalone tools.

## Contributing

Expand All @@ -48,4 +47,4 @@ See the [LICENSE](LICENSE) file for details.

## Tags

`blockchain` `everscale` `rust` `venom-blockchain` `venom-developer-program` `venom-tvm`
`blockchain` `rust` `tvm`
Loading

0 comments on commit 2e4875d

Please sign in to comment.