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
Copy file name to clipboardExpand all lines: packages/signer/context-module/README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,16 @@ const contextModule = new ContextModuleBuilder({
74
74
.build();
75
75
```
76
76
77
+
You can set a source identifier that will be included in blind signing reports. This helps distinguish which integration triggered a blind signing event. The default value is `"third-party"`.
78
+
79
+
```ts
80
+
const contextModule =newContextModuleBuilder({
81
+
originToken: "origin-token", // replace with your origin token
82
+
})
83
+
.setAppSource("my-app-name")
84
+
.build();
85
+
```
86
+
77
87
It is also possible to instantiate the context module without the default loaders.
0 commit comments