Darkmatter · github-bot stage: prod
preview@internal.darkmatter
Events received
64284
Ignored
64249
Jobs dispatched
35

Event a83a0b60…

← All events

Event

Delivery
a83a0b60-6081-11f1-9a40-d4a90f547487
Event
pull_request
Action
ready_for_review
Received
2026-06-05T01:55:43.063Z
Signature
valid
Parsed
yes
Sender
czxtm
Repo
darkmatter/tenderly-snap
Status
ignored — unsupported_event

Headers

{
  "accept": "*/*",
  "accept-encoding": "gzip, br",
  "cf-connecting-ip": "140.82.115.30",
  "cf-ipcountry": "US",
  "cf-ray": "a06b8e81fac1f2e9",
  "cf-visitor": "{\"scheme\":\"https\"}",
  "connection": "Keep-Alive",
  "content-length": "29827",
  "content-type": "application/json",
  "host": "github-bot.darkmatter.io",
  "user-agent": "GitHub-Hookshot/eec6cea",
  "x-forwarded-proto": "https",
  "x-github-delivery": "a83a0b60-6081-11f1-9a40-d4a90f547487",
  "x-github-event": "pull_request",
  "x-github-hook-id": "628737947",
  "x-github-hook-installation-target-id": "3663660",
  "x-github-hook-installation-target-type": "integration",
  "x-real-ip": "140.82.115.30"
}

Payload

