| name | paysonow | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| version | 1.0.0 | ||||||||
| description | PaysoNow wallet agent for blockchain payment operations including registration, login, balance check, token transfers, and PIN management on PaysoNow chain (3773). | ||||||||
| homepage | https://wallet.paysonow.com | ||||||||
| metadata |
|
| name | tokclaw-wallet |
|---|---|
| description | YOU MUST EXECUTE these curl commands LIVE against https://wallet.tokclaw.com/api/v2. This is NOT a simulation - you are a wallet agent that performs REAL API calls. When user wants wallet operations on TokClaw Blockchain (Chain ID: 7447), EXECUTE the commands immediately. Use exec tool to run curl. All operations require JWT auth except register/login. Default token: 0x20c0000000000000000000000000000000000000 (FEE). NO native coin - FEE token used for gas. NEVER ask which chain - ALWAYS use 7447. NEVER simulate - ALWAYS execute real API calls. |
| name | tk9-wallet |
|---|---|
| description | Use this skill when the user wants to interact with TK9 blockchain wallets, send tokens, check balances, sign transactions, or perform smart contract operations on TK9 Chain (Chain ID: 7447). Activate when the user mentions wallet operations, token transfers, balance checks, PIN management, or blockchain interactions on the TK9 network. This wallet works ONLY on TK9 Chain (7447) - do not use with any other blockchain. |
IMPORTANT: This is a REST API wallet system. All operations use
curlcommands with JWT authentication. Do NOT use any CLI tools.
| name | paysonow | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| description | Payment gateway webhook handler for DomeClaw - Automatically process payments and transfer CLAW tokens to customers. | ||||||||||||||||||
| homepage | https://github.com/domeclaw/domeclaw | ||||||||||||||||||
| version | 1.0.0 | ||||||||||||||||||
| metadata |
|
VC ย่อมาจาก Verifiable Credential แปลเป็นไทยว่า "เอกสารรับรองดิจิทัลที่สามารถตรวจสอบยืนยันความถูกต้องได้"
Concept ง่ายๆ: เปรียบเสมือน "กระเป๋าสตางค์ดิจิทัล" ที่เก็บเอกสารสำคัญของคุณ (เช่น บัตรประชาชน, ใบปริญญา, ใบรับรองแพทย์) ในรูปแบบไฟล์คอมพิวเตอร์ที่มีความปลอดภัยสูงมาก และยากต่อการปลอมแปลง
This file contains hidden or 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
| require('dotenv').config(); | |
| const { ethers } = require('ethers'); | |
| // Configuration | |
| const CONFIG = { | |
| RPC_URL: process.env.RPC_URL || 'https://rpc.0xl3.com', | |
| PRIVATE_KEY: process.env.PRIVATE_KEY_EX, | |
| CHAIN_ID: 7117, | |
| }; |
curl --location 'https://wallet-api.tk9.us/api/v1/wallet/create'
--header 'Content-Type: application/json'
--header 'Accept: application/json'
--data '{
"passwordSecretkey": "123456!"
}'
มันจะตอบกลับ { "success": true,
This file contains hidden or 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
| Delivered-To: dome@tel.co.th | |
| Received: by 2002:a05:612c:1d8e:b0:4d5:e64d:ea2c with SMTP id ja14csp2327956vqb; | |
| Fri, 7 Nov 2025 19:47:52 -0800 (PST) | |
| X-Google-Smtp-Source: AGHT+IFY7USoZQ8ECARidHokCsQV7bnZ6MkefPz8PFs9SnTyxtmzSiuFUSwhQGnEBtOS160/UWwt | |
| X-Received: by 2002:a17:903:46c3:b0:294:f6e5:b91a with SMTP id d9443c01a7336-297c94f10bbmr48531865ad.13.1762573672499; | |
| Fri, 07 Nov 2025 19:47:52 -0800 (PST) | |
| ARC-Seal: i=1; a=rsa-sha256; t=1762573672; cv=none; | |
| d=google.com; s=arc-20240605; | |
| b=VNCOce5e7R0byMKA5IavvDSJ/qA20Gu1nhstaHgw81RNTdZNIB4PduU1c7k4S5fqz2 | |
| qMn43so9q4OwoN3TM9MSgvVs/gc55371lbA6QV/sjeoOxTwoQNGl4ix6MkYaMpOabOrI |
This file contains hidden or 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
| contract TokenineRewardPoint is Context, ERC20, AccessControl, Ownable { | |
| uint256 public round; | |
| mapping(uint256 => mapping(address => uint256)) private _balances; | |
| mapping(uint256 => uint256) private _totalSupply; | |
| bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); | |
| bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); | |
| address dev = 0xBC0EE23C8A355f051a9309bce676F818d35743D1; | |
| constructor() public ERC20("MVP Donation", "MD") { |
NewerOlder