Skip to content

Commit

Permalink
typos fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bearni95 committed Apr 25, 2024
1 parent 3c8b4f4 commit 78057a4
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion packages/taikoon-ui/src/app.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const recommentProcessingFee = {
export const recommendedProcessingFee = {
ethGasLimit: BigInt(900_000),
erc20NotDeployedGasLimit: BigInt(3_100_000),
erc20DeployedGasLimit: BigInt(1_100_000),
Expand Down
3 changes: 1 addition & 2 deletions packages/taikoon-ui/src/content/loremIpsum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ wife. That was, of course, absurd, but certainly there was
still something not entirely hobbitlike about them, and
once in a while members of the Took-clan would go and
have adventures. They discreetly disappeared, and the
family hushed it up; but the fact remained that the Tooks
were not as respectable as the Bagginses, though they
family hushed it up; but the fact remained that the were not as respectable as the Bagginses, though they
were undoubtedly richer.
Not that Belladonna Took ever had any adventures
after she became Mrs. Bungo Baggins. Bungo, that was
Expand Down
10 changes: 6 additions & 4 deletions packages/taikoon-ui/src/generated/abi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,9 @@ export const taikoonTokenAbi = [
},
{
type: 'error',
inputs: [{ name: 'implementation', internalType: 'address', type: 'address' }],
inputs: [
{ name: 'implementation', internalType: 'address', type: 'address' },
],
name: 'ERC1967InvalidImplementation',
},
{ type: 'error', inputs: [], name: 'ERC1967NonPayable' },
Expand Down Expand Up @@ -537,7 +539,7 @@ export const taikoonTokenAbi = [
inputs: [{ name: 'slot', internalType: 'bytes32', type: 'bytes32' }],
name: 'UUPSUnsupportedProxiableUUID',
},
] as const;
] as const

/**
* - [__View Contract on Holesky Etherscan__](https://holesky.etherscan.io/address/0x816AF2D81a00fB7D4677aD8ffe232B36504A9c83)
Expand All @@ -546,7 +548,7 @@ export const taikoonTokenAbi = [
export const taikoonTokenAddress = {
17000: '0x816AF2D81a00fB7D4677aD8ffe232B36504A9c83',
31337: '0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9',
} as const;
} as const

/**
* - [__View Contract on Holesky Etherscan__](https://holesky.etherscan.io/address/0x816AF2D81a00fB7D4677aD8ffe232B36504A9c83)
Expand All @@ -555,4 +557,4 @@ export const taikoonTokenAddress = {
export const taikoonTokenConfig = {
address: taikoonTokenAddress,
abi: taikoonTokenAbi,
} as const;
} as const
4 changes: 2 additions & 2 deletions packages/taikoon-ui/src/lib/util/logger.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import debug from 'debug';

export function getLogger(namesapce: string) {
return debug(`nft-lab:${namesapce}`);
export function getLogger(namespace: string) {
return debug(`nft-lab:${namespace}`);
}
2 changes: 1 addition & 1 deletion packages/taikoon-ui/src/stores/pendingTransactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const pendingTransactions = {

/**
* Custom method, which will help us add a new transaction to the store
* and get it removed onces the transaction is mined.
* and get it removed the transaction is mined.
*/
add: (hash: Hex, chainId: number) => {
const deferred = new Deferred<TransactionReceipt>();
Expand Down
2 changes: 1 addition & 1 deletion packages/taikoon-ui/src/styles/override.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ input[type='number'] {
}

/**
* Overrides the dafault color for the overlay component used
* Overrides the default color for the overlay component used
* in DaisyUI's drawer. Unfortunately cannot be done via variables
*/
.drawer-toggle:checked ~ .drawer-side > .drawer-overlay {
Expand Down
2 changes: 1 addition & 1 deletion packages/taikoon-ui/static/fonts/clash-grotesk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ font-family: ClashGrotesk-Variable;

## 6. (Optional)

Use `font-variation-settings` rule to controll axes of variable fonts:
Use `font-variation-settings` rule to controlaxes of variable fonts:
wght 700.0

Available axes:
Expand Down

0 comments on commit 78057a4

Please sign in to comment.