js-xdr
js-xdr copied to clipboard
Read/write XDR encoded data structures (RFC 4506)
**Note:** Lots of people tagged for review mostly as an FYI as there may or may not be far-reaching implications to this change. ### What Introduce a better check for...
Due to the fact that React Native does not have strong support for `BigInt` literals (see https://github.com/facebook/react-native/issues/34603#issuecomment-1241038509), this library (and, by extension, the entire Stellar JavaScript SDK, e.g. [`stellar-base`](https://github.com/stellar/js-stellar-base) and...
**Is your feature request related to a problem? Please describe.** It is very convenient to be able to use XDR types that correlate to a native type in an inline,...
**Is your feature request related to a problem? Please describe.** I'm implementing the ONC-RPC protocol using this XDR library. Part of the spec has structs that represent headers for arbitrary...
When creating a union, If `defaultArm` declaration uses a type different to `XDR.Void` - you can't call toXDR on it. **What version are you on?** 1.1.1 **To Reproduce** ```javascript const...
Broadly, this allows a developer to compose XDR representations in JSON and convert them into real XDR objects (and vice versa). The developer story here is: a developer reads the...
Hi, I'm using your module to support communication with libvirt using their remote protocol XDR definition and running into issues with their definition. They use types which aren't defined in...
### What Adding base config for `dependabot.yml`, which enables automatic PRs for [dependency version updates](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/about-dependabot-version-updates) through Dependabot. This base config sets version updates to run on a `weekly` schedule, groups...
As per title. Currently we only have fromXDR which assumes there's only one entry in the buffer. However, sometimes (for example, contract spec) buffer contains a stream of values. See...