
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
@eoscostarica/fastify-eos
Advanced tools
A Fastify plugin to that decorates fastify with an eosjs instance
A plugin that decorates Fastify with an EOS.js instance.
const fastify = require('fastify')()
// receives eosjs config options
// https://github.com/EOSIO/eosjs#configuration
fastify.register(require('fastify-eos'),{
httpEndpoint: 'jungle.eosio.cr'
}, (err) => { if (err) throw err }
)
fastify.get('/info', (req, reply) => {
const { eos } = fastify
return await eos.getInfo({})
})
// GET: 'http://yourapi/info
// {"server_version":"75635168","chain_id":"038f4b0fc8ff18a4f0842a8f0564611f6e96e8535901dd45e43ac8691a1c4dca","head_block_num":7130132,"last_irreversible_block_num":7129812,"last_irreversible_block_id":"006ccad422bc16b20a632fa0da9dfcf2e071c56005cbf4c3c7371a8f972ce38d","head_block_id":"006ccc14d29f28d25495429def0b10a088408eddd7216d53ea4d92191e3e3602","head_block_time":"2018-07-24T01:26:54.500","head_block_producer":"eosninecatmx","virtual_block_cpu_limit":200000000,"virtual_block_net_limit":1048576000,"block_cpu_limit":199900,"block_net_limit":1048576}
Registering a route handler
const handler = async (request, reply, eos) => JSON.stringify(await eos.getInfo({}))
fastify.route({
method: 'GET',
url: '/info',
handler: (request, reply) => handler(request, reply, fastify.eos)
})
Please report bugs big and small by opening an issue. No possible bug report is too small.
We follow EOS Costa Rica's Open Source Contributing Guidelines.
learn.eoscostarica.io/open-source/
EOS Blockchain is aiming to become a decentralized operating system which can support large-scale decentralized applications.
EOS Costa Rica supports the global and local community by maintaining and contributing to open source initiatives, meetups and workshops.
We challenge ourselves to provide the EOS platform with a strong geographical and political diversity by running the most robust EOS Block Producer possible from Costa Rica; We pledge to leverage our talent, experience, and sustainable internet resources to meet such an important challenge.
MIT © EOS Costa Rica
See LICENSE for more info
FAQs
A Fastify plugin to that decorates fastify with an eosjs instance
We found that @eoscostarica/fastify-eos demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.