From dcded5d30e37545ae16cd9854e265cab73c0e021 Mon Sep 17 00:00:00 2001 From: vikinatora Date: Tue, 19 Mar 2024 15:34:01 +0200 Subject: [PATCH 1/3] chore: update nearcore version to post 1.37 --- npm/src/getBinary.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/src/getBinary.ts b/npm/src/getBinary.ts index 418b787..ae6e67e 100644 --- a/npm/src/getBinary.ts +++ b/npm/src/getBinary.ts @@ -17,7 +17,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}/1.35.0/1e781bcccfaeb9a4bb9531155193a459257afd8d/near-sandbox.tar.gz`; + return `https://s3-us-west-1.amazonaws.com/build.nearprotocol.com/nearcore/${platform}-${arch}/1.37.3/b341e778154917aa7ab19f79c8d59a794ead320a/near-sandbox.tar.gz`; } export function getBinary(name: string = "near-sandbox"): Promise { From cdd159ead75e33f8713f56d6f0094caf9ccf8844 Mon Sep 17 00:00:00 2001 From: vikinatora Date: Tue, 19 Mar 2024 15:47:11 +0200 Subject: [PATCH 2/3] chore: update nearcore version to v1.38 --- npm/src/getBinary.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/src/getBinary.ts b/npm/src/getBinary.ts index ae6e67e..b026fb8 100644 --- a/npm/src/getBinary.ts +++ b/npm/src/getBinary.ts @@ -17,7 +17,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}/1.37.3/b341e778154917aa7ab19f79c8d59a794ead320a/near-sandbox.tar.gz`; + return `https://s3-us-west-1.amazonaws.com/build.nearprotocol.com/nearcore/${platform}-${arch}/1.38.0/aac5e42fe8975e27faca53e31f53f9c67a5b4e35/near-sandbox.tar.gz`; } export function getBinary(name: string = "near-sandbox"): Promise { From db5f19cef92d2e676016ae1edce323a1aff2237a Mon Sep 17 00:00:00 2001 From: vikinatora Date: Tue, 19 Mar 2024 16:51:43 +0200 Subject: [PATCH 3/3] chore: update nearcore version to v1.38 --- crate/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crate/src/lib.rs b/crate/src/lib.rs index e627c04..3d79ba8 100644 --- a/crate/src/lib.rs +++ b/crate/src/lib.rs @@ -11,8 +11,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@v1.35.0 released on Jul 25, 2023 -pub const DEFAULT_NEAR_SANDBOX_VERSION: &str = "1.35.0/1e781bcccfaeb9a4bb9531155193a459257afd8d"; +// Currently pointing to nearcore@v1.38.0 released on March 18, 2024 +pub const DEFAULT_NEAR_SANDBOX_VERSION: &str = "1.38.0/aac5e42fe8975e27faca53e31f53f9c67a5b4e35"; const fn platform() -> Option<&'static str> { #[cfg(all(target_os = "linux", target_arch = "x86_64"))]