Coder Social home page Coder Social logo

ordinals-collections's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ordinals-collections's Issues

Edit file

File editing is not clickable.
I cannot click the pencil button.
Why?
Please provide a solution.

smokin sarina

i'm trying - is there no consideration for artists? - i've never used githud before. - bitister was nice enough to provide json files from my listing at ordynals.com --

i'd really like to get these listed, but i just don't understand how to do this.

i just have 2 small collections that I'm trying to list. a 12 piece & a 29 piece

How to add collection to ordinals wallet marketplace with pull request

Hey,

I'm completely new to this technology.

I have created a meta.json and inscription.json for my Ordinal collection but I don't know how to create a pull request to add them to the site.

I would be very grateful if you could advise on how to do the pull request. This would be v much appreciated!

Thank you for all your good work 🙏🙏🙏

Why slug and name only 23 / 21 characters?

Hi,

can you please allow larger slugs and names? I don't know why this limit is so low as slugs and characters are defined in meta.json and shouldn't have any impact on anything if they are even like 64 characters or more.

Problems with pull request

Hi! @MillHaus33 , About 20 hours ago you answered my problem, I had a problem with my pull requester always getting rejected. So, you told me to make a shorter slug, I did, but still my pull request was rejected, help me please, I would be very grateful!!!!
number of my pull request is 1044

Meta.json not reflecting collection image change

Hello,

It appears that the images on ordinalswallet.com are cached and do not get updated if changes to the JSON are made after the original pull request.

For instance, 122 Bitcoin LLaMAZ, the original collection image was not 1:1 and it appeared cut off on the ordinalswallet website, so we updated the collection image inscription in meta.json to reflect a proper 1:1 aspect ratio. It still appears to be cut off using the old image despite having the new JSON file.

Not sure if you run a deep crawl once per week or so to search for such changes or not, just letting you know.

Thanks,

display format

any chance the 'transaction sarina' collection can be displayed in thumbnail format so pictures are not cut off? -- like at ordynals.com, or how the collection looks when I put the OW link in discord... -- thanks
dis1
dis2

updating inscriptions.json fail

how can I update the inscriptions.json?

I want to add inscriptions, but the pull request fails:

`#!/bin/bash -eo pipefail
python -m pytest
============================= test session starts ==============================
platform linux -- Python 3.8.16, pytest-7.2.1, pluggy-1.0.0
rootdir: /home/circleci/project
collected 5 items

tests/test_colllections.py ....F [100%]

=================================== FAILURES ===================================
_______________________________ test_uniqueness ________________________________

def test_uniqueness():
    input_collections = os.listdir(COLLECTIONS)
    print('\n\n')

    # add new collections
    all_inscription_ids = []
    for collection in input_collections:
      with open("{}/{}/inscriptions.json".format(COLLECTIONS, collection), "r") as file:
        inscriptions = json.load(file)
      inscription_ids = []
      for x in inscriptions:
        inscription_ids.append(x.get('id'))
      all_inscription_ids = all_inscription_ids + inscription_ids
      duplicates = len(all_inscription_ids) - len(set(all_inscription_ids))
    assert duplicates == 0

E assert 1 == 0

tests/test_colllections.py:91: AssertionError
----------------------------- Captured stdout call -----------------------------

=========================== short test summary info ============================
FAILED tests/test_colllections.py::test_uniqueness - assert 1 == 0
========================= 1 failed, 4 passed in 2.42s ==========================

Exited with code exit status 1
CircleCI received exit code 1`

add smokin sarina

icon
trying very hard to figure out how to get the json files loaded into a pull request.

this is a really difficult submission method for someone not familiar with github -- any help would be appreciated

Display Blitkin collection as <object> instead of <img> to correctly display

Our SVGs have embedded code to make them dynamic. This allows us to do interesting things like modify them on the fly. Unfortunately, this means they can't be rendered via <img>. I am requesting they be displayed as objects and have confirmed this works. See below for requested changes.

This is what an item in our collection currently displays as:
image

The code currently used to display the image is

<img class="page_content__HT_T4 InscriptionContent_image__QTQgG" src="https://turbo.ordinalswallet.com/inscription/content/b82fd9c1118c753a14616635804ff53743ee9512c9fd74817f19522cce164a45i0">

If modified to be

<object type="image/svg+xml" class="page_content__HT_T4 InscriptionContent_image__QTQgG" data="https://turbo.ordinalswallet.com/inscription/content/b82fd9c1118c753a14616635804ff53743ee9512c9fd74817f19522cce164a45i0" t=""></object>

then the item displays as intended

image

cannot update the already existing inscriptions.json

I added

  • 13 inscriptions to the inscriptions.json
  • trait "Clothing" to all inscriptions

Pull Request doesn't go through
Even tried a fresh new fork, but still it fails the circlecl with this error.

Anyone have a clue?

`#!/bin/bash -eo pipefail
python -m pytest
============================= test session starts ==============================
platform linux -- Python 3.8.16, pytest-7.2.1, pluggy-1.0.0
rootdir: /home/circleci/project
collected 5 items

tests/test_colllections.py ....F [100%]

=================================== FAILURES ===================================
_______________________________ test_uniqueness ________________________________

def test_uniqueness():
    input_collections = os.listdir(COLLECTIONS)
    print('\n\n')

    # add new collections
    all_inscription_ids = []
    for collection in input_collections:
      with open("{}/{}/inscriptions.json".format(COLLECTIONS, collection), "r") as file:
        inscriptions = json.load(file)
      inscription_ids = []
      for x in inscriptions:
        inscription_ids.append(x.get('id'))
      all_inscription_ids = all_inscription_ids + inscription_ids
      duplicates = len(all_inscription_ids) - len(set(all_inscription_ids))
    assert duplicates == 0

E assert 1 == 0

tests/test_colllections.py:91: AssertionError
----------------------------- Captured stdout call -----------------------------

=========================== short test summary info ============================
FAILED tests/test_colllections.py::test_uniqueness - assert 1 == 0
========================= 1 failed, 4 passed in 4.15s ==========================

Exited with code exit status 1
CircleCI received exit code 1`

