npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wallet-chii

v1.0.1

Published

Redeem Money form Truemoney

Downloads

51

Readme

TrueMoneyWallet - Voucher_Code - NodeJS-Module🚀

ทรูมันนี่วอเลท API รับเงินอัตโนมัติจากซองอั่งเปา🎁

  • API True Money Wallet Red Envelope🧧

  • The System Automatically Receives Money Into Our Number.

  • API ทรูมันนี่วอเลตซองอั่งเปา🧧

  • ระบบเปิดซองอั่งเปารับเงินเข้าเบอร์เราอัตโนมัติ

fdxrdxfr

install modules

  • ติดตั้งโมดูล
npm i wallet-chii

Run Code

  • รันโค้ด Node fileName.js
Node index.js

การใช้งาน API Usage

  • เบอร์โทร กรอกเบอร์รับเงินทรูวอเลทของเรา📲
  • Phone Number: Enter Our True Wallet Money Receiving Number📲
const CHII_API_WALLET = require('wallet-chii')
function TOPUP_Wallet(code) {
      const res = await CHII_API_WALLET(code, 'เบอร์โทร') // เบอร์โทร Number Phone
      console.log(res)
}
TOPUP_Wallet()

รายละเอียดแสดงผล Display Details

  • แสดงชื่อเจ้าของซอง💬
res.name_owner
  • แสดงจำนวนเงินที่ได้รับ💰
res.amount
  • แสดงลิงค์อั่งเปา🔗
res.code
  • แสดงเบอร์เจ้าของซองอั่งงเปา👤
res.my_phone

รวบรวมผลลัพท์แล้วจะได้แบบนี้ Collect Results

console.log(`ได้รับเงินจาก: ${res.name_owner}\nจำนวนเงิน: ${res.amount} บาท\nลิงค์อั่งเปา: ${res.code}`);

การเชื่อมโยงลิงค์ได้ 2 แบบ

  • แบบที่ 1
const Link_VC = "https://gift.truemoney.com/campaign/?v=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
TOPUP_Wallet(Link_VC); 
+ แบบที่ 2
TOPUP_Wallet("https://gift.truemoney.com/campaign/?v=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"); 

โค้ดหมายเลขแจ้งเตือน Notify Number Code


  • 1001 | ทำรายการรับเงินสำเร็จ |


  • 1002 | รับซองตัวเองไม่ได้ |


  • 1003 | ไม่พบเบอร์นี้ในระบบ |


  • 1004 | ไม่พบซองนี้ในระบบ หรือ URL ผิด |


  • 1005 | มีคนรับซองอั่งเปาไปแล้ว |


  • 1006 | ไม่พบซองอั่งเปาในระบบ |


  • 1007 | ซองวอเลทนี้หมดอายุแล้ว |


  • 1008 | เบอร์โทรศัพท์ผู้รับเงินไม่ถูกต้อง |

ตัวอย่างโค้ด Example Code

const CHII_API_WALLET = require('wallet-chii')
const Link_VC = "https://gift.truemoney.com/campaign/?v=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
async function TOPUP_Wallet(code_vc) {
    try {
        const res = await CHII_API_WALLET(code_vc, 'เบอร์รับเงินวอเลท');
        if (res?.ok) {
            switch (res.ok) {
                case 1001:
                    console.log(`ได้รับเงินจาก: ${res.name_owner}\nจำนวนเงิน: ${res.amount} บาท\nลิงค์อั่งเปา: ${res.code}`);
                    break;
                default:
                    console.log('เกิดข้อผิดพลาดที่ไม่รู้จัก');
                    break;
            }
        } else if (res?.errorData) {
            switch (res.errorData) {
                case 1002:
                    console.log(res.mes_err);
                    // console.log('รับซองตัวเองไม่ได้');
                    break;
                case 1003:
                    console.log(res.mes_err);
                     // console.log('ไม่พบเบอร์นี้ในระบบ');
                    break;
                case 1004:
                    console.log(res.mes_err);
                    // console.log('ไม่พบซองนี้ในระบบ หรือ URL ผิด');
                    break;
                case 1005:
                    console.log(res.mes_err);
                   // console.log('มีคนรับซองอั่งเปาไปแล้ว');
                    break;
                case 1006:
                    console.log(res.mes_err); 
                  // console.log('ไม่พบซองอั่งเปาในระบบ');
                    break;
                case 1007:
                    console.log(res.mes_err);
                  // console.log('ซองวอเลทนี้หมดอายุแล้ว');
                    break;
                case 1008:
                    console.log(res.mes_err);
                    // console.log('เบอร์โทรศัพท์ผู้รับเงินไม่ถูกต้อง');
                    break;
                default:
                    console.log('เกิดข้อผิดพลาดที่ไม่รู้จัก');
                    break;
            }
        }
        // ดึงสถานะ res.mes_err มาแจ้งเตือนข้อผิดพลาด หรือ ตั้งชื่อเองได้ ด้วยการลบ res.mes_err ออก
    } catch (error) {
        console.error('Error during TOPUP_Wallet execution:', error.message);
    }
}
TOPUP_Wallet(Link_VC);  
// เชื่อมโยงลิงค์รับเงิน 
// TOPUP_Wallet('กรอกลิงค์ซองอังเปาใส่');

ตัวอย่างโค้ด Embed Discord

const { EmbedBuilder } = require('discord.js');

const CHII_API_WALLET = require('wallet-chii')
const Link = "https://gift.truemoney.com/campaign/?v=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
async function TOPUP_Wallet(code_vc) {
    try {
        const res = await CHII_API_WALLET(code_vc, 'เบอร์รับเงินวอเลท');
        if (res?.ok) {
            switch (res.ok) {
                case 1001:
                    const embeds_res1 = new EmbedBuilder()
                        .setColor(0xFF9933)
                        .setTitle('รับเงินสำเร็จแล้ว\`\`✅\`\`')
                        .setDescription(`ได้รับเงินจาก: ${res.name_owner}\nจำนวนเงิน: ${res.amount} บาท\nลิงค์อั่งเปา: ${res.code}`)
                    interaction.reply({ embeds: [embeds_res1], ephemeral: true });
                    break;
                default:
                    const embeds_error = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` เกิดข้อผิดพลาดที่ไม่รู้จัก`)
                    interaction.reply({ embeds: [embeds_error], ephemeral: true });
                    break;
            }
        } else if (res?.errorData) {
            switch (res.errorData) {
                case 1002:
                    const embeds_res2 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res2], ephemeral: true });
                    // console.log(res.mes_err); // รับซองตัวเองไม่ได้ 
                    break;
                case 1003:
                    const embeds_res3 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res3], ephemeral: true });
                    //  console.log(res.mes_err); // ไม่พบเบอร์นี้ในระบบ
                    break;
                case 1004:
                    const embeds_res4 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res4], ephemeral: true });
                    //   console.log(res.mes_err); // ไม่พบซองนี้ในระบบ หรือ URL ผิด
                    break;
                case 1005:
                    const embeds_res5 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res5], ephemeral: true });
                    //  console.log(res.mes_err); // มีคนรับซองอั่งเปาไปแล้ว
                    break;
                case 1006:
                    const embeds_res6 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res6], ephemeral: true });
                    // console.log(res.mes_err); // ไม่พบซองอั่งเปาในระบบ
                    break;
                case 1007:
                    const embeds_res7 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res7], ephemeral: true });
                    //  console.log(res.mes_err); // ซองวอเลทนี้หมดอายุแล้ว
                    break;
                case 1008:
                    const embeds_res8 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res8], ephemeral: true });
                    //   console.log(res.mes_err); // เบอร์โทรศัพท์ผู้รับเงินไม่ถูกต้อง
                    break;
                default:
                    const embeds_error = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` เกิดข้อผิดพลาดที่ไม่รู้จัก`)
                    interaction.reply({ embeds: [embeds_error], ephemeral: true });
                    break;
            }
        }
        // ดึงสถานะ res.mes_err มาแจ้งเตือนข้อผิดพลาด หรือ ตั้งชื่อเองได้ ด้วยการลบ res.mes_err ออก
    } catch (error) {
        console.error('Error during TOPUP_Wallet execution:', error.message);
    }
}
TOPUP_Wallet(Link);
// เชื่อมโยงลิงค์รับเงิน
// TOPUP_Wallet('กรอกลิงค์ซองอังเปาใส่');

ผู้พัฒนาโค้ด By Developer : CHII แอดมินซี

  • เซิร์ฟเวอร์ Discord https://discord.gg/5gAsw4Pawq