Skip to content

Commit

Permalink
chore: rename to ibtc
Browse files Browse the repository at this point in the history
  • Loading branch information
scolear committed Feb 12, 2025
1 parent e9b6fb5 commit 4021b6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/functions/ethereum/ethereum-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export function getEthereumContracts(
signer: Wallet | providers.JsonRpcSigner
): DLCEthereumContracts {
const dlcManagerContract = getEthereumContract(ethereumDeploymentPlans, 'DLCManager', signer);
const dlcBTCContract = getEthereumContract(ethereumDeploymentPlans, 'DLCBTC', signer);
const dlcBTCContract = getEthereumContract(ethereumDeploymentPlans, 'IBTC', signer);

return { dlcManagerContract, dlcBTCContract };
}
Expand Down
2 changes: 1 addition & 1 deletion src/models/ethereum-models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ export interface DLCEthereumContracts {
}

export type SupportedNetwork = 'arbitrum' | 'arbitrum-sepolia-testnet' | 'arbitrum-sepolia-devnet';
export type DLCEthereumContractName = 'DLCManager' | 'DLCBTC';
export type DLCEthereumContractName = 'DLCManager' | 'IBTC';
export type DLCSolidityBranchName = 'dev' | 'testnet-rolling';

0 comments on commit 4021b6b

Please sign in to comment.