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.
1 parent ef1956f commit d2d96f7Copy full SHA for d2d96f7
docs/.vitepress/config.ts
@@ -36,7 +36,7 @@ function nav(): DefaultTheme.NavItem[] {
36
items: [
37
{
38
text: "Fleet SDK",
39
- link: "https://github.com/fleet-sdk/fleet/blob/master/CONTRIBUTING.md",
+ link: "https://github.com/fleet-sdk/fleet/blob/master/CONTRIBUTING.md"
40
},
41
42
text: "Documentation",
docs/wallet-interaction.md
@@ -222,7 +222,7 @@ const unsignedTransaction = new TransactionBuilder(creationHeight)
222
.sendChangeTo(changeAddress)
223
.payMinFee()
224
.build()
225
- .toPlainObject();
+ .toEIP12Object();
226
227
const signedTransaction = await ergo.sign_tx(unsignedTransaction); // [!code focus]
228
```
0 commit comments