Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
eosio-abi2ts
Advanced tools
Command line tool to generate TypeScript type definitions from EOSIO ABI files.
npm install -g eosio-abi2ts
or
yarn global add eosio-abi2ts
$ eosio-abi2ts -h
usage: eosio-abi2ts [-h] [-v] [-i INPUT] [-p PREFIX] [-n INDENT] [-t] [-e]
[-a | -c | -s]
[output]
Positional arguments:
output Output file to write to instead of stdout.
Optional arguments:
-h, --help Show this help message and exit.
-v, --version Show program's version number and exit.
-i INPUT, --input INPUT
Read ABI JSON from file instead of stdin.
-p PREFIX, --prefix PREFIX
Prefix to add to every type.
-n INDENT, --indent INDENT
How many spaces or tabs to indend with.
-t, --use-tabs Use tabs instead of spaces for indentation.
-e, --export Whether to export interfaces and types.
-a, --pascal-case Format types using PascalCase (default).
-c, --camel-case Format types using camelCase.
-s, --snake-case Format types using snake_case.
$ cleos get abi eosio.token | eosio-abi2ts
// Generated by eosio-abi2ts 1.0.0 - eosio::abi/1.0
type Asset = string
type Name = string
type Symbol = string
type AccountName = Name
interface Transfer {
from: AccountName
to: AccountName
quantity: Asset
memo: string
}
interface Create {
issuer: AccountName
maximum_supply: Asset
}
interface Issue {
to: AccountName
quantity: Asset
memo: string
}
interface Retire {
quantity: Asset
memo: string
}
interface Close {
owner: AccountName
symbol: Symbol
}
interface Account {
balance: Asset
}
interface CurrencyStats {
supply: Asset
max_supply: Asset
issuer: AccountName
}
FAQs
generates typescript type defenitions from eosio abi files
The npm package eosio-abi2ts receives a total of 6 weekly downloads. As such, eosio-abi2ts popularity was classified as not popular.
We found that eosio-abi2ts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.