UNPKG

xrpl-binary-codec-prerelease

Version:

XRP Ledger Protocol Binary Codec - For XRPL, Xahau and other networks (with dynamic definitions)

20 lines (14 loc) 280 B
class NativeAsset { private nativeAsset = 'XRP' constructor() { // } set(asset: string): void { this.nativeAsset = asset.trim().toUpperCase() } get(): string { return this.nativeAsset } } const nativeAsset = new NativeAsset() export { nativeAsset }