Skip to content

Commit

Permalink
Merge pull request #62 from scio-labs/changeset-release/main
Browse files Browse the repository at this point in the history
chore(changeset): Bump version & Update docs
  • Loading branch information
wottpal authored Feb 5, 2024
2 parents c23d3f1 + 710d5dd commit 87f9ac6
Show file tree
Hide file tree
Showing 104 changed files with 241 additions and 174 deletions.
5 changes: 0 additions & 5 deletions .changeset/real-bats-enjoy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-coats-invent.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-keys-flash.md

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @scio-labs/use-inkathon

## 0.8.0

### Minor Changes

- [#59](https://github.com/scio-labs/use-inkathon/pull/59) [`7865a62`](https://github.com/scio-labs/use-inkathon/commit/7865a623c0df66be91881a8c7a4b178448baa7c0) Thanks [@peetzweg](https://github.com/peetzweg)! - throws Error when trying to access unavailable contract deployment

- [#60](https://github.com/scio-labs/use-inkathon/pull/60) [`2e23a13`](https://github.com/scio-labs/use-inkathon/commit/2e23a13974e80a54e91a315e8d21b404610d6b2c) Thanks [@peetzweg](https://github.com/peetzweg)! - marks `rococo` chains data as deprecated and should be replaced with `contracts`, as `rococo` is the testnet relay chain not the smart contracts chain users interact with

### Patch Changes

- [#61](https://github.com/scio-labs/use-inkathon/pull/61) [`1c4abe8`](https://github.com/scio-labs/use-inkathon/commit/1c4abe87503b13e241c2c44342ab445761caf546) Thanks [@wottpal](https://github.com/wottpal)! - Add ternoa network (mainnet & testnet)

## 0.7.0

### Minor Changes
Expand Down
7 changes: 7 additions & 0 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
--dark-hl-10: #4FC1FF;
--light-hl-11: #000000FF;
--dark-hl-11: #D4D4D4;
--light-hl-12: #800000;
--dark-hl-12: #569CD6;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}
Expand All @@ -40,6 +42,7 @@
--hl-9: var(--light-hl-9);
--hl-10: var(--light-hl-10);
--hl-11: var(--light-hl-11);
--hl-12: var(--light-hl-12);
--code-background: var(--light-code-background);
} }

Expand All @@ -56,6 +59,7 @@
--hl-9: var(--dark-hl-9);
--hl-10: var(--dark-hl-10);
--hl-11: var(--dark-hl-11);
--hl-12: var(--dark-hl-12);
--code-background: var(--dark-code-background);
} }

Expand All @@ -72,6 +76,7 @@
--hl-9: var(--light-hl-9);
--hl-10: var(--light-hl-10);
--hl-11: var(--light-hl-11);
--hl-12: var(--light-hl-12);
--code-background: var(--light-code-background);
}

Expand All @@ -88,6 +93,7 @@
--hl-9: var(--dark-hl-9);
--hl-10: var(--dark-hl-10);
--hl-11: var(--dark-hl-11);
--hl-12: var(--dark-hl-12);
--code-background: var(--dark-code-background);
}

Expand All @@ -103,4 +109,5 @@
.hl-9 { color: var(--hl-9); }
.hl-10 { color: var(--hl-10); }
.hl-11 { color: var(--hl-11); }
.hl-12 { color: var(--hl-12); }
pre, code { background: var(--code-background); }
4 changes: 2 additions & 2 deletions docs/assets/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/navigation.js

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

2 changes: 1 addition & 1 deletion docs/assets/search.js

Large diffs are not rendered by default.

61 changes: 46 additions & 15 deletions docs/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
--light-color-text-aside: #6e6e6e;
--light-color-link: #1f70c2;

--light-color-ts-keyword: #056bd6;
--light-color-ts-project: #b111c9;
--light-color-ts-module: var(--light-color-ts-project);
--light-color-ts-namespace: var(--light-color-ts-project);
Expand All @@ -28,7 +29,7 @@
--light-color-ts-constructor-signature: var(--light-color-ts-constructor);
--light-color-ts-parameter: var(--light-color-ts-variable);
/* type literal not included as links will never be generated to it */
--light-color-ts-type-parameter: var(--light-color-ts-type-alias);
--light-color-ts-type-parameter: #a55c0e;
--light-color-ts-accessor: var(--light-color-ts-property);
--light-color-ts-get-signature: var(--light-color-ts-accessor);
--light-color-ts-set-signature: var(--light-color-ts-accessor);
Expand All @@ -50,6 +51,7 @@
--dark-color-text-aside: #dddddd;
--dark-color-link: #00aff4;

--dark-color-ts-keyword: #3399ff;
--dark-color-ts-project: #e358ff;
--dark-color-ts-module: var(--dark-color-ts-project);
--dark-color-ts-namespace: var(--dark-color-ts-project);
Expand All @@ -67,7 +69,7 @@
--dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
--dark-color-ts-parameter: var(--dark-color-ts-variable);
/* type literal not included as links will never be generated to it */
--dark-color-ts-type-parameter: var(--dark-color-ts-type-alias);
--dark-color-ts-type-parameter: #e07d13;
--dark-color-ts-accessor: var(--dark-color-ts-property);
--dark-color-ts-get-signature: var(--dark-color-ts-accessor);
--dark-color-ts-set-signature: var(--dark-color-ts-accessor);
Expand All @@ -91,6 +93,7 @@
--color-text-aside: var(--light-color-text-aside);
--color-link: var(--light-color-link);

