We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 154883f + 89fa74e commit 865534bCopy full SHA for 865534b
modules/sdk-core/src/bitgo/wallet/BuildParams.ts
@@ -3,6 +3,11 @@
3
import * as t from 'io-ts';
4
import { getCodecProperties } from '../utils/codecProps';
5
6
+export const Bip322Message = t.type({
7
+ message: t.string,
8
+ address: t.string,
9
+});
10
+
11
export const BuildParamsUTXO = t.partial({
12
/* deprecated. the change address type */
13
addressType: t.unknown,
@@ -30,6 +35,7 @@ export const BuildParamsUTXO = t.partial({
30
35
/* rbf */
31
36
rbfTxIds: t.array(t.string),
32
37
isReplaceableByFee: t.boolean,
38
+ messages: t.array(Bip322Message),
33
39
});
34
40
41
export const BuildParamsStacks = t.partial({
0 commit comments