From 727caf167ddc955222083d4e420222275944ddbf Mon Sep 17 00:00:00 2001 From: Samyak Jain <34437877+KaymasJain@users.noreply.github.com> Date: Wed, 15 Apr 2020 21:22:15 +1000 Subject: [PATCH] basic updates --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e7a8858..68a2014 100644 --- a/README.md +++ b/README.md @@ -180,13 +180,13 @@ Add the series of transactions details in the instance. spells.add({ connector: "basic", // name method: "deposit", // method - args: [dsa.token.usdc.address, 1000000, 0, 1] // method arguments + args: [dsa.tokens.info.usdc.address, 1000000, 0, 1] // method arguments }); spells.add({ connector: "basic", method: "withdraw", - args: [dsa.token.usdc.address, 0, "0x03d70891b8994feB6ccA7022B25c32be92ee3725", 1, 0] + args: [dsa.tokens.info.usdc.address, 0, "0x03d70891b8994feB6ccA7022B25c32be92ee3725", 1, 0] }); ```