Skip to content

coding

How to Deploy Razoo's Photonic Wallet on Google Cloud Run

Hello everyone! I’m excited to share my latest adventure – setting up Razoo’s Photonic Wallet on Google Cloud Run. This wallet isn’t just for sending and receiving tokens; it allows you to create new tokens, including mineable meme tokens. It’s fair, secure, and efficient, thanks to Radiant's induction proofs. Let's dive into the details!

Step 1: Setting Up the Dockerfile

Here’s the Dockerfile that you’ll need to build the Photonic Wallet image:

FROM node:18
RUN npm install -g pnpm
RUN git clone https://github.com/coinchimp/photonic-wallet
WORKDIR /photonic-wallet
RUN pnpm install
RUN pnpm build
RUN npm install -g http-server
EXPOSE 8080
CMD ["http-server", "/photonic-wallet/packages/app/dist", "-p", "8080"]

If you’re running it locally with self-signed certificates, use this Dockerfile:

FROM node:18
RUN npm install -g pnpm
RUN git clone https://github.com/coinchimp/photonic-wallet
WORKDIR /photonic-wallet
RUN pnpm install
RUN pnpm build
RUN npm install -g http-server
RUN mkdir -p /photonic-wallet/certs && \
    openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /photonic-wallet/certs/selfsigned.key -out /photonic-wallet/certs/selfsigned.crt -subj "/C=US/ST=State/L=City/O=Organization/OU=Unit/CN=localhost"
EXPOSE 8080
CMD ["http-server", "/photonic-wallet/packages/app/dist", "-p", "8080", "-S", "-C", "/photonic-wallet/certs/selfsigned.crt", "-K", "/photonic-wallet/certs/selfsigned.key"]

Step 2: GitHub Actions Workflow

Here’s the workflow file to automate the build and deployment process to Google Cloud Run:

name: Deploy Photonic Wallet to Google Cloud Run

on:
  push:
    branches:
      - master

jobs:
  build-and-deploy:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2

      - name: Log in to Google Container Registry
        uses: docker/login-action@v2
        with:
          registry: gcr.io
          username: _json_key
          password: ${{ secrets.GCP_RUN_CREDENTIALS }}

      - name: Build and push Docker image
        uses: docker/build-push-action@v3
        with:
          context: .
          file: ./Dockerfile
          push: true
          tags: gcr.io/${{ secrets.GOOGLE_PROJECT_ID }}/photonic-wallet:${{ github.sha }}

      - name: Authenticate to Google Cloud manually
        env:
          GCP_JSON_KEY: ${{ secrets.GCP_RUN_CREDENTIALS }}
        run: |
          echo "$GCP_JSON_KEY" > /tmp/gcp-key.json
          gcloud auth activate-service-account --key-file=/tmp/gcp-key.json

      - name: Set Google Cloud Project
        env:
          GCP_PROJ_ID: ${{ secrets.GOOGLE_PROJECT_ID }}
        run: gcloud config set project "$GCP_PROJ_ID"

      - name: Verify Authentication
        run: |
          gcloud auth list
          gcloud config list project

      - name: Deploy to Google Cloud Run
        run: |
          gcloud run deploy photonic-wallet \
            --image gcr.io/${{ secrets.GOOGLE_PROJECT_ID }}/photonic-wallet:${{ github.sha }} \
            --platform managed \
            --region us-central1 \
            --allow-unauthenticated
        shell: bash

Step 3: Setting Up Google Cloud Run

Before deploying, make sure to create an instance in Cloud Run and set the necessary permissions:

  1. Create an Instance:
  2. Go to the Google Cloud Console.
  3. Navigate to Cloud Run and create a new service.
  4. Choose your region and the container image URL (from Google Container Registry).

  5. Set Permissions:

  6. Ensure the Cloud Run service account has the following roles:
    • Cloud Run Admin
    • Storage Admin
    • Artifact Registry Reader
  7. You can set these permissions in the IAM section of the Google Cloud Console.

Conclusion

That’s it! You’ve successfully deployed Razoo’s Photonic Wallet to Google Cloud Run. For more details, check out the Photonic Wallet repo. Happy deploying and enjoy creating your own tokens!

Cheers

Diving Into a World of Coding and Crypto: My Journey Begins

Hello everyone, and welcome to the very first blog post on CoinChimp! I'm thrilled to kick off this adventure where I'll be sharing everything I learn along the way. Whether you're a seasoned coder or just dipping your toes into the crypto waters, I hope you'll find something useful here.

Starting with Rust

My coding journey has taken a new turn—I've started exploring Rust! After dabbling in Python and Go, I noticed Rust's rising popularity, not just in the tech community but especially in the crypto space. It’s an exciting change, and I'm eager to dive deeper.

Automating Discord Alerts

Recently, I launched my first application—a simple yet effective tool to automate alerts on Discord. Using a webhook service on Google Cloud Run, I managed to simplify what initially seemed a daunting task. This experience was not just about coding; it was about bringing my entire toolkit into play. From containers and Kubernetes to integrating ChatGPT for faster coding without sweating over syntax, every bit of my tech background helped streamline the process.

Learning on the Fly

The journey wasn’t smooth from the start. I initially tried using Discord’s developer portal to register an app but soon realized managing tokens and redirect links was getting too complex. Switching to webhook integrations simplified everything, allowing me to quickly wrap up my first version.

Another major leap was utilizing GitHub Actions, which seamlessly pushed my code changes to a live service on Google Cloud Run. It's impressive how much insight one can gain from GitHub's logs—they really make debugging a breeze.

TradingView and Family Crypto Adventures

My project allowed me to send TradingView alerts directly to my personal server, simplifying how I track market movements. This not only cuts down the clutter of phone notifications but also lets me share insights with my wife, a brilliant mind in the crypto world. Together, we're navigating this fascinating era of financial innovation.

The Bigger Picture

Exploring cryptocurrencies like Bitcoin, Kaspa, and Radiant has been enlightening. Their underlying technologies fascinate me—the decentralized networks, the complex algorithms, and the way they ensure transparency without a central authority. It’s a testament to how blockchain can safeguard not just financial transactions but potentially any valuable data across industries.

Looking Ahead

While many coins may not withstand the upcoming bear market, the knowledge and technologies we develop will pave the way for future applications. This isn't just about investments—it's about understanding and possibly revolutionizing how we interact with digital information.

I'm excited about where this journey will take me, and I hope to turn this passion into a sustainable livelihood. Here's to the many learnings and shared experiences ahead!

Cheers to new beginnings!