Skip to content

Commit aa76909

Browse files
committed
chore: Updated near-sandbox to 2.1.1
1 parent 503fab0 commit aa76909

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

crate/src/lib.rs

+2-2
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.0.0 released on August 5, 2024
14-
pub const DEFAULT_NEAR_SANDBOX_VERSION: &str = "2.0.0";
13+
// Currently pointing to nearcore@v2.1.1 released on August 20, 2024
14+
pub const DEFAULT_NEAR_SANDBOX_VERSION: &str = "2.1.1";
1515

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

npm/.changeset/neat-bears-carry.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"near-sandbox": patch
3+
---
4+
5+
Updated near-sandbox to 2.1.1

npm/src/getBinary.ts

+1-1
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.0.0/near-sandbox.tar.gz`;
21+
return `https://s3-us-west-1.amazonaws.com/build.nearprotocol.com/nearcore/${platform}-${arch}/2.1.1/near-sandbox.tar.gz`;
2222
}
2323

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

0 commit comments

Comments
 (0)