From 8de7f983f01a5ec42f951c37322ffe35984368de Mon Sep 17 00:00:00 2001 From: akorchyn Date: Thu, 14 Nov 2024 15:22:17 +0200 Subject: [PATCH] chore: Updated near-sandbox version to 2.3.1 version --- crate/src/lib.rs | 4 ++-- npm/.changeset/dirty-poets-whisper.md | 5 +++++ npm/src/getBinary.ts | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 npm/.changeset/dirty-poets-whisper.md diff --git a/crate/src/lib.rs b/crate/src/lib.rs index e876be9..15d6a79 100644 --- a/crate/src/lib.rs +++ b/crate/src/lib.rs @@ -10,8 +10,8 @@ pub mod sync; // The current version of the sandbox node we want to point to. // Should be updated to the latest release of nearcore. -// Currently pointing to nearcore@v2.1.1 released on August 20, 2024 -pub const DEFAULT_NEAR_SANDBOX_VERSION: &str = "2.1.1"; +// Currently pointing to nearcore@v2.3.1 released on November 13, 2024 +pub const DEFAULT_NEAR_SANDBOX_VERSION: &str = "2.3.1"; const fn platform() -> Option<&'static str> { #[cfg(all(target_os = "linux", target_arch = "x86_64"))] diff --git a/npm/.changeset/dirty-poets-whisper.md b/npm/.changeset/dirty-poets-whisper.md new file mode 100644 index 0000000..bcdfd02 --- /dev/null +++ b/npm/.changeset/dirty-poets-whisper.md @@ -0,0 +1,5 @@ +--- +"near-sandbox": patch +--- + +Updated near-sandbox version to 2.3.1 version diff --git a/npm/src/getBinary.ts b/npm/src/getBinary.ts index 075c637..ddc7f8a 100644 --- a/npm/src/getBinary.ts +++ b/npm/src/getBinary.ts @@ -18,7 +18,7 @@ function getPlatform() { export function AWSUrl(): string { const [platform, arch] = getPlatform(); - return `https://s3-us-west-1.amazonaws.com/build.nearprotocol.com/nearcore/${platform}-${arch}/2.0.0/near-sandbox.tar.gz`; + return `https://s3-us-west-1.amazonaws.com/build.nearprotocol.com/nearcore/${platform}-${arch}/2.3.1/near-sandbox.tar.gz`; } export function getBinary(name: string = "near-sandbox"): Promise {