mirror of
https://github.com/alexgo-io/bitcoin-indexer.git
synced 2026-01-12 22:43:06 +08:00
feat(api): return inscription charms in responses (#435)
* add to schema * test: values
This commit is contained in:
@@ -342,6 +342,7 @@ export const InscriptionResponse = Type.Object(
|
|||||||
examples: ['brc20'],
|
examples: ['brc20'],
|
||||||
})
|
})
|
||||||
),
|
),
|
||||||
|
charms: Type.Array(Type.String({ examples: ['coin', 'palindrome', 'vindicated'] })),
|
||||||
},
|
},
|
||||||
{ title: 'Inscription Response' }
|
{ title: 'Inscription Response' }
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -31,6 +31,37 @@ function parseTimestamp(timestamp: number): number {
|
|||||||
return timestamp * 1000;
|
return timestamp * 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum Charm {
|
||||||
|
coin = 0,
|
||||||
|
cursed = 1,
|
||||||
|
epic = 2,
|
||||||
|
legendary = 3,
|
||||||
|
lost = 4,
|
||||||
|
nineball = 5,
|
||||||
|
rare = 6,
|
||||||
|
reinscription = 7,
|
||||||
|
unbound = 8,
|
||||||
|
uncommon = 9,
|
||||||
|
vindicated = 10,
|
||||||
|
mythic = 11,
|
||||||
|
burned = 12,
|
||||||
|
palindrome = 13,
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseCharms(charms: string): string[] {
|
||||||
|
const charmsVal = parseInt(charms);
|
||||||
|
const result: Charm[] = [];
|
||||||
|
for (const charm in Charm) {
|
||||||
|
if (!isNaN(Number(charm))) {
|
||||||
|
const charmValue = Number(charm);
|
||||||
|
if (charmsVal & (1 << charmValue)) {
|
||||||
|
result.push(charmValue as Charm);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result.map(charm => Charm[charm]);
|
||||||
|
}
|
||||||
|
|
||||||
export function parseDbInscriptions(
|
export function parseDbInscriptions(
|
||||||
items: DbFullyLocatedInscriptionResult[]
|
items: DbFullyLocatedInscriptionResult[]
|
||||||
): InscriptionResponseType[] {
|
): InscriptionResponseType[] {
|
||||||
@@ -63,6 +94,7 @@ export function parseDbInscriptions(
|
|||||||
metadata: i.metadata ? JSON.parse(i.metadata) : null,
|
metadata: i.metadata ? JSON.parse(i.metadata) : null,
|
||||||
delegate: i.delegate ?? null,
|
delegate: i.delegate ?? null,
|
||||||
meta_protocol: i.metaprotocol ?? null,
|
meta_protocol: i.metaprotocol ?? null,
|
||||||
|
charms: parseCharms(i.charms),
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
export function parseDbInscription(item: DbFullyLocatedInscriptionResult): InscriptionResponseType {
|
export function parseDbInscription(item: DbFullyLocatedInscriptionResult): InscriptionResponseType {
|
||||||
|
|||||||
@@ -190,6 +190,7 @@ export class PgStore extends BasePgStore {
|
|||||||
i.tx_index AS genesis_tx_index,
|
i.tx_index AS genesis_tx_index,
|
||||||
i.timestamp AS genesis_timestamp,
|
i.timestamp AS genesis_timestamp,
|
||||||
i.address AS genesis_address,
|
i.address AS genesis_address,
|
||||||
|
i.charms,
|
||||||
cur.address,
|
cur.address,
|
||||||
cur.tx_index,
|
cur.tx_index,
|
||||||
cur.block_height,
|
cur.block_height,
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ export type DbFullyLocatedInscriptionResult = {
|
|||||||
pointer: number | null;
|
pointer: number | null;
|
||||||
metaprotocol: string | null;
|
metaprotocol: string | null;
|
||||||
delegate: string | null;
|
delegate: string | null;
|
||||||
|
charms: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type DbLocation = {
|
export type DbLocation = {
|
||||||
|
|||||||
@@ -65,6 +65,7 @@ describe('ETag cache', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '9000',
|
coinbase_height: '9000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
const response = await fastify.inject({
|
const response = await fastify.inject({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
@@ -165,6 +166,7 @@ describe('ETag cache', () => {
|
|||||||
prev_offset: null,
|
prev_offset: null,
|
||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
content: '0x48656C6C6F',
|
content: '0x48656C6C6F',
|
||||||
@@ -197,6 +199,7 @@ describe('ETag cache', () => {
|
|||||||
prev_offset: null,
|
prev_offset: null,
|
||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// ETag response
|
// ETag response
|
||||||
@@ -277,6 +280,7 @@ describe('ETag cache', () => {
|
|||||||
prev_offset: null,
|
prev_offset: null,
|
||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// ETag response
|
// ETag response
|
||||||
@@ -328,6 +332,7 @@ describe('ETag cache', () => {
|
|||||||
prev_offset: null,
|
prev_offset: null,
|
||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Cache busted
|
// Cache busted
|
||||||
@@ -371,6 +376,7 @@ describe('ETag cache', () => {
|
|||||||
prev_offset: null,
|
prev_offset: null,
|
||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// ETag response
|
// ETag response
|
||||||
@@ -422,6 +428,7 @@ describe('ETag cache', () => {
|
|||||||
prev_offset: null,
|
prev_offset: null,
|
||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Cache busted
|
// Cache busted
|
||||||
|
|||||||
@@ -68,6 +68,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 10369,
|
||||||
});
|
});
|
||||||
const expected = {
|
const expected = {
|
||||||
address: 'bc1p3cyx5e2hgh53w7kpxcvm8s4kkega9gv5wfw7c4qxsvxl0u8x834qf0u2td',
|
address: 'bc1p3cyx5e2hgh53w7kpxcvm8s4kkega9gv5wfw7c4qxsvxl0u8x834qf0u2td',
|
||||||
@@ -98,6 +99,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: ['coin', 'reinscription', 'mythic', 'palindrome'],
|
||||||
};
|
};
|
||||||
|
|
||||||
// By inscription id
|
// By inscription id
|
||||||
@@ -154,6 +156,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await insertTestInscriptionRecursion(db.sql, {
|
await insertTestInscriptionRecursion(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -200,6 +203,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
// By inscription id
|
// By inscription id
|
||||||
@@ -251,6 +255,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: 'f351d86c6e6cae3c64e297e7463095732f216875bcc1f3c03f950a492bb25421i0',
|
inscription_id: 'f351d86c6e6cae3c64e297e7463095732f216875bcc1f3c03f950a492bb25421i0',
|
||||||
@@ -283,6 +288,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await insertTestInscriptionParent(db.sql, {
|
await insertTestInscriptionParent(db.sql, {
|
||||||
inscription_id: 'f351d86c6e6cae3c64e297e7463095732f216875bcc1f3c03f950a492bb25421i0',
|
inscription_id: 'f351d86c6e6cae3c64e297e7463095732f216875bcc1f3c03f950a492bb25421i0',
|
||||||
@@ -330,6 +336,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
const response = await fastify.inject({
|
const response = await fastify.inject({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
@@ -371,6 +378,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
const expected = {
|
const expected = {
|
||||||
address: '',
|
address: '',
|
||||||
@@ -401,6 +409,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
// By inscription id
|
// By inscription id
|
||||||
@@ -452,6 +461,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
const expected = {
|
const expected = {
|
||||||
address: 'bc1p3cyx5e2hgh53w7kpxcvm8s4kkega9gv5wfw7c4qxsvxl0u8x834qf0u2td',
|
address: 'bc1p3cyx5e2hgh53w7kpxcvm8s4kkega9gv5wfw7c4qxsvxl0u8x834qf0u2td',
|
||||||
@@ -482,6 +492,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
// By inscription id
|
// By inscription id
|
||||||
@@ -533,6 +544,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Transfer 1
|
// Transfer 1
|
||||||
@@ -590,6 +602,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
});
|
});
|
||||||
|
|
||||||
// Transfer 2
|
// Transfer 2
|
||||||
@@ -647,6 +660,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -682,6 +696,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Multiple transfers
|
// Multiple transfers
|
||||||
@@ -759,6 +774,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -794,6 +810,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Transfer 1
|
// Transfer 1
|
||||||
@@ -851,6 +868,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
});
|
});
|
||||||
|
|
||||||
// Transfer 2
|
// Transfer 2
|
||||||
@@ -908,6 +926,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -943,6 +962,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
const response = await fastify.inject({
|
const response = await fastify.inject({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
@@ -985,6 +1005,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '42174ecc8a245841035793390bb53d63b3c2acb61366446f601b09e73b94b656i0',
|
inscription_id: '42174ecc8a245841035793390bb53d63b3c2acb61366446f601b09e73b94b656i0',
|
||||||
@@ -1017,6 +1038,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
const response = await fastify.inject({
|
const response = await fastify.inject({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
@@ -1061,6 +1083,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Transfer 1
|
// Transfer 1
|
||||||
@@ -1213,6 +1236,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '7ac73ecd01b9da4a7eab904655416dbfe8e03f193e091761b5a63ad0963570cdi0',
|
inscription_id: '7ac73ecd01b9da4a7eab904655416dbfe8e03f193e091761b5a63ad0963570cdi0',
|
||||||
@@ -1245,6 +1269,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
// No transfers on this block because they are all genesis.
|
// No transfers on this block because they are all genesis.
|
||||||
@@ -1573,6 +1598,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -1605,6 +1631,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -1644,6 +1671,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
address: 'bc1pscktlmn99gyzlvymvrezh6vwd0l4kg06tg5rvssw0czg8873gz5sdkteqj',
|
address: 'bc1pscktlmn99gyzlvymvrezh6vwd0l4kg06tg5rvssw0czg8873gz5sdkteqj',
|
||||||
@@ -1674,6 +1702,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
@@ -1711,6 +1740,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -1743,6 +1773,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -1782,6 +1813,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
};
|
};
|
||||||
expect(responseJson1.results[0]).toStrictEqual(result1);
|
expect(responseJson1.results[0]).toStrictEqual(result1);
|
||||||
|
|
||||||
@@ -1822,6 +1854,7 @@ describe('/inscriptions', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
};
|
};
|
||||||
expect(responseJson2.results[0]).toStrictEqual(result2);
|
expect(responseJson2.results[0]).toStrictEqual(result2);
|
||||||
|
|
||||||
@@ -1869,6 +1902,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -1901,6 +1935,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'mythic',
|
rarity: 'mythic',
|
||||||
coinbase_height: '0',
|
coinbase_height: '0',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -1963,6 +1998,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -1995,6 +2031,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -2060,6 +2097,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2092,6 +2130,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -2153,6 +2192,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2185,6 +2225,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -2248,6 +2289,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
const response4 = await fastify.inject({
|
const response4 = await fastify.inject({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
@@ -2293,6 +2335,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2325,6 +2368,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -2372,6 +2416,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2404,6 +2449,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response2 = await fastify.inject({
|
const response2 = await fastify.inject({
|
||||||
@@ -2459,6 +2505,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2491,6 +2538,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response2 = await fastify.inject({
|
const response2 = await fastify.inject({
|
||||||
@@ -2546,6 +2594,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '51483',
|
coinbase_height: '51483',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2578,6 +2627,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '200',
|
coinbase_height: '200',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response2 = await fastify.inject({
|
const response2 = await fastify.inject({
|
||||||
@@ -2633,6 +2683,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2665,6 +2716,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response2 = await fastify.inject({
|
const response2 = await fastify.inject({
|
||||||
@@ -2719,6 +2771,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2751,6 +2804,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -2797,6 +2851,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2829,6 +2884,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -2885,6 +2941,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2919,6 +2976,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await insertTestInscriptionRecursion(db.sql, {
|
await insertTestInscriptionRecursion(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -2982,6 +3040,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -3014,6 +3073,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -3073,6 +3133,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -3105,6 +3166,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -3163,6 +3225,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -3195,6 +3258,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '567c7605439dfdc3a289d13fd2132237852f4a56e784b9364ba94499d5f9baf1i0',
|
inscription_id: '567c7605439dfdc3a289d13fd2132237852f4a56e784b9364ba94499d5f9baf1i0',
|
||||||
@@ -3227,6 +3291,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '0',
|
coinbase_height: '0',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -3284,6 +3349,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -3316,6 +3382,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'epic',
|
rarity: 'epic',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '567c7605439dfdc3a289d13fd2132237852f4a56e784b9364ba94499d5f9baf1i0',
|
inscription_id: '567c7605439dfdc3a289d13fd2132237852f4a56e784b9364ba94499d5f9baf1i0',
|
||||||
@@ -3348,6 +3415,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'mythic',
|
rarity: 'mythic',
|
||||||
coinbase_height: '0',
|
coinbase_height: '0',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -3405,6 +3473,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -3437,6 +3506,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '567c7605439dfdc3a289d13fd2132237852f4a56e784b9364ba94499d5f9baf1i0',
|
inscription_id: '567c7605439dfdc3a289d13fd2132237852f4a56e784b9364ba94499d5f9baf1i0',
|
||||||
@@ -3469,6 +3539,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '0',
|
coinbase_height: '0',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
@@ -3526,6 +3597,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
inscription_id: '38c46a8bf7ec90bc7f6b797e7dc84baa97f4e5fd4286b92fe1b50176d03b18dci0',
|
||||||
@@ -3558,6 +3630,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: '567c7605439dfdc3a289d13fd2132237852f4a56e784b9364ba94499d5f9baf1i0',
|
inscription_id: '567c7605439dfdc3a289d13fd2132237852f4a56e784b9364ba94499d5f9baf1i0',
|
||||||
@@ -3590,6 +3663,7 @@ describe('/inscriptions', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '0',
|
coinbase_height: '0',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const response1 = await fastify.inject({
|
const response1 = await fastify.inject({
|
||||||
|
|||||||
@@ -84,6 +84,7 @@ describe('/sats', () => {
|
|||||||
prev_offset: null,
|
prev_offset: null,
|
||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
const response = await fastify.inject({
|
const response = await fastify.inject({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
@@ -127,6 +128,7 @@ describe('/sats', () => {
|
|||||||
prev_offset: null,
|
prev_offset: null,
|
||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
content: '0x48656C6C6F',
|
content: '0x48656C6C6F',
|
||||||
@@ -160,6 +162,7 @@ describe('/sats', () => {
|
|||||||
prev_offset: null,
|
prev_offset: null,
|
||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
// Simulate the inscription transfer for -7
|
// Simulate the inscription transfer for -7
|
||||||
await inscriptionTransfer(db.sql, {
|
await inscriptionTransfer(db.sql, {
|
||||||
@@ -219,6 +222,7 @@ describe('/sats', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
address: 'bc1p3cyx5e2hgh53w7kpxcvm8s4kkega9gv5wfw7c4qxsvxl0u8x834qf0u2td',
|
address: 'bc1p3cyx5e2hgh53w7kpxcvm8s4kkega9gv5wfw7c4qxsvxl0u8x834qf0u2td',
|
||||||
@@ -250,6 +254,7 @@ describe('/sats', () => {
|
|||||||
metadata: null,
|
metadata: null,
|
||||||
meta_protocol: null,
|
meta_protocol: null,
|
||||||
delegate: null,
|
delegate: null,
|
||||||
|
charms: [],
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|||||||
@@ -77,6 +77,7 @@ describe('Status', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await inscriptionReveal(db.sql, {
|
await inscriptionReveal(db.sql, {
|
||||||
inscription_id: 'a98d7055a77fa0b96cc31e30bb8bacf777382d1b67f1b7eca6f2014e961591c8i0',
|
inscription_id: 'a98d7055a77fa0b96cc31e30bb8bacf777382d1b67f1b7eca6f2014e961591c8i0',
|
||||||
@@ -109,6 +110,7 @@ describe('Status', () => {
|
|||||||
transfer_type: 'transferred',
|
transfer_type: 'transferred',
|
||||||
rarity: 'common',
|
rarity: 'common',
|
||||||
coinbase_height: '650000',
|
coinbase_height: '650000',
|
||||||
|
charms: 0,
|
||||||
});
|
});
|
||||||
await updateTestChainTip(db.sql, 791975);
|
await updateTestChainTip(db.sql, 791975);
|
||||||
|
|
||||||
|
|||||||
@@ -77,6 +77,7 @@ type TestOrdinalsInscriptionsRow = {
|
|||||||
metaprotocol: string | null;
|
metaprotocol: string | null;
|
||||||
delegate: string | null;
|
delegate: string | null;
|
||||||
timestamp: number;
|
timestamp: number;
|
||||||
|
charms: number;
|
||||||
};
|
};
|
||||||
async function insertTestInscription(sql: PgSqlClient, row: TestOrdinalsInscriptionsRow) {
|
async function insertTestInscription(sql: PgSqlClient, row: TestOrdinalsInscriptionsRow) {
|
||||||
await sql`INSERT INTO inscriptions ${sql(row)}`;
|
await sql`INSERT INTO inscriptions ${sql(row)}`;
|
||||||
@@ -230,6 +231,7 @@ export async function inscriptionReveal(sql: PgSqlClient, reveal: TestOrdinalsIn
|
|||||||
metaprotocol: reveal.metaprotocol,
|
metaprotocol: reveal.metaprotocol,
|
||||||
delegate: reveal.delegate,
|
delegate: reveal.delegate,
|
||||||
timestamp: reveal.timestamp,
|
timestamp: reveal.timestamp,
|
||||||
|
charms: reveal.charms,
|
||||||
});
|
});
|
||||||
await insertTestLocation(sql, {
|
await insertTestLocation(sql, {
|
||||||
ordinal_number: reveal.ordinal_number,
|
ordinal_number: reveal.ordinal_number,
|
||||||
|
|||||||
Reference in New Issue
Block a user