You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SDK allows you to pass a signer instance during initialization. This is useful if you want to avoid passing the signer for every call. The signer should implement the necessary methods for signing transactions.
66
+
The SDK allows you to pass a signer instance after the initialization. This is useful if you want to avoid passing the signer for every call. The signer should implement the necessary methods for signing transactions.
69
67
70
68
To use signer provided by the SDK, you can initialize it as follows:
In case you want to use your own signer, you can implement the `Signer` interface and pass it to the SDK. Example implementation can be found [here](./packages/sdk/src/modules/core/EthersSigner.ts).
78
+
In case you want to use your own signer, you can implement the `Signer` interface and pass it to the SDK. Example implementation can be found [here](./packages/sdk/src/modules/signer/EthersSigner.ts).
82
79
83
80
#### Logger
84
81
@@ -130,9 +127,9 @@ The Pool module enables operations related to liquidity pools
0 commit comments