Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to release 1.0.0-1 #26

Merged
merged 2 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/.k8s/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,16 @@ spec:
spec:
containers:
- name: enstate
image: ghcr.io/v3xlabs/enstate:0.0.8-8
image: ghcr.io/v3xlabs/enstate:1.0.0-1
imagePullPolicy: Always
ports:
- containerPort: 3000
env:
- name: OPENSEA_API_KEY
valueFrom:
secretKeyRef:
name: opensea-api-key
key: api-key
- name: REDIS_URL
value: redis://redis.enstate.svc.cluster.local:6379
- name: RPC_URL
Expand Down
9 changes: 5 additions & 4 deletions server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "enstate"
version = "0.0.9"
version = "1.0.0-1"
edition = "2021"
license = "GPL-3.0"
homepage = "enstate.rs"
description = "enstate"
repository = "https://github.com/v3xlabs/enstate"
authors = [
"Luc van Kampen <[email protected]>",
"Antonio Fran Štignjedec <[email protected]>",
"Miguel Piedrafita <[email protected]>",
]

Expand Down
4 changes: 2 additions & 2 deletions shared/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "enstate_shared"
version = "0.0.2"
version = "0.0.3"
edition = "2021"

# https://github.com/rustwasm/wasm-pack/issues/1247
Expand Down Expand Up @@ -33,7 +33,7 @@ serde_json = "1.0.96"
crc32fast = "1.3.2"
hex = "0.4.3"
reqwest = "0.11.22"
ethers-ccip-read = { git = "https://github.com/v3xlabs/rust-ethers-ccip-read", branch = "rework" }
ethers-ccip-read = { git = "https://github.com/ensdomains/ethers-ccip-read" }

# needed to enable the "js" feature for compatibility with wasm,
# see https://docs.rs/getrandom/#webassembly-support
Expand Down
4 changes: 2 additions & 2 deletions worker/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "enstate-worker"
version = "0.0.9"
version = "1.0.0-1"
edition = "2021"

# https://github.com/rustwasm/wasm-pack/issues/1247
Expand Down