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/notification/Readme.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Each notification channel will have a specified data format, which is defined by
10
10
11
11
The following example illustrates how you might implement this for a channel called `my_channel` and notification data containing two fields: `sender` and `amount`.
12
12
13
-
```rust
13
+
```ignore
14
14
use cosmwasm_std::{Api, StdError, StdResult};
15
15
use secret_toolkit::notification::{EncoderExt, CBL_ARRAY_SHORT, CBL_BIGNUM_U64, CBL_U8, Notification, DirectChannel, GroupChannel};
16
16
use serde::{Deserialize, Serialize};
@@ -48,7 +48,7 @@ To send a notification to a recipient you first create a new `Notification` stru
48
48
49
49
The following code snippet creates a notification for the above `my_channel` and adds it to the contract `Response` as a plaintext attribute.
0 commit comments