Skip to content

Commit

Permalink
Remove changeset from dependencies, regenerate dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
mmv08 committed Dec 2, 2021
1 parent ed0370b commit 8f8b5bc
Show file tree
Hide file tree
Showing 18 changed files with 32 additions and 26 deletions.
8 changes: 4 additions & 4 deletions packages/safe-apps-provider/dist/provider.js

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

2 changes: 1 addition & 1 deletion packages/safe-apps-provider/dist/provider.js.map

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

4 changes: 2 additions & 2 deletions packages/safe-apps-sdk/dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gnosis.pm/safe-apps-sdk",
"version": "5.0.0-next.1",
"version": "6.1.0",
"description": "SDK developed to integrate third-party apps with Safe-Multisig app.",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
Expand All @@ -22,7 +22,7 @@
"author": "Gnosis (https://gnosis.io)",
"license": "MIT",
"dependencies": {
"@changesets/cli": "^2.16.0",
"@gnosis.pm/safe-react-gateway-sdk": "^2.5.6",
"ethers": "^5.4.7"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/safe-apps-sdk/dist/src/communication/methods.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export declare enum Methods {
sendTransactions = "sendTransactions",
rpcCall = "rpcCall",
getChainInfo = "getChainInfo",
getSafeInfo = "getSafeInfo",
getTxBySafeTxHash = "getTxBySafeTxHash",
getSafeBalances = "getSafeBalances",
Expand Down
1 change: 1 addition & 0 deletions packages/safe-apps-sdk/dist/src/communication/methods.js

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

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

1 change: 0 additions & 1 deletion packages/safe-apps-sdk/dist/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ export * from './sdk';
export * from './types';
export * from './communication/methods';
export * from './communication/messageFormatter';
export { calculateMessageHash } from './safe/signatures';
export { getSDKVersion } from './utils';
4 changes: 1 addition & 3 deletions packages/safe-apps-sdk/dist/src/index.js

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

2 changes: 1 addition & 1 deletion packages/safe-apps-sdk/dist/src/index.js.map

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

4 changes: 3 additions & 1 deletion packages/safe-apps-sdk/dist/src/safe/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import { Communicator, SafeInfo, SafeBalances, GetBalanceParams } from '../types';
import { Communicator, SafeInfo, ChainInfo, SafeBalances, GetBalanceParams } from '../types';
declare class Safe {
private readonly communicator;
constructor(communicator: Communicator);
getChainInfo(): Promise<ChainInfo>;
getInfo(): Promise<SafeInfo>;
experimental_getBalances({ currency }?: GetBalanceParams): Promise<SafeBalances>;
private check1271Signature;
private check1271SignatureBytes;
calculateMessageHash(message: string): string;
isMessageSigned(message: string, signature?: string): Promise<boolean>;
isMessageHashSigned(messageHash: string, signature?: string): Promise<boolean>;
}
Expand Down
9 changes: 8 additions & 1 deletion packages/safe-apps-sdk/dist/src/safe/index.js

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

Loading

0 comments on commit 8f8b5bc

Please sign in to comment.