satnames

0.0.1 • Public • Published

CircleCI

Ordinals Sat Name Finder

This module allows you to derive the satellite name from ordinal satellite numbers. Additionally, it provides the ability to search for specific patterns in UTXOs within a given range.

Table of Contents

Quickstart

node

npm init -y
npm i satnames

index.mjs

import { SatNames } from 'satnames'

const satNames = new SatNames()
satNames.init()
const number = '1953186218210490'
const satName = satNames
    .toSatName( { 'satNumber': number } )
    .getSatName()

console.log( `Check out the sleepiest sat: ${satName}`)

.toSatName( {...} )

Option Description Type Required
satNumber The satellite number for which you want to get the name string true

Examples:

satNames
    .toSatName( { 'satNumber': '123' } )
    .getSatName()
import { SatNames } from 'satnames'

const satNames = new SatNames()
const result = satNames
    .init()
    .toSatName( { 'satNumber': '1953186218210490' } )
    .getSatName()

console.log( 'result', result )

.toSatNumber( {...} )

Option Description Type Required
satName The satellite name for which you want to get the number string true

Examples:

satNames
    .toSatNumber( { 'satNumber': '123' } )
    .getSatNUmber()
import { SatNames } from 'satnames'

const satNames = new SatNames()
const result = satNames
    .init()
    .toSatNumber( { 'satName': 'zzzzzzzzzz' } )
    .getSatNumber()

console.log( 'result', result )

.setSimplePattern( {...} )

Option Description Type Required
pattern The pattern or regular expression to search for string true

With the .setSimplePattern( { 'pattern': 'abc' } ) method, you can easily perform searches. Since the search is performed using a regular expression, you can also input regex patterns like /abc/.

The following example checks whether the "sleepiest" ordinal has been found.

import { SatNames } from 'satnames'

const satNames = new SatNames()
satNames
    .init()
    .setSimplePattern( { 'pattern': 'zzzzzzzzzz' } )

const result = satNames
    .toSatName( { 'satNumber': '1953186218210490' } )
    .getPatternsForSatName()

console.log( 'result', result )

.setCustomPattern( { 'challenges': [ {...} ] )

Overview

Methods The following pattern methods are available:

Method Description Options
inSuccession Search for patterns in succession { 'startsWith' }, { 'endsWith' }
regularExpression Search using regular expressions no options needed

Logic Under expect, you need to specify a logic, and the following cases are available for this purpose. Use value to set the value against which the result is checked.

Case Description
= Check if zeros is equal to value
> Check if zeros is greater than value
>= Check if zeros is greater than or equal to value
< Check if zeros is less than value
<= Check if zeros is less than or equal to value
Default Display an error message if the logic is not recognized

Example

You can add as many challenges as you like using .setCustomPattern( { 'challenges': [ {...} ] }. For this purpose, there are the methods inSuccession with the options startsWith and endsWith, or regularExpression, where no option is needed.

In the following example, a search is performed for names that start with more than 2 'a's at the beginning and end with 2 'a's. The second search looks for names that contain the letter sequence "abcdef" within them.

import { SatNames } from 'satnames'

const satNames = new SatNames()
satNames
    .init()
    .setCustomPattern( { 
        'challenges': [
            {
                'name': 'more a',
                'logic': [
                    {
                        'method': 'inSuccession',
                        'option': 'startsWith',
                        'value': 'a',
                        'expect': {
                            'logic': '>',
                            'value': 2
                        }
                    }
                    ,{
                        'method': 'inSuccession',
                        'option': 'endsWith',
                        'value': 'a',
                        'expect': {
                            'logic': '=',
                            'value': 2
                        }
                    }

                ]
            },
            {
                'name': 'myRegex',
                'logic': [
                    {
                        'method': 'regularExpression',
                        'value': 'abcdef',
                        'expect': {
                            'logic': '=',
                            'value': true
                        }
                    }
                ]
            }
        ] 
    } )

satNames
    .toSatName( { 'satNumber': '1953186218210490' } )
    .getPatternsForSatName()

console.log( 'result', result )

.getPatternsForSatRange( {...} )

Option Description Type Required
from The starting satellite number string true
to The ending satellite number string true
satNames
    .init()
    .setSimplePattern( { 'pattern': 'zzzzzzzzzz' } )
    .getPatternsForSatRange( { 'from': '123', 'to': '134' } )
import { SatNames } from 'satnames'

const satNames = new SatNames()
satNames
    .init()
    .setSimplePattern( { 'pattern': 'zzzzzzzzzz' } )

const results = satNames
    .checkPatternsForSatRange( { 'from': 10, 'to': 130 } )

console.log( 'results', results )

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/a6b8/satNames. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

Limitations

  • Currently in Alpha Stage

Credits

License

The module is available as open source under the terms of the MIT.

Code of Conduct

Everyone interacting in the EasyMina project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

Readme

Keywords

none

Package Sidebar

Install

npm i satnames

Weekly Downloads

2

Version

0.0.1

License

MIT

Unpacked Size

103 kB

Total Files

7

Last publish

Collaborators

  • a6b8