@safe-global/api-kit 2.5.8-alpha.0 → 2.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/SafeApiKit.d.ts +1 -2
- package/dist/src/SafeApiKit.js +804 -0
- package/dist/src/SafeApiKit.js.map +1 -0
- package/dist/src/index.d.ts +0 -1
- package/dist/src/index.js +23 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/types/safeTransactionServiceTypes.d.ts +4 -2
- package/dist/src/types/safeTransactionServiceTypes.js +3 -0
- package/dist/src/types/safeTransactionServiceTypes.js.map +1 -0
- package/dist/src/utils/config.d.ts +0 -1
- package/dist/src/utils/config.js +25 -0
- package/dist/src/utils/config.js.map +1 -0
- package/dist/src/utils/constants.d.ts +0 -1
- package/dist/src/utils/constants.js +5 -0
- package/dist/src/utils/constants.js.map +1 -0
- package/dist/src/utils/httpRequests.d.ts +0 -1
- package/dist/src/utils/httpRequests.js +59 -0
- package/dist/src/utils/httpRequests.js.map +1 -0
- package/dist/src/utils/index.d.ts +0 -1
- package/dist/src/utils/index.js +7 -0
- package/dist/src/utils/index.js.map +1 -0
- package/dist/src/utils/safeOperation.d.ts +0 -1
- package/dist/src/utils/safeOperation.js +19 -0
- package/dist/src/utils/safeOperation.js.map +1 -0
- package/dist/src/utils/signDelegate.d.ts +0 -1
- package/dist/src/utils/signDelegate.js +25 -0
- package/dist/src/utils/signDelegate.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +19 -28
- package/dist/cjs/index.cjs +0 -961
- package/dist/esm/index.mjs +0 -930
- package/dist/src/SafeApiKit.d.ts.map +0 -1
- package/dist/src/index.d.ts.map +0 -1
- package/dist/src/types/safeTransactionServiceTypes.d.ts.map +0 -1
- package/dist/src/utils/config.d.ts.map +0 -1
- package/dist/src/utils/constants.d.ts.map +0 -1
- package/dist/src/utils/httpRequests.d.ts.map +0 -1
- package/dist/src/utils/index.d.ts.map +0 -1
- package/dist/src/utils/safeOperation.d.ts.map +0 -1
- package/dist/src/utils/signDelegate.d.ts.map +0 -1
package/dist/src/SafeApiKit.d.ts
CHANGED
|
@@ -224,7 +224,7 @@ declare class SafeApiKit {
|
|
|
224
224
|
* @throws "Invalid data"
|
|
225
225
|
* @throws "Invalid ethereum address"
|
|
226
226
|
*/
|
|
227
|
-
getNextNonce(safeAddress: string): Promise<
|
|
227
|
+
getNextNonce(safeAddress: string): Promise<string>;
|
|
228
228
|
/**
|
|
229
229
|
* Returns the list of all the ERC20 tokens handled by the Safe.
|
|
230
230
|
*
|
|
@@ -316,4 +316,3 @@ declare class SafeApiKit {
|
|
|
316
316
|
confirmSafeOperation(safeOperationHash: string, signature: string): Promise<void>;
|
|
317
317
|
}
|
|
318
318
|
export default SafeApiKit;
|
|
319
|
-
//# sourceMappingURL=SafeApiKit.d.ts.map
|