Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync staging to main #239

Merged
merged 13 commits into from
Apr 8, 2024
Prev Previous commit
Next Next commit
chore: bump router sdk
codingki committed Apr 3, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit cb0dd786756b48220b121a6400551c24eee99530
2 changes: 1 addition & 1 deletion chain-registry
40 changes: 20 additions & 20 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
@@ -65,7 +65,7 @@
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/nextjs": "^7.99.0",
"@skip-router/core": "2.0.3",
"@skip-router/core": "2.0.5",
"@solana/spl-token": "^0.4.1",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-wallets": "^0.19.31",

Unchanged files with check annotations Beta

}
return message;
},
fromJSON(object: any): EthAccount {

Check warning on line 54 in src/lib/ethermint/types.ts

GitHub Actions / test

Unexpected any. Specify a different type
const obj = createBaseEthAccount();
if (isSet(object.baseAccount)) obj.baseAccount = BaseAccount.fromJSON(object.baseAccount);
if (isSet(object.codeHash)) obj.codeHash = bytesFromBase64(object.codeHash);
return obj;
},
toJSON(message: EthAccount): unknown {
const obj: any = {};

Check warning on line 61 in src/lib/ethermint/types.ts

GitHub Actions / test

Unexpected any. Specify a different type
message.baseAccount !== undefined &&
(obj.baseAccount = message.baseAccount ? BaseAccount.toJSON(message.baseAccount) : undefined);
message.codeHash !== undefined &&