diff --git a/cic/meta.py b/cic/meta.py index f50bf4c..adaef00 100644 --- a/cic/meta.py +++ b/cic/meta.py @@ -56,7 +56,7 @@ class Meta(Data): def reference(self, token_address): token_address_bytes = bytes.fromhex(strip_0x(token_address)) - return generate_metadata_pointer(token_address_bytes, MetadataPointer.TOKEN) + return generate_metadata_pointer(token_address_bytes, MetadataPointer.TOKEN_META) def asdict(self): @@ -91,6 +91,6 @@ class Meta(Data): class MetadataWriter(OutputWriter): def write(self, k, v): - rq = MetadataRequestsHandler(MetadataPointer.TOKEN, bytes.fromhex(k)) + rq = MetadataRequestsHandler(MetadataPointer.TOKEN_META, bytes.fromhex(k)) return rq.create(json.loads(v.decode('utf-8')))