{
  "action": "ready_for_review",
  "number": 1,
  "pull_request": {
    "url": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls/1",
    "id": 3803945564,
    "node_id": "PR_kwDOSxJGos7iu5pc",
    "html_url": "https://github.com/darkmatter/tenderly-snap/pull/1",
    "diff_url": "https://github.com/darkmatter/tenderly-snap/pull/1.diff",
    "patch_url": "https://github.com/darkmatter/tenderly-snap/pull/1.patch",
    "issue_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/1",
    "number": 1,
    "state": "open",
    "locked": false,
    "title": "feat: containerize the site as a static image for GHCR",
    "user": {
      "login": "czxtm",
      "id": 1325802,
      "node_id": "MDQ6VXNlcjEzMjU4MDI=",
      "avatar_url": "https://avatars.githubusercontent.com/u/1325802?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/czxtm",
      "html_url": "https://github.com/czxtm",
      "followers_url": "https://api.github.com/users/czxtm/followers",
      "following_url": "https://api.github.com/users/czxtm/following{/other_user}",
      "gists_url": "https://api.github.com/users/czxtm/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/czxtm/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/czxtm/subscriptions",
      "organizations_url": "https://api.github.com/users/czxtm/orgs",
      "repos_url": "https://api.github.com/users/czxtm/repos",
      "events_url": "https://api.github.com/users/czxtm/events{/privacy}",
      "received_events_url": "https://api.github.com/users/czxtm/received_events",
      "type": "User",
      "user_view_type": "public",
      "site_admin": false
    },
    "body": "## What\n\nRepurposes this fork of `Tenderly/tenderly-metamask-snap-simulate-asset-changes`\nas the **image source** for the hosted dApp at **https://tenderly-snap.drkmttr.dev**\n(the k8s deploy lives in [darkmatter/gitops#19](https://github.com/darkmatter/gitops/pull/19)).\nBuilds only the `site` workspace into a small static nginx image and publishes it\nto `ghcr.io/darkmatter/tenderly-snap`.\n\n## Changes\n\n- **`Dockerfile`** — multi-stage: `node:16-bullseye` + Yarn 3.6 (corepack) builds\n  `@tenderly/simulate-asset-changes-ui` → `nginxinc/nginx-unprivileged:1.27-alpine`\n  serving the static output on `:8000` with an SPA `try_files` fallback. Bakes\n  `SNAP_ORIGIN` at build (ARG, default `npm:@tenderly/metamask-snap`).\n- **`packages/site/gatsby-node.ts`** (new) — injects `process.env.SNAP_ORIGIN`\n  into the browser bundle via webpack `DefinePlugin`. Upstream has no\n  `gatsby-node`, so the var read in `src/config/snap.ts` was never inlined and the\n  site silently fell back to `local:http://localhost:8080`.\n- **`deploy/nginx.conf`** — `:8000`, immutable asset caching, SPA fallback;\n  overwrites nginx-unprivileged's default `:8080` server. Matches the\n  readonly-rootfs / uid-101 contract in the gitops Deployment.\n- **`.github/workflows/docker-publish.yml`** — build on PRs; build + push\n  `:latest` and `:sha-<sha>` to GHCR on `main` via the built-in `GITHUB_TOKEN`\n  (`packages: write`). No secrets committed.\n- **Removed** upstream snap-release workflows (`build-test`, `create-release-pr`,\n  `publish-release`) — not applicable to an image-source fork.\n\n## Why `npm:@tenderly/metamask-snap`\n\nThe monorepo's internal snap workspace `@tenderly/simulate-asset-changes-snap` is\n**not published** to npm. The published snap is **`@tenderly/metamask-snap@1.2.3`**\n(its description matches this product exactly). MetaMask installs snaps by npm\norigin, so that's what the site is built against.\n\n## Verified locally\n\n- `docker build` succeeds (Yarn 3.6 immutable install + `gatsby build` on Node 16).\n- Container serves **HTTP 200 on `:8000`** running as **uid 101** (non-root).\n- Bundle resolves the snap origin to the npm value:\n  `u = null!==(r=\"npm:@tenderly/metamask-snap\") ? r : \"local:...\"` — the localhost\n  string is the dead fallback branch.\n- Image ≈ 79 MB.\n\n## Runtime-compat caveat (needs MetaMask Flask verification)\n\nThis 2024 site calls the snap RPC methods `update_tenderly_credentials` and\n`send_tenderly_transaction` (`packages/site/src/utils/constants.ts`). The\n**install/connect** flow should work against snap `1.2.3`, but the **simulate**\nflow depends on `1.2.3` still honoring those method names *and* on the user\nsupplying their Tenderly API credentials. Verify in Flask after deploy.\n\n## Operational notes / follow-ups\n\n- **GitHub Actions are disabled by default on forks** — must be enabled on\n  `darkmatter/tenderly-snap` for CI to run and for the merge-to-main publish.\n- Once `:sha-<sha>` tags are published, pin the gitops Deployment to an immutable\n  tag/digest and drop `:latest`.\n\nDraft until the gitops side (image pull secret + deploy) is wired and the host is\nverified end-to-end.\n\n<!-- codesmith:footer -->\n---\n<a href=\"https://app.blacksmith.sh/darkmatter/codesmith/tenderly-snap/pr/1\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-dark-v2.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-light-v2.svg\"><img alt=\"View with Codesmith\" src=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-dark-v2.svg\"></picture></a> <a href=\"https://backend.blacksmith.sh/track/enable-autofix?expires=1783177613&installation_id=137091173&pr_number=1&repository=darkmatter%2Ftenderly-snap&return_to=https%3A%2F%2Fgithub.com%2Fdarkmatter%2Ftenderly-snap%2Fpull%2F1&signature=24b782ca7323347c302b788b564916a87855a29eba9e57ae1993b78425d87687\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-dark.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-light.svg\"><img alt=\"Autofix with Codesmith\" src=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-dark.svg\"></picture></a>\n<sup>Need help on this PR? Tag <code>/codesmith</code> with what you need. Autofix is disabled.</sup>\n\n<!-- codesmith:autofix:disabled -->\n<!-- /codesmith:footer -->",
    "created_at": "2026-06-04T15:06:49Z",
    "updated_at": "2026-06-05T01:55:41Z",
    "closed_at": null,
    "merged_at": null,
    "merge_commit_sha": "d66ab7b59221af6b822c22ce6a20b7b5a78fb588",
    "assignees": [],
    "requested_reviewers": [],
    "requested_teams": [],
    "labels": [],
    "milestone": null,
    "draft": false,
    "commits_url": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls/1/commits",
    "review_comments_url": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls/1/comments",
    "review_comment_url": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls/comments{/number}",
    "comments_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/1/comments",
    "statuses_url": "https://api.github.com/repos/darkmatter/tenderly-snap/statuses/5c053615e4697caa0723ae6f35bb350febf7adef",
    "head": {
      "label": "darkmatter:feat/containerize",
      "ref": "feat/containerize",
      "sha": "5c053615e4697caa0723ae6f35bb350febf7adef",
      "user": {
        "login": "darkmatter",
        "id": 17834193,
        "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
        "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/darkmatter",
        "html_url": "https://github.com/darkmatter",
        "followers_url": "https://api.github.com/users/darkmatter/followers",
        "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
        "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
        "organizations_url": "https://api.github.com/users/darkmatter/orgs",
        "repos_url": "https://api.github.com/users/darkmatter/repos",
        "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
        "received_events_url": "https://api.github.com/users/darkmatter/received_events",
        "type": "Organization",
        "user_view_type": "public",
        "site_admin": false
      },
      "repo": {
        "id": 1259488930,
        "node_id": "R_kgDOSxJGog",
        "name": "tenderly-snap",
        "full_name": "darkmatter/tenderly-snap",
        "private": false,
        "owner": {
          "login": "darkmatter",
          "id": 17834193,
          "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
          "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/darkmatter",
          "html_url": "https://github.com/darkmatter",
          "followers_url": "https://api.github.com/users/darkmatter/followers",
          "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
          "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
          "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
          "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
          "organizations_url": "https://api.github.com/users/darkmatter/orgs",
          "repos_url": "https://api.github.com/users/darkmatter/repos",
          "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
          "received_events_url": "https://api.github.com/users/darkmatter/received_events",
          "type": "Organization",
          "user_view_type": "public",
          "site_admin": false
        },
        "html_url": "https://github.com/darkmatter/tenderly-snap",
        "description": "Tenderly MetaMask Snap using the Tenderly Simulation API to showcase transaction asset changes. 🦊",
        "fork": true,
        "url": "https://api.github.com/repos/darkmatter/tenderly-snap",
        "forks_url": "https://api.github.com/repos/darkmatter/tenderly-snap/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/tenderly-snap/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/tenderly-snap/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/tenderly-snap/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/tenderly-snap/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/tenderly-snap/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/tenderly-snap/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/tenderly-snap/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/tenderly-snap/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/tenderly-snap/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/tenderly-snap/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/tenderly-snap/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/tenderly-snap/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/tenderly-snap/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/tenderly-snap/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/tenderly-snap/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/tenderly-snap/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/tenderly-snap/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/tenderly-snap/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/tenderly-snap/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/tenderly-snap/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/tenderly-snap/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/tenderly-snap/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/tenderly-snap/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/tenderly-snap/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/tenderly-snap/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/tenderly-snap/deployments",
        "created_at": "2026-06-04T14:59:37Z",
        "updated_at": "2026-06-04T14:59:38Z",
        "pushed_at": "2026-06-04T15:06:26Z",
        "git_url": "git://github.com/darkmatter/tenderly-snap.git",
        "ssh_url": "git@github.com:darkmatter/tenderly-snap.git",
        "clone_url": "https://github.com/darkmatter/tenderly-snap.git",
        "svn_url": "https://github.com/darkmatter/tenderly-snap",
        "homepage": "https://docs.tenderly.co/simulations-and-forks/integration-guides/how-to-add-transaction-preview-to-a-metamask-snap-using-tenderly-simulation-api",
        "size": 952,
        "stargazers_count": 0,
        "watchers_count": 0,
        "language": null,
        "has_issues": false,
        "has_projects": true,
        "has_downloads": true,
        "has_wiki": true,
        "has_pages": false,
        "has_discussions": false,
        "forks_count": 0,
        "mirror_url": null,
        "archived": false,
        "disabled": false,
        "open_issues_count": 1,
        "license": {
          "key": "apache-2.0",
          "name": "Apache License 2.0",
          "spdx_id": "Apache-2.0",
          "url": "https://api.github.com/licenses/apache-2.0",
          "node_id": "MDc6TGljZW5zZTI="
        },
        "allow_forking": true,
        "is_template": false,
        "web_commit_signoff_required": false,
        "has_pull_requests": true,
        "pull_request_creation_policy": "all",
        "topics": [],
        "visibility": "public",
        "forks": 0,
        "open_issues": 1,
        "watchers": 0,
        "default_branch": "main",
        "allow_squash_merge": true,
        "allow_merge_commit": true,
        "allow_rebase_merge": true,
        "allow_auto_merge": false,
        "delete_branch_on_merge": false,
        "allow_update_branch": false,
        "use_squash_pr_title_as_default": false,
        "squash_merge_commit_message": "COMMIT_MESSAGES",
        "squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
        "merge_commit_message": "PR_TITLE",
        "merge_commit_title": "MERGE_MESSAGE"
      }
    },
    "base": {
      "label": "darkmatter:main",
      "ref": "main",
      "sha": "22c5a2bb7fbd8f08ee67cd977e358b2fcc2998b3",
      "user": {
        "login": "darkmatter",
        "id": 17834193,
        "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
        "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/darkmatter",
        "html_url": "https://github.com/darkmatter",
        "followers_url": "https://api.github.com/users/darkmatter/followers",
        "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
        "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
        "organizations_url": "https://api.github.com/users/darkmatter/orgs",
        "repos_url": "https://api.github.com/users/darkmatter/repos",
        "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
        "received_events_url": "https://api.github.com/users/darkmatter/received_events",
        "type": "Organization",
        "user_view_type": "public",
        "site_admin": false
      },
      "repo": {
        "id": 1259488930,
        "node_id": "R_kgDOSxJGog",
        "name": "tenderly-snap",
        "full_name": "darkmatter/tenderly-snap",
        "private": false,
        "owner": {
          "login": "darkmatter",
          "id": 17834193,
          "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
          "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/darkmatter",
          "html_url": "https://github.com/darkmatter",
          "followers_url": "https://api.github.com/users/darkmatter/followers",
          "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
          "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
          "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
          "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
          "organizations_url": "https://api.github.com/users/darkmatter/orgs",
          "repos_url": "https://api.github.com/users/darkmatter/repos",
          "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
          "received_events_url": "https://api.github.com/users/darkmatter/received_events",
          "type": "Organization",
          "user_view_type": "public",
          "site_admin": false
        },
        "html_url": "https://github.com/darkmatter/tenderly-snap",
        "description": "Tenderly MetaMask Snap using the Tenderly Simulation API to showcase transaction asset changes. 🦊",
        "fork": true,
        "url": "https://api.github.com/repos/darkmatter/tenderly-snap",
        "forks_url": "https://api.github.com/repos/darkmatter/tenderly-snap/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/tenderly-snap/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/tenderly-snap/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/tenderly-snap/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/tenderly-snap/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/tenderly-snap/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/tenderly-snap/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/tenderly-snap/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/tenderly-snap/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/tenderly-snap/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/tenderly-snap/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/tenderly-snap/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/tenderly-snap/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/tenderly-snap/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/tenderly-snap/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/tenderly-snap/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/tenderly-snap/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/tenderly-snap/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/tenderly-snap/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/tenderly-snap/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/tenderly-snap/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/tenderly-snap/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/tenderly-snap/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/tenderly-snap/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/tenderly-snap/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/tenderly-snap/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/tenderly-snap/deployments",
        "created_at": "2026-06-04T14:59:37Z",
        "updated_at": "2026-06-04T14:59:38Z",
        "pushed_at": "2026-06-04T15:06:26Z",
        "git_url": "git://github.com/darkmatter/tenderly-snap.git",
        "ssh_url": "git@github.com:darkmatter/tenderly-snap.git",
        "clone_url": "https://github.com/darkmatter/tenderly-snap.git",
        "svn_url": "https://github.com/darkmatter/tenderly-snap",
        "homepage": "https://docs.tenderly.co/simulations-and-forks/integration-guides/how-to-add-transaction-preview-to-a-metamask-snap-using-tenderly-simulation-api",
        "size": 952,
        "stargazers_count": 0,
        "watchers_count": 0,
        "language": null,
        "has_issues": false,
        "has_projects": true,
        "has_downloads": true,
        "has_wiki": true,
        "has_pages": false,
        "has_discussions": false,
        "forks_count": 0,
        "mirror_url": null,
        "archived": false,
        "disabled": false,
        "open_issues_count": 1,
        "license": {
          "key": "apache-2.0",
          "name": "Apache License 2.0",
          "spdx_id": "Apache-2.0",
          "url": "https://api.github.com/licenses/apache-2.0",
          "node_id": "MDc6TGljZW5zZTI="
        },
        "allow_forking": true,
        "is_template": false,
        "web_commit_signoff_required": false,
        "has_pull_requests": true,
        "pull_request_creation_policy": "all",
        "topics": [],
        "visibility": "public",
        "forks": 0,
        "open_issues": 1,
        "watchers": 0,
        "default_branch": "main",
        "allow_squash_merge": true,
        "allow_merge_commit": true,
        "allow_rebase_merge": true,
        "allow_auto_merge": false,
        "delete_branch_on_merge": false,
        "allow_update_branch": false,
        "use_squash_pr_title_as_default": false,
        "squash_merge_commit_message": "COMMIT_MESSAGES",
        "squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
        "merge_commit_message": "PR_TITLE",
        "merge_commit_title": "MERGE_MESSAGE"
      }
    },
    "_links": {
      "self": {
        "href": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls/1"
      },
      "html": {
        "href": "https://github.com/darkmatter/tenderly-snap/pull/1"
      },
      "issue": {
        "href": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/1"
      },
      "comments": {
        "href": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/1/comments"
      },
      "review_comments": {
        "href": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls/1/comments"
      },
      "review_comment": {
        "href": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls/comments{/number}"
      },
      "commits": {
        "href": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls/1/commits"
      },
      "statuses": {
        "href": "https://api.github.com/repos/darkmatter/tenderly-snap/statuses/5c053615e4697caa0723ae6f35bb350febf7adef"
      }
    },
    "author_association": "MEMBER",
    "auto_merge": null,
    "assignee": null,
    "active_lock_reason": null,
    "merged": false,
    "mergeable": true,
    "rebaseable": true,
    "mergeable_state": "clean",
    "merged_by": null,
    "comments": 0,
    "review_comments": 0,
    "maintainer_can_modify": false,
    "commits": 1,
    "additions": 185,
    "deletions": 153,
    "changed_files": 8
  },
  "repository": {
    "id": 1259488930,
    "node_id": "R_kgDOSxJGog",
    "name": "tenderly-snap",
    "full_name": "darkmatter/tenderly-snap",
    "private": false,
    "owner": {
      "login": "darkmatter",
      "id": 17834193,
      "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
      "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/darkmatter",
      "html_url": "https://github.com/darkmatter",
      "followers_url": "https://api.github.com/users/darkmatter/followers",
      "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
      "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
      "organizations_url": "https://api.github.com/users/darkmatter/orgs",
      "repos_url": "https://api.github.com/users/darkmatter/repos",
      "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
      "received_events_url": "https://api.github.com/users/darkmatter/received_events",
      "type": "Organization",
      "user_view_type": "public",
      "site_admin": false
    },
    "html_url": "https://github.com/darkmatter/tenderly-snap",
    "description": "Tenderly MetaMask Snap using the Tenderly Simulation API to showcase transaction asset changes. 🦊",
    "fork": true,
    "url": "https://api.github.com/repos/darkmatter/tenderly-snap",
    "forks_url": "https://api.github.com/repos/darkmatter/tenderly-snap/forks",
    "keys_url": "https://api.github.com/repos/darkmatter/tenderly-snap/keys{/key_id}",
    "collaborators_url": "https://api.github.com/repos/darkmatter/tenderly-snap/collaborators{/collaborator}",
    "teams_url": "https://api.github.com/repos/darkmatter/tenderly-snap/teams",
    "hooks_url": "https://api.github.com/repos/darkmatter/tenderly-snap/hooks",
    "issue_events_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/events{/number}",
    "events_url": "https://api.github.com/repos/darkmatter/tenderly-snap/events",
    "assignees_url": "https://api.github.com/repos/darkmatter/tenderly-snap/assignees{/user}",
    "branches_url": "https://api.github.com/repos/darkmatter/tenderly-snap/branches{/branch}",
    "tags_url": "https://api.github.com/repos/darkmatter/tenderly-snap/tags",
    "blobs_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/blobs{/sha}",
    "git_tags_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/tags{/sha}",
    "git_refs_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/refs{/sha}",
    "trees_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/trees{/sha}",
    "statuses_url": "https://api.github.com/repos/darkmatter/tenderly-snap/statuses/{sha}",
    "languages_url": "https://api.github.com/repos/darkmatter/tenderly-snap/languages",
    "stargazers_url": "https://api.github.com/repos/darkmatter/tenderly-snap/stargazers",
    "contributors_url": "https://api.github.com/repos/darkmatter/tenderly-snap/contributors",
    "subscribers_url": "https://api.github.com/repos/darkmatter/tenderly-snap/subscribers",
    "subscription_url": "https://api.github.com/repos/darkmatter/tenderly-snap/subscription",
    "commits_url": "https://api.github.com/repos/darkmatter/tenderly-snap/commits{/sha}",
    "git_commits_url": "https://api.github.com/repos/darkmatter/tenderly-snap/git/commits{/sha}",
    "comments_url": "https://api.github.com/repos/darkmatter/tenderly-snap/comments{/number}",
    "issue_comment_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues/comments{/number}",
    "contents_url": "https://api.github.com/repos/darkmatter/tenderly-snap/contents/{+path}",
    "compare_url": "https://api.github.com/repos/darkmatter/tenderly-snap/compare/{base}...{head}",
    "merges_url": "https://api.github.com/repos/darkmatter/tenderly-snap/merges",
    "archive_url": "https://api.github.com/repos/darkmatter/tenderly-snap/{archive_format}{/ref}",
    "downloads_url": "https://api.github.com/repos/darkmatter/tenderly-snap/downloads",
    "issues_url": "https://api.github.com/repos/darkmatter/tenderly-snap/issues{/number}",
    "pulls_url": "https://api.github.com/repos/darkmatter/tenderly-snap/pulls{/number}",
    "milestones_url": "https://api.github.com/repos/darkmatter/tenderly-snap/milestones{/number}",
    "notifications_url": "https://api.github.com/repos/darkmatter/tenderly-snap/notifications{?since,all,participating}",
    "labels_url": "https://api.github.com/repos/darkmatter/tenderly-snap/labels{/name}",
    "releases_url": "https://api.github.com/repos/darkmatter/tenderly-snap/releases{/id}",
    "deployments_url": "https://api.github.com/repos/darkmatter/tenderly-snap/deployments",
    "created_at": "2026-06-04T14:59:37Z",
    "updated_at": "2026-06-04T14:59:38Z",
    "pushed_at": "2026-06-04T15:06:26Z",
    "git_url": "git://github.com/darkmatter/tenderly-snap.git",
    "ssh_url": "git@github.com:darkmatter/tenderly-snap.git",
    "clone_url": "https://github.com/darkmatter/tenderly-snap.git",
    "svn_url": "https://github.com/darkmatter/tenderly-snap",
    "homepage": "https://docs.tenderly.co/simulations-and-forks/integration-guides/how-to-add-transaction-preview-to-a-metamask-snap-using-tenderly-simulation-api",
    "size": 952,
    "stargazers_count": 0,
    "watchers_count": 0,
    "language": null,
    "has_issues": false,
    "has_projects": true,
    "has_downloads": true,
    "has_wiki": true,
    "has_pages": false,
    "has_discussions": false,
    "forks_count": 0,
    "mirror_url": null,
    "archived": false,
    "disabled": false,
    "open_issues_count": 1,
    "license": {
      "key": "apache-2.0",
      "name": "Apache License 2.0",
      "spdx_id": "Apache-2.0",
      "url": "https://api.github.com/licenses/apache-2.0",
      "node_id": "MDc6TGljZW5zZTI="
    },
    "allow_forking": true,
    "is_template": false,
    "web_commit_signoff_required": false,
    "has_pull_requests": true,
    "pull_request_creation_policy": "all",
    "topics": [],
    "visibility": "public",
    "forks": 0,
    "open_issues": 1,
    "watchers": 0,
    "default_branch": "main",
    "custom_properties": {}
  },
  "organization": {
    "login": "darkmatter",
    "id": 17834193,
    "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
    "url": "https://api.github.com/orgs/darkmatter",
    "repos_url": "https://api.github.com/orgs/darkmatter/repos",
    "events_url": "https://api.github.com/orgs/darkmatter/events",
    "hooks_url": "https://api.github.com/orgs/darkmatter/hooks",
    "issues_url": "https://api.github.com/orgs/darkmatter/issues",
    "members_url": "https://api.github.com/orgs/darkmatter/members{/member}",
    "public_members_url": "https://api.github.com/orgs/darkmatter/public_members{/member}",
    "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
    "description": ""
  },
  "enterprise": {
    "id": 469843,
    "slug": "darkmatter",
    "name": "darkmatter",
    "node_id": "E_kgDOAAcrUw",
    "avatar_url": "https://avatars.githubusercontent.com/b/469843?v=4",
    "description": "",
    "website_url": "darkmatter.io",
    "html_url": "https://github.com/enterprises/darkmatter",
    "created_at": "2025-09-07T16:01:00Z",
    "updated_at": "2026-05-09T15:34:55Z"
  },
  "sender": {
    "login": "czxtm",
    "id": 1325802,
    "node_id": "MDQ6VXNlcjEzMjU4MDI=",
    "avatar_url": "https://avatars.githubusercontent.com/u/1325802?v=4",
    "gravatar_id": "",
    "url": "https://api.github.com/users/czxtm",
    "html_url": "https://github.com/czxtm",
    "followers_url": "https://api.github.com/users/czxtm/followers",
    "following_url": "https://api.github.com/users/czxtm/following{/other_user}",
    "gists_url": "https://api.github.com/users/czxtm/gists{/gist_id}",
    "starred_url": "https://api.github.com/users/czxtm/starred{/owner}{/repo}",
    "subscriptions_url": "https://api.github.com/users/czxtm/subscriptions",
    "organizations_url": "https://api.github.com/users/czxtm/orgs",
    "repos_url": "https://api.github.com/users/czxtm/repos",
    "events_url": "https://api.github.com/users/czxtm/events{/privacy}",
    "received_events_url": "https://api.github.com/users/czxtm/received_events",
    "type": "User",
    "user_view_type": "public",
    "site_admin": false
  },
  "installation": {
    "id": 131074261,
    "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
  }
}