Skip to content

bitcoinjs/bip65

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bip65

NPM Package Build Status js-standard-style

A BIP65 absolute lock-time encoding library.

Example

let bip65 = require('bip65')

bip65.encode({ utc: 102 })
// => TypeError: Expected Number utc >= 500000000

bip65.encode({ blocks: 1517448381 })
// => TypeError: Expected Number Blocks < 500000000

bip65.encode({ blocks: 54 })
// => 0x00000036

bip65.encode({ blocks: 200 })
// => 0x000000c8

bip65.decode(0x00000036)
// => { blocks: 54 }

LICENSE MIT

About

A BIP65 absolute lock-time encoding library.

Resources

License

Stars

Watchers

Forks

Packages

No packages published