Initial commit with translated description

This commit is contained in:
2026-03-29 10:22:43 +08:00
commit fe7efbf39e
17 changed files with 609 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env node
const apiClient = require('./api_client');
async function getTrendingCoins() {
return apiClient.get('/crypto/search/trending');
}
async function main() {
const result = await getTrendingCoins();
console.log(JSON.stringify(result, null, 2));
}
main();