Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9bb7ea6920 | ||
|
|
3f1777738f |
@@ -8,6 +8,7 @@ const (
|
|||||||
|
|
||||||
DagProtobuf = 0x70
|
DagProtobuf = 0x70
|
||||||
DagCBOR = 0x71
|
DagCBOR = 0x71
|
||||||
|
Libp2pKey = 0x72
|
||||||
|
|
||||||
GitRaw = 0x78
|
GitRaw = 0x78
|
||||||
|
|
||||||
@@ -34,6 +35,7 @@ var Codecs = map[string]uint64{
|
|||||||
"raw": Raw,
|
"raw": Raw,
|
||||||
"protobuf": DagProtobuf,
|
"protobuf": DagProtobuf,
|
||||||
"cbor": DagCBOR,
|
"cbor": DagCBOR,
|
||||||
|
"libp2p-key": Libp2pKey,
|
||||||
"git-raw": GitRaw,
|
"git-raw": GitRaw,
|
||||||
"eth-block": EthBlock,
|
"eth-block": EthBlock,
|
||||||
"eth-block-list": EthBlockList,
|
"eth-block-list": EthBlockList,
|
||||||
@@ -57,6 +59,7 @@ var CodecToStr = map[uint64]string{
|
|||||||
Raw: "raw",
|
Raw: "raw",
|
||||||
DagProtobuf: "protobuf",
|
DagProtobuf: "protobuf",
|
||||||
DagCBOR: "cbor",
|
DagCBOR: "cbor",
|
||||||
|
Libp2pKey: "libp2p-key",
|
||||||
GitRaw: "git-raw",
|
GitRaw: "git-raw",
|
||||||
EthBlock: "eth-block",
|
EthBlock: "eth-block",
|
||||||
EthBlockList: "eth-block-list",
|
EthBlockList: "eth-block-list",
|
||||||
|
|||||||
2
cid.go
2
cid.go
@@ -62,6 +62,7 @@ const (
|
|||||||
|
|
||||||
DagProtobuf = 0x70
|
DagProtobuf = 0x70
|
||||||
DagCBOR = 0x71
|
DagCBOR = 0x71
|
||||||
|
Libp2pKey = 0x72
|
||||||
|
|
||||||
GitRaw = 0x78
|
GitRaw = 0x78
|
||||||
|
|
||||||
@@ -90,6 +91,7 @@ var Codecs = map[string]uint64{
|
|||||||
"raw": Raw,
|
"raw": Raw,
|
||||||
"protobuf": DagProtobuf,
|
"protobuf": DagProtobuf,
|
||||||
"cbor": DagCBOR,
|
"cbor": DagCBOR,
|
||||||
|
"libp2p-key": Libp2pKey,
|
||||||
"git-raw": GitRaw,
|
"git-raw": GitRaw,
|
||||||
"eth-block": EthBlock,
|
"eth-block": EthBlock,
|
||||||
"eth-block-list": EthBlockList,
|
"eth-block-list": EthBlockList,
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ var tCodecs = map[uint64]string{
|
|||||||
Raw: "raw",
|
Raw: "raw",
|
||||||
DagProtobuf: "protobuf",
|
DagProtobuf: "protobuf",
|
||||||
DagCBOR: "cbor",
|
DagCBOR: "cbor",
|
||||||
|
Libp2pKey: "libp2p-key",
|
||||||
GitRaw: "git-raw",
|
GitRaw: "git-raw",
|
||||||
EthBlock: "eth-block",
|
EthBlock: "eth-block",
|
||||||
EthBlockList: "eth-block-list",
|
EthBlockList: "eth-block-list",
|
||||||
|
|||||||
Reference in New Issue
Block a user