diff --git a/src/base-table.js b/src/base-table.js index a1118c6..b86579f 100644 --- a/src/base-table.js +++ b/src/base-table.js @@ -429,6 +429,7 @@ exports['path'] = Buffer.from('2f', 'hex') exports['ipld-ns'] = Buffer.from('e2', 'hex') exports['ipfs-ns'] = Buffer.from('e3', 'hex') exports['swarm-ns'] = Buffer.from('e4', 'hex') +exports['ipns-ns'] = Buffer.from('e5', 'hex') // key exports['ed25519-pub'] = Buffer.from('ed', 'hex') diff --git a/src/constants.js b/src/constants.js index 87d50e9..7ba749b 100644 --- a/src/constants.js +++ b/src/constants.js @@ -430,6 +430,7 @@ module.exports = Object.freeze({ IPLD_NS: 0xe2, IPFS_NS: 0xe3, SWARM_NS: 0xe4, + IPNS_NS: 0xe5, // key ED25519_PUB: 0xed, diff --git a/src/print.js b/src/print.js index 829129c..c1a0246 100644 --- a/src/print.js +++ b/src/print.js @@ -429,6 +429,7 @@ module.exports = Object.freeze({ 0xe2: 'ipld-ns', 0xe3: 'ipfs-ns', 0xe4: 'swarm-ns', + 0xe5: 'ipns-ns', // key 0xed: 'ed25519-pub',