Skip to content

Comments

Add tutorial: Building ATM withdrawal system with Omni Wallet#7

Draft
Copilot wants to merge 3 commits intomainfrom
copilot/atm-withdraw-omni-wallet
Draft

Add tutorial: Building ATM withdrawal system with Omni Wallet#7
Copilot wants to merge 3 commits intomainfrom
copilot/atm-withdraw-omni-wallet

Conversation

Copy link

Copilot AI commented Feb 19, 2026

Description

Adds comprehensive tutorial for building a serverless cryptocurrency ATM withdrawal application using Architect and Omni Wallet (Bitcoin/Omni Protocol web wallet).

Changes

New Tutorial (src/views/docs/en/:tutorials/atm-withdraw-omni-wallet.md)

  • Project setup with @http, @tables manifest configuration
  • DynamoDB schema for users, transactions, wallets
  • API endpoints (balance check, withdrawal processing, verification)
  • Omni Wallet API integration patterns
  • Transaction processing with balance verification and validation
  • Security implementations: MFA, rate limiting, key management, encryption
  • Deployment configuration and monitoring setup

Integration

  • Linked from examples page (src/views/docs/en/guides/examples.md)
  • Extended spellcheck dictionary with cryptocurrency/ATM terminology

Example Usage

// GET /api/balance - uses query parameters
export async function handler(event) {
  const { walletAddress } = event.queryStringParameters || {}
  const balance = await getBalance(walletAddress)
  return {
    statusCode: 200,
    body: JSON.stringify({ walletAddress, balance, currency: 'BTC' })
  }
}

Screenshot

Tutorial rendering


Checklist

  • Forked the repo and created your branch from main
  • Made sure tests pass (run npm it from the repo root)
  • Updated relevant documentation internal to this repo (e.g. readme.md, help docs, inline docs & comments, etc.)
  • Linked to any related issues, PRs, etc. below that may relate to, consume, or necessitate these changes

💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI and others added 2 commits February 19, 2026 04:26
Co-authored-by: grealalexander2-collab <228605079+grealalexander2-collab@users.noreply.github.com>
…URLs

Co-authored-by: grealalexander2-collab <228605079+grealalexander2-collab@users.noreply.github.com>
Copilot AI changed the title [WIP] Add ATM withdrawal functionality with Omni wallet Add tutorial: Building ATM withdrawal system with Omni Wallet Feb 19, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants