Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Allow inscriptions on Testnet #14

Merged
merged 2 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"sats-connect": "^1.1.1",
"sats-connect": "^1.1.1-d6204de",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

once the sats-connect pr secretkeylabs/sats-connect#40 gets merged in we should update the version number of the sats-connect
@victorkirov and without the ^ carrot

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

caret carat carrot 😂

Copy link
Member Author

@victorkirov victorkirov Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😂 🥕

"typescript": "^4.9.5"
},
"scripts": {
Expand Down
9 changes: 0 additions & 9 deletions src/components/createFileInscription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,6 @@ const CreateBinaryInscription = ({ network, capabilities }: Props) => {
reader.readAsDataURL(selectedFile);
};

if (network !== BitcoinNetworkType.Mainnet) {
return (
<div className="container">
<h3>Create file inscription</h3>
<b>This is only available in Mainnet</b>
</div>
);
}

if (!capabilities.has("createInscription")) {
return (
<div className="container">
Expand Down
9 changes: 0 additions & 9 deletions src/components/createTextInscription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,6 @@ const CreateTextInscription = ({ network, capabilities }: Props) => {
}
};

if (network !== BitcoinNetworkType.Mainnet) {
return (
<div className="container">
<h3>Create text inscription</h3>
<b>This is only available in Mainnet</b>
</div>
);
}

if (!capabilities.has("createInscription")) {
return (
<div className="container">
Expand Down