--color-ts-keyword: var(--light-color-ts-keyword);
--color-ts-module: var(--light-color-ts-module);
--color-ts-namespace: var(--light-color-ts-namespace);
--color-ts-enum: var(--light-color-ts-enum);
Expand Down Expand Up @@ -132,6 +135,7 @@
--color-text-aside: var(--dark-color-text-aside);
--color-link: var(--dark-color-link);

--color-ts-keyword: var(--dark-color-ts-keyword);
--color-ts-module: var(--dark-color-ts-module);
--color-ts-namespace: var(--dark-color-ts-namespace);
--color-ts-enum: var(--dark-color-ts-enum);
Expand Down Expand Up @@ -180,6 +184,7 @@ body {
--color-text-aside: var(--light-color-text-aside);
--color-link: var(--light-color-link);

--color-ts-keyword: var(--light-color-ts-keyword);
--color-ts-module: var(--light-color-ts-module);
--color-ts-namespace: var(--light-color-ts-namespace);
--color-ts-enum: var(--light-color-ts-enum);
Expand Down Expand Up @@ -219,6 +224,7 @@ body {
--color-text-aside: var(--dark-color-text-aside);
--color-link: var(--dark-color-link);

--color-ts-keyword: var(--dark-color-ts-keyword);
--color-ts-module: var(--dark-color-ts-module);
--color-ts-namespace: var(--dark-color-ts-namespace);
--color-ts-enum: var(--dark-color-ts-enum);
Expand Down Expand Up @@ -260,12 +266,12 @@ h6 {
line-height: 1.2;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
h1 > a:not(.link),
h2 > a:not(.link),
h3 > a:not(.link),
h4 > a:not(.link),
h5 > a:not(.link),
h6 > a:not(.link) {
text-decoration: none;
color: var(--color-text);
}
Expand Down Expand Up @@ -643,6 +649,28 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
font-weight: bold;
}

.tsd-full-hierarchy:not(:last-child) {
margin-bottom: 1em;
padding-bottom: 1em;
border-bottom: 1px solid var(--color-accent);
}
.tsd-full-hierarchy,
.tsd-full-hierarchy ul {
list-style: none;
margin: 0;
padding: 0;
}
.tsd-full-hierarchy ul {
padding-left: 1.5rem;
}
.tsd-full-hierarchy a {
padding: 0.25rem 0 !important;
font-size: 1rem;
display: inline-flex;
align-items: center;
color: var(--color-text);
}

.tsd-panel-group.tsd-index-group {
margin-bottom: 0;
}
Expand Down Expand Up @@ -708,12 +736,15 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
}
.tsd-navigation > a,
.tsd-navigation .tsd-accordion-summary {
width: calc(100% - 0.5rem);
width: calc(100% - 0.25rem);
display: flex;
align-items: center;
}
.tsd-navigation a,
.tsd-navigation summary > span,
.tsd-page-navigation a {
display: inline-flex;
display: flex;
width: calc(100% - 0.25rem);
align-items: center;
padding: 0.25rem;
color: var(--color-text);
Expand Down Expand Up @@ -753,11 +784,6 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
margin-left: -1.5rem;
}

.tsd-nested-navigation > li > a,
.tsd-nested-navigation > li > span {
width: calc(100% - 1.75rem - 0.5rem);
}

.tsd-page-navigation ul {
padding-left: 1.75rem;
}
Expand Down Expand Up @@ -984,6 +1010,11 @@ a.tsd-index-link {
overflow-x: auto;
}

.tsd-signature-keyword {
color: var(--color-ts-keyword);
font-weight: normal;
}

.tsd-signature-symbol {
color: var(--color-text-aside);
font-weight: normal;
Expand Down
4 changes: 2 additions & 2 deletions docs/enums/AssetType.html

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions docs/enums/SubstrateExplorer.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/enums/SubstrateWalletPlatform.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/enums/UseInkathonErrorCode.html

Large diffs are not rendered by default.

26 changes: 25 additions & 1 deletion docs/functions/UseInkathonProvider.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/accountArraysAreEqual.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/accountsAreEqual.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/checkIfBalanceSufficient.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/contractCallDryRun.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/contractQuery.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/functions/contractTx.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/decodeOutput.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/deployContract.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/enableWallet.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/formatBalance.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/getAbiMessage.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/getBalance.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/getDeployment.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/getDeploymentContract.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/functions/getExtrinsicErrorMessage.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/getGasLimit.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/getMaxGasLimit.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/functions/getNightlyConnectAdapter.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/getPSP22Balances.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/getSubstrateChain.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/getSubstrateWallet.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/functions/getWebsiteIcon.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/initPolkadotJs.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/functions/isWalletInstalled.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/parsePSP22Balance.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/registerDeployment.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/registerDeployments.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/transferBalance.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/transferFullBalance.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/unwrapResultOrDefault.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/unwrapResultOrError.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/useBalance.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/useContract.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/useInkathon.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/usePSP22Balances.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/useRegisteredContract.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/useRegisteredTypedContract.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/watchBalance.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/functions/watchPSP22Balances.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html

Large diffs are not rendered by default.

Loading

0 comments on commit 87f9ac6

Please sign in to comment.