├── 2case.py ├── README.md └── ordi.py /2case.py: -------------------------------------------------------------------------------- 1 | # here code 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Seekermint-BTC test cases 2 | # daily claim diamonds 3 | # raffles 4 | -------------------------------------------------------------------------------- /ordi.py: -------------------------------------------------------------------------------- 1 | print("ordinals is gem") 2 | --------------------------------------------------------------------------------