Skip to content

Commit dfd8229

Browse files
joe-pPatrickDinh
andauthored
feat!: MultisigAccount and LogicSig with signer interfaces (#465)
* feat: MultisigAccount without secret keys * docs: generate docs * feat: msig in tranasct * docs: generate docs * chore: AddressWithSigner -> AddressWithTransactionSigner * feat: LogicSignature * docs: generate docs * test: simple signer test * chore: generateSigners -> generateAddressWithSigners * chore: fix circular dep * feat: mxBytesSigner * docs: generate docs * chore: LogicSig -> LogicSigAccount * feat: remove SDK lsig, msig, and signing functions * chore: rm funciton name in docstring * chore: fix typo in delegateMultisig * chore: update createMultisigTransaction docstring * chore: expand AddressWithSigners * chore: update docstring Co-authored-by: Hoang Dinh <[email protected]> * docs: generate docs --------- Co-authored-by: Hoang Dinh <[email protected]>
1 parent 160cafc commit dfd8229

File tree

58 files changed

+1076
-1853
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1076
-1853
lines changed

docs/code/classes/testing.TestLogger.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Logger.debug
133133

134134
#### Defined in
135135

136-
[src/testing/test-logger.ts:90](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L90)
136+
[src/testing/test-logger.ts:81](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L81)
137137

138138
___
139139

@@ -158,7 +158,7 @@ Logger.error
158158

159159
#### Defined in
160160

161-
[src/testing/test-logger.ts:74](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L74)
161+
[src/testing/test-logger.ts:65](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L65)
162162

163163
___
164164

@@ -219,7 +219,7 @@ Logger.info
219219

220220
#### Defined in
221221

222-
[src/testing/test-logger.ts:82](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L82)
222+
[src/testing/test-logger.ts:73](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L73)
223223

224224
___
225225

@@ -244,7 +244,7 @@ Logger.verbose
244244

245245
#### Defined in
246246

247-
[src/testing/test-logger.ts:86](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L86)
247+
[src/testing/test-logger.ts:77](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L77)
248248

249249
___
250250

@@ -269,4 +269,4 @@ Logger.warn
269269

270270
#### Defined in
271271

272-
[src/testing/test-logger.ts:78](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L78)
272+
[src/testing/test-logger.ts:69](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/testing/test-logger.ts#L69)

docs/code/classes/types_account.MultisigAccount.md

Lines changed: 0 additions & 186 deletions
This file was deleted.

docs/code/classes/types_account.SigningAccount.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Account wrapper that supports a rekeyed account
4848

4949
#### Defined in
5050

51-
[src/types/account.ts:118](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L118)
51+
[src/types/account.ts:56](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L56)
5252

5353
## Properties
5454

@@ -58,7 +58,7 @@ Account wrapper that supports a rekeyed account
5858

5959
#### Defined in
6060

61-
[src/types/account.ts:83](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L83)
61+
[src/types/account.ts:21](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L21)
6262

6363
___
6464

@@ -68,7 +68,7 @@ ___
6868

6969
#### Defined in
7070

71-
[src/types/account.ts:85](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L85)
71+
[src/types/account.ts:23](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L23)
7272

7373
___
7474

@@ -78,7 +78,7 @@ ___
7878

7979
#### Defined in
8080

81-
[src/types/account.ts:84](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L84)
81+
[src/types/account.ts:22](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L22)
8282

8383
## Accessors
8484

@@ -98,7 +98,7 @@ Account.addr
9898

9999
#### Defined in
100100

101-
[src/types/account.ts:90](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L90)
101+
[src/types/account.ts:28](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L28)
102102

103103
___
104104

@@ -114,7 +114,7 @@ Algorand account of the sender address and signer private key
114114

115115
#### Defined in
116116

117-
[src/types/account.ts:111](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L111)
117+
[src/types/account.ts:49](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L49)
118118

119119
___
120120

@@ -130,7 +130,7 @@ Transaction signer for the underlying signing account
130130

131131
#### Defined in
132132

133-
[src/types/account.ts:104](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L104)
133+
[src/types/account.ts:42](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L42)
134134

135135
___
136136

@@ -150,4 +150,4 @@ Account.sk
150150

151151
#### Defined in
152152

153-
[src/types/account.ts:97](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L97)
153+
[src/types/account.ts:35](https://github.com/algorandfoundation/algokit-utils-ts/blob/main/src/types/account.ts#L35)

0 commit comments

Comments
 (0)