Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
crypto-art-render
Advanced tools
Magic render of crypto art.
anchor
always be type of string
, not controlled by tokens any more.Master config defines the rule of rendering for the artwork.
A typical config data structure is shown below:
Artist
or Layer Count
.This type tells the property can be controlled by layer token or just a pure integer.
In typescript, we define:
type IntProperty =
| {
"token-id": number,
"lever-id": number
}
| number;
A layer option defines an option of a layer that token holder can choose.
uri - Layer resource URI, usually IPFS Cid of image.
label - Layer label.
anchor - optional. Anchor point id.
fixed-position - optional. Fix position of layer at the artwork.
relative-position - optional. Relative position of layer with the coordinate of the anchor layer.
**fixed-rotation **(IntProperty) - optional. Fix rotation degree.
orbit-rotation (IntPropery) - optional. Orbit rotation degree around the anchor provided by the layer.
mirror (IntPropery) - optional. Mirror transition. Value result will only be 0
or 1
.
visible (IntPropery) - optional. Is layer visible. Value result will only be 0
or 1
.
finalCenterX (number) - Not pre-defined. Final center coordinate x of layer. This property will be filled during rendering process.
finalCenterY (number) - Not pre-defined. Final center coordinate y of layer. This property will be filled during rendering process.
active (boolean) - Not pre-defined. Tell the layer can be used as anchor point or not.
color - Color scheme of layer
Inherit from LayerOption, with more fields like:
Array<LayerOption>
- list of layer optionPlease see a typical master config example.
Module generator
is used to generate artwokr config, define and fill necessary fields more easily.
Check out the API.
Initialize empty config
import { Generator } from "crypto-art-render";
const generator = new Generator();
// Initialize master config with basic info
generator.intialize(
"name",
"desc",
"QmX71QqNunRjE3Sdj78vDGrDyeT3dEMp9xrrQPSx5JCBTQ"
);
// Set attributes
generator.setAttributes([
{
[KEY_TRAIT_TYPE]: "Artist",
value: "LowesYang"
},
{
[KEY_TRAIT_TYPE]: "Artist",
value: "YYH"
},
{
[KEY_TRAIT_TYPE]: "Layer Count",
value: "4"
}
]);
// Set fields in master config
generator.setLayout("layer id", 1);
generator.addStatesLayer("layer id", states);
generator.addPureLayer("layer id", layerbody);
console.log(generator.masterConfig); // see `test/config_example/example1.json`
const eosApi = new EosAPI();
// Initialize artwork on chain
// Add config file init by `generator` to IPFS node.
const configCid = "QmQRYre2kUKd3VW13CeY6zowwyK8RwXqbJxkjzpVS6cyrc";
generator.mintwork(eosApi, "contract", "artist", "issuer");
// say master id is 1, layer token relative id is 1
// the real layer token id on chaini is 1 + 1 = 2
// Setup token on chain
generator.setuptoken(eosApi, "contract", "eosio", 1, 1, [0], [256], [144]);
// Update token on chain
generator.updatetoken(eosApi, "contract", "eosio", 1, 1, [0], [145]);
Module Render
is used to render image from master config.
Check out the API.
import { Render, IpfsLoader } from "crypto-art-render";
// Initialize render with ipfs loader, interacting with local IPFS node
const render = new Render(
new IpfsLoader({ endpoint: "http://127.0.0.1:8080" })
);
const masterTokenId = 0;
const masterImage = await render.renderMaster("contract", masterTokenId);
const compositeImage = await render.renderComposite("contract", masterTokenId);
// Interact with result folloing the API of [Jimp](https://github.com/oliver-moran/jimp/tree/master/packages/jimp)
await masterImage.writeAsync("master.png");
await compositeImage.writeAsync("composite.png");
8080
.test/config_example
to local IPFS network.8888
;npm run test
FAQs
Magic render of programmable art.
The npm package crypto-art-render receives a total of 1 weekly downloads. As such, crypto-art-render popularity was classified as not popular.
We found that crypto-art-render demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.