Skip to content

Commit 41fb78f

Browse files
committed
chore: updates near-sandbox to nearcore 2.4.0
1 parent 0c22935 commit 41fb78f

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

crate/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ pub mod sync;
1010

1111
// The current version of the sandbox node we want to point to.
1212
// Should be updated to the latest release of nearcore.
13-
// Currently pointing to nearcore@v2.3.1 released on November 13, 2024
14-
pub const DEFAULT_NEAR_SANDBOX_VERSION: &str = "2.3.1";
13+
// Currently pointing to nearcore@v2.4.0 released on December 11, 2024
14+
pub const DEFAULT_NEAR_SANDBOX_VERSION: &str = "2.4.0";
1515

1616
const fn platform() -> Option<&'static str> {
1717
#[cfg(all(target_os = "linux", target_arch = "x86_64"))]

npm/.changeset/grumpy-jars-buy.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"near-sandbox": patch
3+
---
4+
5+
Updated near-sandbox version to 2.4.0 version

npm/src/getBinary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function getPlatform() {
1818

1919
export function AWSUrl(): string {
2020
const [platform, arch] = getPlatform();
21-
return `https://s3-us-west-1.amazonaws.com/build.nearprotocol.com/nearcore/${platform}-${arch}/2.3.1/near-sandbox.tar.gz`;
21+
return `https://s3-us-west-1.amazonaws.com/build.nearprotocol.com/nearcore/${platform}-${arch}/2.4.0/near-sandbox.tar.gz`;
2222
}
2323

2424
export function getBinary(name: string = "near-sandbox"): Promise<Binary> {

0 commit comments

Comments
 (0)