-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
infra: setup tzwitter pipelines and compiled kernel
- Loading branch information
Showing
149 changed files
with
563 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Common - docker baseimage to build kernels | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ./infra_tooling/docker/baseimage_build_kernels/ | ||
platforms: linux/amd64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
push: ${{ github.ref == 'refs/heads/main' }} | ||
tags: | | ||
ghcr.io/marigold-dev/baseimage-build-kernels:latest | ||
ghcr.io/marigold-dev/baseimage-build-kernels:${{ github.sha }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Dungeon - frontend docker | ||
|
||
on: | ||
push: | ||
branches: | ||
- "dungeon-game" | ||
paths: | ||
- "10_dungeon/app/**" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Replace sequencer endpoint | ||
id: sed | ||
run: | | ||
set -x | ||
sed -i 's|http://127.0.0.1:8080|https://dungeon-sequencer-test1.gcp.marigold.dev|g' 10_dungeon/app/src/App.js | ||
cat 10_dungeon/app/src/App.js | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ./10_dungeon/app/ | ||
platforms: linux/amd64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
push: ${{ github.ref == 'refs/heads/dungeon-game' }} | ||
tags: | | ||
ghcr.io/marigold-dev/dungeon-frontend:latest | ||
ghcr.io/marigold-dev/dungeon-frontend:${{ github.sha }} |
83 changes: 83 additions & 0 deletions
83
.github/workflows/dungeon-initcontainer-import-kernel-docker.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: Dungeon - docker initcontainer-import-kernel | ||
|
||
on: | ||
push: | ||
branches: | ||
- "dungeon-game" | ||
paths: | ||
- "./infra_tooling/build_artifacts/10_dungeon/.latest" | ||
workflow_dispatch: | ||
inputs: | ||
rollup_data_dir_name: | ||
description: 'Name of the dungeon compiled kernel directory to deploy on K8S (eg, dungeon-6e60112)' | ||
required: true | ||
|
||
env: | ||
ARTEFACTS_PROJECT_PATH: ./infra_tooling/build_artifacts/10_dungeon | ||
IMG_SUFFIX: dungeon | ||
PROJECT_NAME: 10_dungeon | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set image tag vars | ||
id: tag_vars | ||
run: | | ||
echo "date=$(date +%Y-%m-%dT%H-%M-%S)" >> "${GITHUB_OUTPUT}" | ||
echo "sha_short=$(git rev-parse --short HEAD)" >> "${GITHUB_OUTPUT}" | ||
- name: Set rollup_data_dir_name | ||
id: vars_pt1 | ||
run: | | ||
if [[ -z "${{ github.event.inputs.rollup_data_dir_name }}" ]]; then | ||
echo "rollup_data_dir_name=$(cat ${{ env.ARTEFACTS_PROJECT_PATH }}/.latest)" >> "${GITHUB_OUTPUT}" | ||
else | ||
echo "rollup_data_dir_name=${{ github.event.inputs.rollup_data_dir_name }}" >> "${GITHUB_OUTPUT}" | ||
fi | ||
- name: Set rollup_data_dir_fullpath | ||
id: vars_pt2 | ||
run: | | ||
echo "rollup_data_dir_fullpath=${{ env.ARTEFACTS_PROJECT_PATH }}/${{ steps.vars_pt1.outputs.rollup_data_dir_name }}" >> "${GITHUB_OUTPUT}" | ||
- name: Check rollup_data_dir_fullpath | ||
id: check_rollup_data_dir_fullpath | ||
run: | | ||
echo "rollup_data_dir_fullpath=${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }}" | ||
if [ ! -d "${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }}" ]; then | ||
echo "Directory ${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }} does not exist. Exiting..." | ||
exit 1 | ||
fi | ||
- name: Copy Dockerfile and scripts | ||
id: copy | ||
run: | | ||
cp -r ./infra_tooling/docker/initcontainer_import_kernel/* ${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }} | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }} | ||
platforms: linux/amd64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
push: ${{ github.ref == 'refs/heads/dungeon-game' }} | ||
tags: | | ||
ghcr.io/marigold-dev/dungeon-initcontainer-import:${{ steps.vars_pt1.outputs.rollup_data_dir_name }} | ||
ghcr.io/marigold-dev/dungeon-initcontainer-import:latest | ||
ghcr.io/marigold-dev/dungeon-initcontainer-import:${{ steps.tag_vars.outputs.date }}-${{ steps.tag_vars.outputs.sha_short }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Dungeon - sequencer docker | ||
|
||
on: | ||
push: | ||
branches: | ||
- "dungeon-game" | ||
paths: | ||
- "10_dungeon/sequencer/**" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set image tag vars | ||
id: tag_vars | ||
run: | | ||
echo "date=$(date +%Y-%m-%dT%H-%M-%S)" >> "${GITHUB_OUTPUT}" | ||
echo "sha_short=$(git rev-parse --short HEAD)" >> "${GITHUB_OUTPUT}" | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Copy Dockerfile and scripts | ||
id: copy | ||
run: | | ||
cp -r ./infra_tooling/docker/dungeon-sequencer-build/* 10_dungeon | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v3 | ||
with: | ||
file: ./10_dungeon/Dockerfile.sequencer | ||
context: ./10_dungeon/ | ||
platforms: linux/amd64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
push: ${{ github.ref == 'refs/heads/dungeon-game' }} | ||
tags: | | ||
ghcr.io/marigold-dev/dungeon-sequencer:latest | ||
ghcr.io/marigold-dev/dungeon-sequencer:${{ github.sha }} | ||
ghcr.io/marigold-dev/dungeon-sequencer:${{ steps.tag_vars.outputs.date }}-${{ steps.tag_vars.outputs.sha_short }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Tzwitter - frontend docker | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths: | ||
- "09_tzwitter_app/app/**" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Sed on config.ts # (yep thats bad) | ||
run: | | ||
set -x | ||
sed -i '/TEZOS_RPC/d' 09_tzwitter_app/app/src/config.ts | ||
sed -i '/ROLLUP_RPC/d' 09_tzwitter_app/app/src/config.ts | ||
echo "export const TEZOS_RPC = 'https://ghostnet.tezos.marigold.dev';" >> 09_tzwitter_app/app/src/config.ts | ||
echo "export const ROLLUP_RPC = 'https://tzwitter-rollup-test1.gcp.marigold.dev';" >> 09_tzwitter_app/app/src/config.ts | ||
cat 09_tzwitter_app/app/src/config.ts | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ./09_tzwitter_app/app/ | ||
platforms: linux/amd64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
push: ${{ github.ref == 'refs/heads/main' }} | ||
tags: | | ||
ghcr.io/marigold-dev/tzwitter-frontend:latest | ||
ghcr.io/marigold-dev/tzwitter-frontend:${{ github.sha }} | ||
build-args: | | ||
TEZOS_RPC=${{ env.TEZOS_RPC }} | ||
ROLLUP_RPC=${{ env.ROLLUP_RPC }} |
83 changes: 83 additions & 0 deletions
83
.github/workflows/tzwitter-initcontainer-import-kernel-docker.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: Tzwitter - docker initcontainer-import-kernel | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths: | ||
- "./infra_tooling/build_artifacts/09_tzwitter_app/.latest" | ||
workflow_dispatch: | ||
inputs: | ||
rollup_data_dir_name: | ||
description: 'Name of the tzwitter compiled kernel directory to deploy on K8S (eg, tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ)' | ||
required: true | ||
|
||
env: | ||
ARTEFACTS_PROJECT_PATH: ./infra_tooling/build_artifacts/09_tzwitter_app | ||
IMG_SUFFIX: tzwitter | ||
PROJECT_NAME: 09_tzwitter_app | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set image tag vars | ||
id: tag_vars | ||
run: | | ||
echo "date=$(date +%Y-%m-%dT%H-%M-%S)" >> "${GITHUB_OUTPUT}" | ||
echo "sha_short=$(git rev-parse --short HEAD)" >> "${GITHUB_OUTPUT}" | ||
- name: Set rollup_data_dir_name | ||
id: vars_pt1 | ||
run: | | ||
if [[ -z "${{ github.event.inputs.rollup_data_dir_name }}" ]]; then | ||
echo "rollup_data_dir_name=$(cat ${{ env.ARTEFACTS_PROJECT_PATH }}/.latest)" >> "${GITHUB_OUTPUT}" | ||
else | ||
echo "rollup_data_dir_name=${{ github.event.inputs.rollup_data_dir_name }}" >> "${GITHUB_OUTPUT}" | ||
fi | ||
- name: Set rollup_data_dir_fullpath | ||
id: vars_pt2 | ||
run: | | ||
echo "rollup_data_dir_fullpath=${{ env.ARTEFACTS_PROJECT_PATH }}/${{ steps.vars_pt1.outputs.rollup_data_dir_name }}" >> "${GITHUB_OUTPUT}" | ||
- name: Check rollup_data_dir_fullpath | ||
id: check_rollup_data_dir_fullpath | ||
run: | | ||
echo "rollup_data_dir_fullpath=${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }}" | ||
if [ ! -d "${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }}" ]; then | ||
echo "Directory ${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }} does not exist. Exiting..." | ||
exit 1 | ||
fi | ||
- name: Copy Dockerfile and scripts | ||
id: copy | ||
run: | | ||
cp -r ./infra_tooling/docker/initcontainer_import_kernel/* ${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }} | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ${{ steps.vars_pt2.outputs.rollup_data_dir_fullpath }} | ||
platforms: linux/amd64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
push: ${{ github.ref == 'refs/heads/main' }} | ||
tags: | | ||
ghcr.io/marigold-dev/tzwitter-initcontainer-import:${{ steps.vars_pt1.outputs.rollup_data_dir_name }} | ||
ghcr.io/marigold-dev/tzwitter-initcontainer-import:latest | ||
ghcr.io/marigold-dev/tzwitter-initcontainer-import:${{ steps.tag_vars.outputs.date }}-${{ steps.tag_vars.outputs.sha_short }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tzwitter-55f9aa9-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ |
1 change: 1 addition & 0 deletions
1
...09_tzwitter_app/tzwitter-55f9aa9-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/contractL1.metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
KT1LFWurbZWRwGMUEZugS8kWU3NaUbWzcQ38 |
1 change: 1 addition & 0 deletions
1
...9_tzwitter_app/tzwitter-55f9aa9-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/deployerKey.metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ |
1 change: 1 addition & 0 deletions
1
...9_tzwitter_app/tzwitter-55f9aa9-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/projectName.metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tzwitter |
1 change: 1 addition & 0 deletions
1
...9_tzwitter_app/tzwitter-55f9aa9-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/installer.hex
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+1.95 MB
.../09_tzwitter_app/tzwitter-55f9aa9-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/kernel.wasm
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/000af12eaa377020189bdf1d67a8e2a472d5803a05d5388c477b7d7421bec7ecda
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/000df7483ce4550025770b269818fb3126cd044ae9399732fff438723eb4efb1cd
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/000e05227b5fe044a1c7e8556d490c87a3866223b2ff23a6fb69658a1c32cfb49c
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00126b1c482b801a073af743187fb38a830a605067774b193691e3f8bf61789fdf
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/0012e2b307961702f944df6357beba2f4a9e915030954385878908581a05122e26
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/001651e9fff870a4f945efba8d0118cb696deed1f286852e12242778a1859c223c
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/0017e7014d45d3275a47030351fbc5fce568a1984c9693e50d4f23148dbeb30ccc
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/0017eb58a2bd0a26d40826d81658ee4b70aa3e57ba7afec0b4f218c71fa221349f
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/0020db48819fa6a185eabce18c2436db5840c736199d55520e64383efc7ffeab8c
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/002d9959cc52492b59ded599247e810234539869fa6874622fc490af8852ca6980
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/003271bfd79eb4a47f1e739c12bad5a88d1075ecb0621df959a4fe1fc696a98b01
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/004c143860d40e44ffc1a96bea0270b19fc25add238356edd245589e5cd077e90b
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/004e21fe37a7d6cb8baa11f1ce06d5b3313fd7fedbb2ffd748c2fd125b765f5e72
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/004e4a1069b668ddc572aa23d3ec781ecc54b706f5ec1874bfdc14a4dd0b93aac3
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/0052b86d12e1dbbc3aa3de5381a798dbae1e9dca16942cb5f0fc3f7cb89682c7fd
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00574e038676b043cca23db8d1a95af22bbb800dbdd0277e1aa59a7ea9aadbbb93
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/0058e37fb4f73fca7d7794791d9ef55bd5f96ff07d2a609438142697b573acd375
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/0059c65622acf45611ef0860d47fe62b1b4fdad5c8e16f36bd260c54d7835db75c
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/005c67d1d6d1bac3a1fe8d6975d5bbc7663d57be98fc3ccf015984ef036ef872b1
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00615d0a1cc0bbe1b51b72798e62a1af3a84317bce312e0f9eaa4cf68163545caf
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/006232ae572456d575c267a5024241e425b67c0651cc2ef3e6afef35f11cc722ed
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/006618f68a4fbc50071b514d263fc7d91a21c1001cd822a58c5e298673b9338205
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/006b6794f3acfafac9bc9b4b591abfbbc7a05bdcd5ba4cd1b276f1aad5bb81c15a
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/0071f13e671fa2dc3692736cc36944a6fa52dfd9bd41e26e4cf38203a4fd5a8f22
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/0072235f6a7345c13d67b0b946dfbbfee55b3e73a3c713987cc3b2803154b26585
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/007b9d26f8fa65dfa969c91ac375ebcb669d4da959e2dc7a4d3d878893a54a2962
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/009a2941fd3c6283ff5f2bc5f4f2be5bc7ed5b60d1b03e7fbba060697fae18c62c
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/009b7241c7011dc7195d2f4e69f84a8dc3b1d2ec063b47bc6870b6be9583f5e6df
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/009ccc44b9361d0e9e7f5e021cba4d0b0cc8054829e51ea6aa599bde3e5d9f470a
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/009ddc65b900575bd4319affce2de9dddabbc3dd6631a8e2dd3ac2e50828147cee
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/009e4968bbebc99485475e17f521e1a3cfd2d11c599bb0f3b3aa15aafa000cab4f
Binary file not shown.
Binary file added
BIN
+2.21 KB
...kFxZ/rollup/wasm_2_0_0/009ee6790c05dca85d6beb8998058229899bbd93fa6fcc2d0acead46ef8326216c
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00a66fc4604be204982421519b08bbfd2e9222b1ebcb11054da7c93cf670fad673
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00a8b86383791bc59f9fcc8d04a9f0e04cac62ce5d907193db4b015a0914258f58
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00b669254b05b134b9e9c0b3650bf37574ed0adf8e506d295633d94aa78aa1ee1e
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00c3f68e0145f8367924a9b64eab0993bd4a288656c535fcddc79ffb39735c8e9f
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00c40ba400fab330d67aabc098284983a5703b54e485be1337fb16b9afcf3719b8
Binary file not shown.
Binary file added
BIN
+1.39 KB
...kFxZ/rollup/wasm_2_0_0/00c70b73284327b8d8b07fc090ef371444b8f0b998c517c3232bf579953f53c242
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00ca59d40f4c5afd80b81b860b71ef5983873e13a526ca3bd7d350b5e6b7b49688
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00dcee24b1878606fc50147950c0491061efdde6da4bf95d4ad4eebf87118389f3
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00f4eeb9da719675b36279d7df66ac94b199e16a0dc8b5d42e566ddab3d043b6ac
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00f535c7cdc4a5d7574228f032f2ab89acd1162af7461521f25bba17d4920a417e
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00f9473748f5ba0a7ba6919d5a76b7a7f8febaed6e2c71dfb5b8dd57b641008939
Binary file not shown.
Binary file added
BIN
+4 KB
...kFxZ/rollup/wasm_2_0_0/00fc325dccc40e63eedf236ae8c3b469900ea64a82b30dc73622d933dc12021447
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...09_tzwitter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/contractL1.metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
KT1Wz65fGeCGcyDhb3vEzmDWhpaEokWzHUZ6 |
1 change: 1 addition & 0 deletions
1
...9_tzwitter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/deployerKey.metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ |
1 change: 1 addition & 0 deletions
1
...9_tzwitter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/projectName.metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tzwitter |
7 changes: 7 additions & 0 deletions
7
.../09_tzwitter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ "smart-rollup-address": "sr1CZJvoP5VRnwacrB6BF13HfQ4dJKFhPiq7", | ||
"smart-rollup-node-operator": | ||
{ "publish": "tz1XeW5BaTm8h4Nkp6RPWWcUEjxnVUkiKr2x", | ||
"add_messages": "tz1XeW5BaTm8h4Nkp6RPWWcUEjxnVUkiKr2x", | ||
"cement": "tz1XeW5BaTm8h4Nkp6RPWWcUEjxnVUkiKr2x", | ||
"refute": "tz1XeW5BaTm8h4Nkp6RPWWcUEjxnVUkiKr2x" }, | ||
"fee-parameters": {}, "mode": "operator" } |
1 change: 1 addition & 0 deletions
1
...itter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/context/index/lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
10388 |
Binary file added
BIN
+153 KB
...witter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/context/index/log
Binary file not shown.
Binary file added
BIN
+16.3 MB
...r_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/context/store.0.suffix
Binary file not shown.
Binary file added
BIN
+56 Bytes
...r_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/context/store.branches
Binary file not shown.
Binary file added
BIN
+36 Bytes
...er_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/context/store.control
Binary file not shown.
Binary file added
BIN
+37.7 KB
...itter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/context/store.dict
Binary file not shown.
Binary file added
BIN
+36 Bytes
..._app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/injector/last_seen_head
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...9_tzwitter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/installer.hex
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+169 KB
.../09_tzwitter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/kernel.wasm
Binary file not shown.
Empty file.
1 change: 1 addition & 0 deletions
1
...witter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/commitments/index/lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
10388 |
Binary file added
BIN
+7.1 KB
...zwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/commitments/index/log
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/commitments_published_at_level/index/lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
10388 |
Binary file added
BIN
+3.55 KB
...e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/commitments_published_at_level/index/log
Binary file not shown.
Binary file added
BIN
+1.43 MB
...ter_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/inboxes/data
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...tter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/inboxes/index/index/lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
10388 |
Binary file added
BIN
+158 KB
...itter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/inboxes/index/index/log
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...witter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/irmin_store/index/lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
10388 |
Binary file added
BIN
+32 Bytes
...zwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/irmin_store/index/log
Binary file not shown.
Empty file.
Binary file added
BIN
+16 Bytes
...er-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/irmin_store/store.branches
Binary file not shown.
Binary file added
BIN
+36 Bytes
...ter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/irmin_store/store.control
Binary file not shown.
Empty file.
Binary file added
BIN
+75 KB
...r_app/tzwitter-834c132-tz1e9eADqkLKnR9h77sAVtZwjRifSJbukFxZ/rollup/storage/l2_blocks/data
Binary file not shown.
Oops, something went wrong.