Skip to content

Commit 5ff7cd1

Browse files
committed
Make livenet TTL configurable.
1 parent 8408481 commit 5ff7cd1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+80
-65
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
Changelog for `odra`.
44

5+
## [2.3.0] - 2025-08-11
6+
### Added
7+
- `ODRA_CASPER_LIVENET_TTL` environment variable to set the TTL for the Casper livenet.
8+
9+
### Changed
10+
- Transaction TTL changed from 1m to 5m.
11+
512
## [2.3.0] - 2025-08-11
613
### Added
714
- Support for deploying upgradable contracts and possibility to upgrade them.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ exclude = [
2828
resolver = "2"
2929

3030
[workspace.package]
31-
version = "2.3.0"
31+
version = "2.3.1"
3232
authors = [
3333
"Jakub Płaskonka <kuba@odra.dev>",
3434
"Krzysztof Pobiarżyn <krzysztof@odra.dev>",
@@ -39,13 +39,13 @@ homepage = "https://odra.dev/docs"
3939
repository = "https://github.com/odradev/odra"
4040

4141
[workspace.dependencies]
42-
odra-core = { path = "core", version = "2.3.0" }
43-
odra-macros = { path = "odra-macros", version = "2.3.0" }
44-
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "2.3.0" }
45-
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "2.3.0" }
46-
odra-vm = { path = "odra-vm", version = "2.3.0" }
47-
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "2.3.0" }
48-
odra-schema = { path = "odra-schema", version = "2.3.0" }
42+
odra-core = { path = "core", version = "2.3.1" }
43+
odra-macros = { path = "odra-macros", version = "2.3.1" }
44+
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "2.3.1" }
45+
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "2.3.1" }
46+
odra-vm = { path = "odra-vm", version = "2.3.1" }
47+
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "2.3.1" }
48+
odra-schema = { path = "odra-schema", version = "2.3.1" }
4949
casper-contract = { version = "5.1.0", default-features = false }
5050
casper-contract-schema = { version = "0.5.0" }
5151
casper-types = "6.0.0"

benchmark/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "benchmark"
3-
version = "2.3.0"
3+
version = "2.3.1"
44
edition = "2021"
55

66
[dependencies]

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "odra-examples"
3-
version = "2.3.0"
3+
version = "2.3.1"
44
edition = "2021"
55

66
[dependencies]

examples/resources/casper_contract_schemas/balance_checker_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": null,
66
"homepage": null,
77
"contract_name": "BalanceChecker",
8-
"contract_version": "2.3.0",
8+
"contract_version": "2.3.1",
99
"types": [],
1010
"errors": [],
1111
"entry_points": [

examples/resources/casper_contract_schemas/counterv1_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": null,
66
"homepage": null,
77
"contract_name": "CounterV1",
8-
"contract_version": "2.3.0",
8+
"contract_version": "2.3.1",
99
"types": [
1010
{
1111
"struct": {

examples/resources/casper_contract_schemas/counterv2_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": null,
66
"homepage": null,
77
"contract_name": "CounterV2",
8-
"contract_version": "2.3.0",
8+
"contract_version": "2.3.1",
99
"types": [
1010
{
1111
"struct": {

examples/resources/casper_contract_schemas/cross_contract_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": null,
66
"homepage": null,
77
"contract_name": "CrossContract",
8-
"contract_version": "2.3.0",
8+
"contract_version": "2.3.1",
99
"types": [],
1010
"errors": [],
1111
"entry_points": [

examples/resources/casper_contract_schemas/dog_contract2_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": null,
66
"homepage": null,
77
"contract_name": "DogContract2",
8-
"contract_version": "2.3.0",
8+
"contract_version": "2.3.1",
99
"types": [],
1010
"errors": [],
1111
"entry_points": [

examples/resources/casper_contract_schemas/dog_contract3_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": null,
66
"homepage": null,
77
"contract_name": "DogContract3",
8-
"contract_version": "2.3.0",
8+
"contract_version": "2.3.1",
99
"types": [],
1010
"errors": [],
1111
"entry_points": [

0 commit comments

Comments
 (0)