Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 641 Bytes

File metadata and controls

36 lines (24 loc) · 641 Bytes
title @ipfs

Upload text content to IPFS and return the CID.

Returns: string

Syntax

@ipfs(text)

Arguments

Name Type Description
text string Content to upload

Examples

# Upload text to IPFS
set $cid @ipfs("hello world")

Content is pinned byte-exact as plain text, so the CID addresses exactly the text you uploaded — a pinned module file can be loaded directly with load --from.

See Also