Merge pull request #2113 from XRPLF/readd_create_amm_tutorial

Tutorial: Create an Automated Market Maker
This commit is contained in:
Rome Reginelli
2023-09-12 15:46:57 -07:00
committed by GitHub
31 changed files with 855 additions and 38 deletions

View File

@@ -11,7 +11,7 @@ async function main() {
// ... custom code goes here
// Disconnect when done (If you omit this, Node.js won't end the process)
client.disconnect()
await client.disconnect()
}
main()

View File

@@ -32,7 +32,7 @@ async function main() {
})
// Disconnect when done so Node.js can end the process
client.disconnect()
await client.disconnect()
}
// call the async function

View File

@@ -1,5 +1,5 @@
{
"dependencies": {
"xrpl": "^2.0.0"
"xrpl": "^2.11.0"
}
}