Skip to content

Commit

Permalink
chore: mimimi #2
Browse files Browse the repository at this point in the history
  • Loading branch information
ohager committed Jun 29, 2022
1 parent a310bea commit 4997967
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.2.2

### Hotfix
- Distribution Transaction as Sender does not break anymore


## 1.2.1

### Bugfixes
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "signum-xt-wallet",
"version": "1.2.1",
"version": "1.2.2",
"description": "Cryptocurrency wallet for the green Signum 🍀 blockchain as an extension for your browser.",
"private": true,
"scripts": {
Expand Down Expand Up @@ -30,10 +30,10 @@
"@dicebear/avatars-jdenticon-sprites": "4.2.5",
"@popperjs/core": "2.4.4",
"@serh11p/jest-webextension-mock": "4.0.0",
"@signumjs/core": "^1.0.0-rc.19",
"@signumjs/crypto": "^1.0.0-rc.19",
"@signumjs/http": "^1.0.0-rc.19",
"@signumjs/util": "^1.0.0-rc.19",
"@signumjs/core": "^1.0.0-rc.20",
"@signumjs/crypto": "^1.0.0-rc.20",
"@signumjs/http": "^1.0.0-rc.20",
"@signumjs/util": "^1.0.0-rc.20",
"@taquito/rpc": "11.0.2",
"@taquito/signer": "11.0.2",
"@taquito/taquito": "11.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/app/templates/SignumSendForm/MessageForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const MessageForm = React.forwardRef(({ onChange, showEncrypted, mode }:
isValid: formState.isValid,
isEncrypted: isEncrypted && showEncrypted
});
}, [isEncrypted, isBinary, message, formState.isValid, onChange, showEncrypted]);
}, [isEncrypted, isHexadecimalMessage, isBinary, message, formState.isValid, onChange, showEncrypted]);

useEffect(() => {
triggerValidation(['message']);
Expand Down
4 changes: 3 additions & 1 deletion src/lib/temple/assets/tokenStandard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ export async function detectTokenStandard(
): Promise<TokenStandard | null> {
const { entrypoints } =
typeof contract === 'string'
? await retry(() => tezos.rpc.getEntrypoints(contract), RETRY_PARAMS)
? // @ts-ignore
await retry(() => tezos.rpc.getEntrypoints(contract), RETRY_PARAMS)
: contract.entrypoints;

switch (true) {
Expand Down Expand Up @@ -57,6 +58,7 @@ export async function assertGetBalance(
.balance_of([{ owner: STUB_TEZOS_ADDRESS, token_id: fa2TokenId }])
.read((tezos as any).lambdaContract)
: contract.views.getBalance(STUB_TEZOS_ADDRESS).read((tezos as any).lambdaContract),
// @ts-ignore
RETRY_PARAMS
);
} catch (err: any) {
Expand Down

0 comments on commit 4997967

Please sign in to comment.