Issue with Pull request

I am receiving this error "FAILED tests/test_colllections.py::test_home_structure - AssertionError: Top level changes are not allowed assert False"

Support for Artists

Would love to see support for "date", and "description" fields added (outside of arbitrary attributes).

As a photographer, would also be happy to see a "location" field added.

This might help create a more inclusive environment for non-generative artists to contribute to the ordinals ecosystem.

  • with love

 & Outputs Details bc1qxx8rlz259ksqydfrhd4uyd3raefwlct6nk2eej ‎0.00080000 BTCWitness 3045022100827e16cadba6e05172205d093b94e4bcd282ff5f15c5734a6d5d02898a8a14cc02204725333f07fee7a2d71f651c8854b3391b6aa1f855614c6933cdfbff404e64d701 029f19328657c01909aaa199b7385d2a488fcb206ddf5dd9c11369e9ef4638d050 nSequence0xfffffffePrevious output scriptOP_0 OP_PUSHBYTES_20 318e3f89542da0023523bb6bc23623ee52efe17a Previous output typeV0_P2WPKH bc1pfr3xyh0ackhly578rwtl54zvmf7a5jjs4td36l2q62er8cvxqx3qpz2puj ‎0.00042729 BTCScriptPubKey (ASM)OP_PUSHNUM_1 OP_PUSHBYTES_32 48e2625dfdc5aff253c71b97fa544cda7dda4a50aadb1d7d40d2b233e18601a2 ScriptPubKey (HEX)512048e2625dfdc5aff253c71b97fa544cda7dda4a50aadb1d7d40d2b233e18601a2TypeV1_P2TRbc1qxx8rlz259ksqydfrhd4uyd3raefwlct6nk2eej ‎0.00034517 BTCScriptPubKey (ASM)OP_0 OP_PUSHBYTES_20 318e3f89542da0023523bb6bc23623ee52efe17a ScriptPubKey (HEX)0014318e3f89542da0023523bb6bc23623ee52efe17aTypeV0_P2WPKH ‎0.00077246 BTC

How to pull request for a collection?

I have the inscription.json and the meta.json file ready but i am not sure now how to pull a request for the collection listing now.
Project Name: Shadow Ledger
Collection Name: Fiat Printers
10 Total Inscriptions.

I have problems with pull request

I need help. I downloaded literally everything, both files, no errors in them, but my request was still denied. Maybe I'm doing something wrong, which is why my request is rejected 15 seconds after creation.

Bitcoin Ghosts

Hi - I would like to add my collection, but I need a little hand holding to upload the 2 json files correctly.
I think the format is good, but I got errors because no directory I was trying to put it in....
Please let me know how to proceed

thank you

How to add collection to ordinals wallet marketplace

I need help. I downloaded literally everything, both files, no errors in them, but my request was still denied. Maybe I'm doing something wrong, which is why my request is rejected 15 seconds after creation. My pull request number is 797. II would be very grateful if you could advise on how to do the pull request. This would be v much appreciated! 🙏🙏🙏

Issue with "Slug" and errors with inscription.json

Good Afternoon,

Please see PR; #1147

I am receiving 3 errors, one regarding the "slug" value and 2 regarding the inscriptions.json

Can someone let me know what I am doing incorrectly, ive changed the slug value to what is being asked for numerous times and still am confronted with an error.

As for the inscriptions.json error, any clarity as to what is triggering it would be awesome. Please let me know if our .json format needs to be adjusted and any scripting solutions the team reccomends.

Eagerly excited to get our collection listed, please do get back to me as soon as possible.

==============================FAILED TESTS==================================
FAILED tests/test_colllections.py::test_meta - AssertionError: Slug does not match directory name
assert 'bitcoin-orbs' == 'Bitcoin-Orbs'

  • Bitcoin-Orbs
    ? ^ ^
  • bitcoin-orbs
    ? ^ ^
    FAILED tests/test_colllections.py::test_inscriptions - TypeError: object of type 'NoneType' has no len()
    FAILED tests/test_colllections.py::test_uniqueness - assert 998 == 0
    ========================= 3 failed, 2 passed in 0.26s ==========================

Exited with code exit status 1

CircleCI received exit code 1

PR issue

Hello I did a pull request but i got a Icircle check request for few days. I'm not sure what does it mean.

Is there something wrong in my json files? I checked several times but can't figure out.

Could you help please? Thanks!

Any other method to get json files to OrdinalsWallet?

I tried to do a pull request to add files for smokin sarina, but I don't understand if they were accepted or rejected. It said the files were merged, but they don't appear in the collections list.

I uploaded files to the branch for a second collection now.

The flower Faces

The flower faces is a new and uniqe art provided by me. I create a 42 nft's and each nft is different and uniqe.
I wants to launch my collection on Ordinals supported btc chain...
Opensea(theflowerface)Screenshot_2023-03-07-22-31-38-66_40deb401b9ffe8e1df2f1cc5ba480b12.jpg

Screenshot_2023-03-07-22-31-21-48_40deb401b9ffe8e1df2f1cc5ba480b12.jpg

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.