Skip to content

Commit

Permalink
feat: add more attestor chain id options (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
scolear authored Jul 17, 2024
1 parent 67a363f commit 6a2bbda
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "dlc-btc-lib",
"version": "1.0.19",
"version": "1.0.21",
"description": "This library provides a comprehensive set of interfaces and functions for minting dlcBTC tokens on supported blockchains.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
7 changes: 6 additions & 1 deletion src/models/attestor.models.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
export type AttestorChainID = 'evm-arbitrum' | 'evm-arbsepolia' | 'evm-localhost';
export type AttestorChainID =
| 'evm-arbitrum'
| 'evm-arbsepolia'
| 'evm-localhost'
| 'evm-hardhat-arb'
| 'evm-hardhat-eth';

export interface FundingTXAttestorInfo {
vaultUUID: string;
Expand Down

0 comments on commit 6a2bbda

Please sign in to comment.