1.0.6 • Published 3 years ago

avsc-tsc v1.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Avro TSC Decorators

Installation

npm install avsc-tsc

Usage

  • Decorators
import { Avro, AvroField, AvroSchema } from 'avsc-tsc';

@AvroSchema({ namespace: 'evm' })
class Block extends Avro {
  @AvroField(['string', 'null'])
  number: number

  @AvroField(['string', 'null'])
  hash: number
}
  • Encoding
const block = new Block()
const encoded = await block.encode()
  • Decoding
const decoded = await Block.decode<Block>(encoded)
1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago