@tomo-inc/tomo-wallet-provider
v1.2.0
Published
## Chain ```typescript type TomoChain = { network: string backendUrls?: { rpcRrl?: string // only BTC mempoolUrl?: string inscriptionUrl?: string } } ``` ### inscriptionUrl `GET ${inscriptionUrl}/openapi/bitcoin/inscriptions`
Readme
tomo-wallet-provider
Chain
type TomoChain = {
network: string
backendUrls?: {
rpcRrl?: string
// only BTC
mempoolUrl?: string
inscriptionUrl?: string
}
}inscriptionUrl
GET ${inscriptionUrl}/openapi/bitcoin/inscriptions
request params
{
address: string
networkType: "MAINNET" | "SIGNET" | "TESTNET"
cursor?: number
size?: number
}response
{
list: {
output: string
inscriptionId: string
address: string
offset: number
outputValue: number
location: string
contentType: string
contentLength: number
inscriptionNumber: number
timestamp: number
genesisTransaction: string
}[]
total: number
}Release process
- Update the
versionfield inpackage.json. - Commit and push the change to the
mainbranch. - Create and push a git tag:
git tag vX.Y.Z
git push origin vX.Y.Z- GitHub Actions will run the CI workflow and:
- for tags like
vX.Y.Z, publish@tomo-inc/tomo-wallet-provideras a stable release - for tags like
vX.Y.Z-beta.N, publish it as a prerelease with the corresponding npm dist-tag.
- for tags like
