├── .github └── workflows │ ├── npm-publish.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── CHANGELOG ├── README.md ├── examples ├── example.ts └── l402.ts ├── package.json ├── src ├── client.ts ├── index.ts ├── inscription │ ├── error.ts │ └── index.ts ├── launchpad │ ├── client.ts │ └── index.ts ├── marketplace.ts ├── marketplaceClient.ts ├── mempool │ ├── client.ts │ └── index.ts ├── satextractor │ ├── client.ts │ └── index.ts ├── satscanner │ ├── client.ts │ └── index.ts ├── tokenpay │ ├── client.ts │ └── index.ts └── types │ ├── index.ts │ ├── launchpad_types.ts │ ├── marketplace_types.ts │ ├── mempool_types.ts │ ├── options.ts │ ├── runes_types.ts │ ├── satextractor_types.ts │ ├── satscanner_types.ts │ ├── tokenpay_types.ts │ └── v1.ts ├── test ├── inscription.js ├── inscription │ ├── createParentChildPSBT.js │ ├── createSpecialSats.js │ ├── getAllocation.js │ └── l402.js ├── launchpad │ ├── confirmPaddingOutputs.js │ ├── createLaunchpad.js │ ├── createLaunchpadOffer.js │ ├── createMarketPlace.js │ ├── getAllocation.js │ ├── getLaunchpadListing.js │ ├── getLaunchpadPSBT.js │ ├── l402.js │ ├── saveLaunchpad.js │ ├── setupPaddingOutputs.js │ └── submitLaunchpadOffer.js ├── marketplace.js ├── marketplace │ ├── confirmDeList.js │ ├── confirmListing.js │ ├── confirmReList.js │ ├── deList.js │ ├── getListing.js │ ├── l402.js │ ├── reListing.js │ └── transferOrdinals.js ├── mempool.js ├── runes.js ├── satextractor.js ├── satscanner.js └── tokenpay │ ├── accountWithdraw.js │ ├── createPaymentPSBT.js │ └── order.js └── tsconfig.json /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/CHANGELOG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/README.md -------------------------------------------------------------------------------- /examples/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/examples/example.ts -------------------------------------------------------------------------------- /examples/l402.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/examples/l402.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/package.json -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/inscription/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/inscription/error.ts -------------------------------------------------------------------------------- /src/inscription/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/inscription/index.ts -------------------------------------------------------------------------------- /src/launchpad/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/launchpad/client.ts -------------------------------------------------------------------------------- /src/launchpad/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/launchpad/index.ts -------------------------------------------------------------------------------- /src/marketplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/marketplace.ts -------------------------------------------------------------------------------- /src/marketplaceClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/marketplaceClient.ts -------------------------------------------------------------------------------- /src/mempool/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/mempool/client.ts -------------------------------------------------------------------------------- /src/mempool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/mempool/index.ts -------------------------------------------------------------------------------- /src/satextractor/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/satextractor/client.ts -------------------------------------------------------------------------------- /src/satextractor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/satextractor/index.ts -------------------------------------------------------------------------------- /src/satscanner/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/satscanner/client.ts -------------------------------------------------------------------------------- /src/satscanner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/satscanner/index.ts -------------------------------------------------------------------------------- /src/tokenpay/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/tokenpay/client.ts -------------------------------------------------------------------------------- /src/tokenpay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/tokenpay/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/launchpad_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/launchpad_types.ts -------------------------------------------------------------------------------- /src/types/marketplace_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/marketplace_types.ts -------------------------------------------------------------------------------- /src/types/mempool_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/mempool_types.ts -------------------------------------------------------------------------------- /src/types/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/options.ts -------------------------------------------------------------------------------- /src/types/runes_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/runes_types.ts -------------------------------------------------------------------------------- /src/types/satextractor_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/satextractor_types.ts -------------------------------------------------------------------------------- /src/types/satscanner_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/satscanner_types.ts -------------------------------------------------------------------------------- /src/types/tokenpay_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/tokenpay_types.ts -------------------------------------------------------------------------------- /src/types/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/src/types/v1.ts -------------------------------------------------------------------------------- /test/inscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/inscription.js -------------------------------------------------------------------------------- /test/inscription/createParentChildPSBT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/inscription/createParentChildPSBT.js -------------------------------------------------------------------------------- /test/inscription/createSpecialSats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/inscription/createSpecialSats.js -------------------------------------------------------------------------------- /test/inscription/getAllocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/inscription/getAllocation.js -------------------------------------------------------------------------------- /test/inscription/l402.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/inscription/l402.js -------------------------------------------------------------------------------- /test/launchpad/confirmPaddingOutputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/confirmPaddingOutputs.js -------------------------------------------------------------------------------- /test/launchpad/createLaunchpad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/createLaunchpad.js -------------------------------------------------------------------------------- /test/launchpad/createLaunchpadOffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/createLaunchpadOffer.js -------------------------------------------------------------------------------- /test/launchpad/createMarketPlace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/createMarketPlace.js -------------------------------------------------------------------------------- /test/launchpad/getAllocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/getAllocation.js -------------------------------------------------------------------------------- /test/launchpad/getLaunchpadListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/getLaunchpadListing.js -------------------------------------------------------------------------------- /test/launchpad/getLaunchpadPSBT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/getLaunchpadPSBT.js -------------------------------------------------------------------------------- /test/launchpad/l402.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/l402.js -------------------------------------------------------------------------------- /test/launchpad/saveLaunchpad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/saveLaunchpad.js -------------------------------------------------------------------------------- /test/launchpad/setupPaddingOutputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/setupPaddingOutputs.js -------------------------------------------------------------------------------- /test/launchpad/submitLaunchpadOffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/launchpad/submitLaunchpadOffer.js -------------------------------------------------------------------------------- /test/marketplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/marketplace.js -------------------------------------------------------------------------------- /test/marketplace/confirmDeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/marketplace/confirmDeList.js -------------------------------------------------------------------------------- /test/marketplace/confirmListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/marketplace/confirmListing.js -------------------------------------------------------------------------------- /test/marketplace/confirmReList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/marketplace/confirmReList.js -------------------------------------------------------------------------------- /test/marketplace/deList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/marketplace/deList.js -------------------------------------------------------------------------------- /test/marketplace/getListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/marketplace/getListing.js -------------------------------------------------------------------------------- /test/marketplace/l402.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/marketplace/l402.js -------------------------------------------------------------------------------- /test/marketplace/reListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/marketplace/reListing.js -------------------------------------------------------------------------------- /test/marketplace/transferOrdinals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/marketplace/transferOrdinals.js -------------------------------------------------------------------------------- /test/mempool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/mempool.js -------------------------------------------------------------------------------- /test/runes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/runes.js -------------------------------------------------------------------------------- /test/satextractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/satextractor.js -------------------------------------------------------------------------------- /test/satscanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/satscanner.js -------------------------------------------------------------------------------- /test/tokenpay/accountWithdraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/tokenpay/accountWithdraw.js -------------------------------------------------------------------------------- /test/tokenpay/createPaymentPSBT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/tokenpay/createPaymentPSBT.js -------------------------------------------------------------------------------- /test/tokenpay/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/test/tokenpay/order.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ordinalsbot/ordinalsbot-node/HEAD/tsconfig.json --------------------------------------------------------------------------------