Skip to content

Commit

Permalink
chore: replace trilitech/jstz repository links with jstz-dev/jstz
Browse files Browse the repository at this point in the history
  • Loading branch information
johnyob committed Jul 5, 2024
1 parent 05c7594 commit d98bd30
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ members = [
edition = "2021"
version = "0.1.0-alpha.0"
authors = ["TriliTech <[email protected]>"]
repository = "https://github.com/trilitech/jstz"
homepage = "https://github.com/trilitech/jstz"
documentation = "https://trilitech.github.io/jstz/"
repository = "https://github.com/jstz-dev/jstz"
homepage = "https://github.com/jstz-dev/jstz"
documentation = "https://jstz-dev.github.io/jstz/"
readme = "README.md"
license-file = "LICENSE"
description = "JavaScript server runtime for Tezos Smart Rollups"
Expand Down
4 changes: 2 additions & 2 deletions crates/jstz_api/src/encoding/global.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl GlobalApi {
.get_or_undefined(0)
.as_string()
.ok_or_else(|| JsNativeError::typ().with_message("expected string"))?;
// TODO: https://github.com/trilitech/jstz/pull/197#discussion_r1413836707
// TODO: https://github.com/jstz-dev/jstz/pull/197#discussion_r1413836707
// let data: JsString = args.get_or_undefined(0).try_js_into(context);
let result = Global::atob(data)?;
Ok(result.into())
Expand All @@ -45,7 +45,7 @@ impl GlobalApi {
.get_or_undefined(0)
.as_string()
.ok_or_else(|| JsNativeError::typ().with_message("expected string"))?;
// TODO: https://github.com/trilitech/jstz/pull/197#discussion_r1413836707
// TODO: https://github.com/jstz-dev/jstz/pull/197#discussion_r1413836707
let result = Global::btoa(data)?;
Ok(result.into())
}
Expand Down
2 changes: 1 addition & 1 deletion crates/jstz_cli/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub fn print(err: &Error) {
"{} {}\n\nIf you think this is a bug then please create an issue at {}.",
ErrorPrefix,
err,
url("https://github.com/trilitech/jstz/issues/new/choose")
url("https://github.com/jstz-dev/jstz/issues/new/choose")
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default defineConfig({
],

socialLinks: [
{ icon: "github", link: "https://github.com/trilitech/jstz/" },
{ icon: "github", link: "https://github.com/jstz-dev/jstz/" },
],
},
});
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import VPButton from "vitepress/dist/client/theme-default/components/VPButton.vu
`jstz` (pronouced 'justice') is a JavaScript server runtime for Tezos smart optimistic rollups
with a great developer experience. It is built on [Boa](https://boajs.dev/) and [Rust](https://www.rust-lang.org/).

`jstz` is free and open source software under the [MIT license](https://github.com/trilitech/jstz/blob/main/LICENSE).
`jstz` is free and open source software under the [MIT license](https://github.com/jstz-dev/jstz/blob/main/LICENSE).

- 🚀 **Fast**: `jstz` is built on [Boa](https://boajs.dev/), a blazingly fast JavaScript engine written in **Rust**.
- 📚 **Easy to Learn**: `jstz` is built with the developer in mind.
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Ensure `docker` is installed on your system. If not, please follow [this guide](
To download and install `jstz`, run the following command in your terminal:

```sh
source <(curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/trilitech/jstz/main/scripts/install-jstz-cli.sh)
source <(curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/jstz-dev/jstz/main/scripts/install-jstz-cli.sh)
```

Congratulations! 🎉 `jstz` is now installed and configured on your system.
Expand All @@ -23,7 +23,7 @@ Below are instruction on how to build `jstz` from source. Additionally, this sec
### Cloning the Repository

```sh
git clone https://github.com/trilitech/jstz.git
git clone https://github.com/jstz-dev/jstz.git
```

### Prerequisites 📋
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ providing additional security and blockchain-specific functionality typical for
First we will clone the `jstz` repository and navigate to the `get-tez` example:

```sh
git clone https://github.com/trilitech/jstz.git && cd jstz/examples/get-tez
git clone https://github.com/jstz-dev/jstz.git && cd jstz/examples/get-tez
```

In this example, the smart function provides a way to send a tez to the requester if asked politely.
Expand Down Expand Up @@ -156,7 +156,7 @@ $ jstz sandbox start
.------------.
/______________\

0.1.0-alpha.0 https://github.com/trilitech/jstz
0.1.0-alpha.0 https://github.com/jstz-dev/jstz

octez-node is listening on: http://127.0.0.1:18731
octez-smart-rollup-node is listening on: http://127.0.0.1:8932
Expand Down

0 comments on commit d98bd30

Please sign in to comment.