Submit a signed future-artwork edit
curl --request POST \
--url https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit \
--header 'Content-Type: application/json' \
--data '
{
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>",
"edit": {
"version": "<string>",
"dropId": "<string>",
"launchTx": "<string>",
"revision": 1,
"cardsByRarity": [
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"trait_type": "<string>",
"value": "<string>"
}
],
"mask": "<string>",
"firstEditionImage": "<string>"
}
]
],
"image": "<string>"
}
}
'import requests
url = "https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit"
payload = {
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>",
"edit": {
"version": "<string>",
"dropId": "<string>",
"launchTx": "<string>",
"revision": 1,
"cardsByRarity": [[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"trait_type": "<string>",
"value": "<string>"
}
],
"mask": "<string>",
"firstEditionImage": "<string>"
}
]],
"image": "<string>"
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
address: '<string>',
nonce: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
expires: 123,
signature: '<string>',
edit: {
version: '<string>',
dropId: '<string>',
launchTx: '<string>',
revision: 1,
cardsByRarity: [
[
{
id: '<string>',
name: '<string>',
description: '<string>',
image: '<string>',
attributes: [{trait_type: '<string>', value: '<string>'}],
mask: '<string>',
firstEditionImage: '<string>'
}
]
],
image: '<string>'
}
})
};
fetch('https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'address' => '<string>',
'nonce' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'expires' => 123,
'signature' => '<string>',
'edit' => [
'version' => '<string>',
'dropId' => '<string>',
'launchTx' => '<string>',
'revision' => 1,
'cardsByRarity' => [
[
[
'id' => '<string>',
'name' => '<string>',
'description' => '<string>',
'image' => '<string>',
'attributes' => [
[
'trait_type' => '<string>',
'value' => '<string>'
]
],
'mask' => '<string>',
'firstEditionImage' => '<string>'
]
]
],
'image' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit"
payload := strings.NewReader("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"edit\": {\n \"version\": \"<string>\",\n \"dropId\": \"<string>\",\n \"launchTx\": \"<string>\",\n \"revision\": 1,\n \"cardsByRarity\": [\n [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"image\": \"<string>\",\n \"attributes\": [\n {\n \"trait_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"mask\": \"<string>\",\n \"firstEditionImage\": \"<string>\"\n }\n ]\n ],\n \"image\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"edit\": {\n \"version\": \"<string>\",\n \"dropId\": \"<string>\",\n \"launchTx\": \"<string>\",\n \"revision\": 1,\n \"cardsByRarity\": [\n [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"image\": \"<string>\",\n \"attributes\": [\n {\n \"trait_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"mask\": \"<string>\",\n \"firstEditionImage\": \"<string>\"\n }\n ]\n ],\n \"image\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"edit\": {\n \"version\": \"<string>\",\n \"dropId\": \"<string>\",\n \"launchTx\": \"<string>\",\n \"revision\": 1,\n \"cardsByRarity\": [\n [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"image\": \"<string>\",\n \"attributes\": [\n {\n \"trait_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"mask\": \"<string>\",\n \"firstEditionImage\": \"<string>\"\n }\n ]\n ],\n \"image\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"launchTx": "<string>",
"revision": 123,
"owner": "<string>",
"createdAt": 123,
"editableUntil": 123,
"effectiveAt": 123,
"release": {
"id": "<string>",
"revision": 1,
"name": "<string>",
"symbol": "<string>",
"image": "<string>",
"color": "<string>",
"baseURI": "<string>",
"description": "<string>",
"launchAt": 1,
"status": "draft",
"links": {
"website": "<string>",
"x": "<string>",
"telegram": "<string>"
},
"design": {
"accent": "<string>",
"pattern": "solid",
"mask": "full",
"cardsByRarity": [
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"trait_type": "<string>",
"value": "<string>"
}
],
"mask": "<string>",
"firstEditionImage": "<string>"
}
]
],
"strokes": [
[
123
]
],
"tierImages": [
"<string>"
],
"cardImage": "<string>",
"tierMasks": [
"<string>"
]
}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Creators
Submit a signed future-artwork edit
Sign the exact packEditMessage from catalog/pack-edits.ts, after canonical parsePackEdit. Creator, runtime, launch transaction, nonce, expiry and revision are checked. Card edits have a seven-day window; cover edits do not use that same window. Previous openings retain their original revision. Validation/revision errors return 400; reload and reconcile rather than silently overwriting. Body <=512 KiB.
POST
/
runtime
/
{version}
/
pack-edit
Submit a signed future-artwork edit
curl --request POST \
--url https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit \
--header 'Content-Type: application/json' \
--data '
{
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>",
"edit": {
"version": "<string>",
"dropId": "<string>",
"launchTx": "<string>",
"revision": 1,
"cardsByRarity": [
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"trait_type": "<string>",
"value": "<string>"
}
],
"mask": "<string>",
"firstEditionImage": "<string>"
}
]
],
"image": "<string>"
}
}
'import requests
url = "https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit"
payload = {
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>",
"edit": {
"version": "<string>",
"dropId": "<string>",
"launchTx": "<string>",
"revision": 1,
"cardsByRarity": [[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"trait_type": "<string>",
"value": "<string>"
}
],
"mask": "<string>",
"firstEditionImage": "<string>"
}
]],
"image": "<string>"
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
address: '<string>',
nonce: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
expires: 123,
signature: '<string>',
edit: {
version: '<string>',
dropId: '<string>',
launchTx: '<string>',
revision: 1,
cardsByRarity: [
[
{
id: '<string>',
name: '<string>',
description: '<string>',
image: '<string>',
attributes: [{trait_type: '<string>', value: '<string>'}],
mask: '<string>',
firstEditionImage: '<string>'
}
]
],
image: '<string>'
}
})
};
fetch('https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'address' => '<string>',
'nonce' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'expires' => 123,
'signature' => '<string>',
'edit' => [
'version' => '<string>',
'dropId' => '<string>',
'launchTx' => '<string>',
'revision' => 1,
'cardsByRarity' => [
[
[
'id' => '<string>',
'name' => '<string>',
'description' => '<string>',
'image' => '<string>',
'attributes' => [
[
'trait_type' => '<string>',
'value' => '<string>'
]
],
'mask' => '<string>',
'firstEditionImage' => '<string>'
]
]
],
'image' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit"
payload := strings.NewReader("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"edit\": {\n \"version\": \"<string>\",\n \"dropId\": \"<string>\",\n \"launchTx\": \"<string>\",\n \"revision\": 1,\n \"cardsByRarity\": [\n [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"image\": \"<string>\",\n \"attributes\": [\n {\n \"trait_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"mask\": \"<string>\",\n \"firstEditionImage\": \"<string>\"\n }\n ]\n ],\n \"image\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"edit\": {\n \"version\": \"<string>\",\n \"dropId\": \"<string>\",\n \"launchTx\": \"<string>\",\n \"revision\": 1,\n \"cardsByRarity\": [\n [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"image\": \"<string>\",\n \"attributes\": [\n {\n \"trait_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"mask\": \"<string>\",\n \"firstEditionImage\": \"<string>\"\n }\n ]\n ],\n \"image\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"edit\": {\n \"version\": \"<string>\",\n \"dropId\": \"<string>\",\n \"launchTx\": \"<string>\",\n \"revision\": 1,\n \"cardsByRarity\": [\n [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"image\": \"<string>\",\n \"attributes\": [\n {\n \"trait_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"mask\": \"<string>\",\n \"firstEditionImage\": \"<string>\"\n }\n ]\n ],\n \"image\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"launchTx": "<string>",
"revision": 123,
"owner": "<string>",
"createdAt": 123,
"editableUntil": 123,
"effectiveAt": 123,
"release": {
"id": "<string>",
"revision": 1,
"name": "<string>",
"symbol": "<string>",
"image": "<string>",
"color": "<string>",
"baseURI": "<string>",
"description": "<string>",
"launchAt": 1,
"status": "draft",
"links": {
"website": "<string>",
"x": "<string>",
"telegram": "<string>"
},
"design": {
"accent": "<string>",
"pattern": "solid",
"mask": "full",
"cardsByRarity": [
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"trait_type": "<string>",
"value": "<string>"
}
],
"mask": "<string>",
"firstEditionImage": "<string>"
}
]
],
"strokes": [
[
123
]
],
"tierImages": [
"<string>"
],
"cardImage": "<string>",
"tierMasks": [
"<string>"
]
}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Path Parameters
Runtime id from /runtime/versions or catalog/sources; never infer the newest revision from its name.
Body
application/json
Sign the exact endpoint-specific message. A syntactically valid signature alone is not authorization.
Pattern:
^0x[0-9a-fA-F]{40}$Fresh UUID v4, never reused.
Unix milliseconds; future and no more than five minutes from the server clock.
Pattern:
^0x[0-9a-fA-F]{130}$At least image or cardsByRarity is required. Card edits are limited to seven days; cover edits have no equivalent time restriction.
Show child attributes
Show child attributes
Response
Successful response.
Pattern:
^0x[0-9a-fA-F]{40}$Announced releases require a nonempty name, uppercase alphanumeric symbol and non-null launchAt. load a full draft before saving if cardsOmitted is true.
Show child attributes
Show child attributes