ネームスペースにアタッチされたメタデータエントリの一覧を取得する
ネームスペースへのメタデータの割り当て ガイドを完了している
// replace with namespace name
const namespaceId = new NamespaceId('symbol');
// replace with node endpoint
const nodeUrl = 'NODE_URL';
const repositoryFactory = new RepositoryFactoryHttp(nodeUrl);
const metadataHttp = repositoryFactory.createMetadataRepository();
const searchCriteria = {
targetId: namespaceId,
metadataType: MetadataType.Namespace,
};
metadataHttp.search(searchCriteria).subscribe(
(metadataEntries: Page<Metadata>) => {
if (metadataEntries.pageSize > 0) {
console.log('Page', metadataEntries.pageNumber);
metadataEntries.data.map((entry: Metadata) => {
const metadataEntry = entry.metadataEntry;
console.log('\n \n Key:\t', metadataEntry.scopedMetadataKey);
console.log('\n ---');
console.log('\n Value:\t', metadataEntry.value);
console.log(
'\n Sender Address:\t',
metadataEntry.sourceAddress.pretty(),
);
console.log(
'\n Target address:\t',
metadataEntry.targetAddress.pretty(),
);
console.log(
'\n Scoped metadata key:\t',
metadataEntry.scopedMetadataKey.toHex(),
);
console.log('\n TargetId:\t', metadataEntry.targetId);
});
} else {
console.log('\n The namespace does not have metadata entries assigned.');
}
},
(err) => console.log(err),
);
// replace with namespace name
const namespaceId = new symbol_sdk_1.NamespaceId('symbol');
// replace with node endpoint
const nodeUrl = 'NODE_URL';
const repositoryFactory = new symbol_sdk_1.RepositoryFactoryHttp(nodeUrl);
const metadataHttp = repositoryFactory.createMetadataRepository();
const searchCriteria = {
targetId: namespaceId,
metadataType: symbol_sdk_1.MetadataType.Namespace,
};
metadataHttp.search(searchCriteria).subscribe(
(metadataEntries) => {
if (metadataEntries.pageSize > 0) {
console.log('Page', metadataEntries.pageNumber);
metadataEntries.data.map((entry) => {
const metadataEntry = entry.metadataEntry;
console.log('\n \n Key:\t', metadataEntry.scopedMetadataKey);
console.log('\n ---');
console.log('\n Value:\t', metadataEntry.value);
console.log(
'\n Sender Address:\t',
metadataEntry.sourceAddress.pretty(),
);
console.log(
'\n Target address:\t',
metadataEntry.targetAddress.pretty(),
);
console.log(
'\n Scoped metadata key:\t',
metadataEntry.scopedMetadataKey.toHex(),
);
console.log('\n TargetId:\t', metadataEntry.targetId);
});
} else {
console.log('\n The namespace does not have metadata entries assigned.');
}
},
(err) => console.log(err),
);
// replace with node endpoint
try (final RepositoryFactory repositoryFactory = new RepositoryFactoryVertxImpl(
"NODE_URL")) {
final MetadataRepository metadataRepository = repositoryFactory
.createMetadataRepository();
// replace with namespace name
final String namespaceName = "symbol";
final NamespaceId namespaceId = NamespaceId.createFromName(namespaceName);
MetadataPaginationStreamer streamer = new MetadataPaginationStreamer(
metadataRepository);
MetadataSearchCriteria criteria = new MetadataSearchCriteria().targetId(namespaceId);
final List<Metadata> metadata = streamer
.search(criteria).toList().toFuture().get();
final JsonHelper helper = new JsonHelperJackson2();
System.out.println(helper.prettyPrint(metadata));
}