@superfluid-finance/sdk-core 0.3.2-dev.2a94183.0 → 0.3.2-dev.5907354.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/README.md +4 -4
  2. package/dist/index.umd.js +182 -186
  3. package/dist/main/Framework.d.ts.map +1 -1
  4. package/dist/main/Framework.js +1 -3
  5. package/dist/main/Framework.js.map +1 -1
  6. package/dist/main/SuperToken.d.ts.map +1 -1
  7. package/dist/main/SuperToken.js +1 -3
  8. package/dist/main/SuperToken.js.map +1 -1
  9. package/dist/main/abi/ERC20WithTokenInfo.json +3 -3
  10. package/dist/main/typechain/ERC20WithTokenInfo.d.ts +10 -10
  11. package/dist/main/typechain/ERC20WithTokenInfo.d.ts.map +1 -1
  12. package/dist/main/typechain/TestToken.d.ts +18 -18
  13. package/dist/main/typechain/TestToken.d.ts.map +1 -1
  14. package/dist/main/typechain/factories/ERC20WithTokenInfo__factory.js +3 -3
  15. package/dist/main/typechain/factories/ERC20WithTokenInfo__factory.js.map +1 -1
  16. package/dist/main/typechain/factories/TestToken__factory.js +17 -17
  17. package/dist/main/typechain/factories/TestToken__factory.js.map +1 -1
  18. package/dist/module/Framework.d.ts.map +1 -1
  19. package/dist/module/Framework.js +1 -3
  20. package/dist/module/Framework.js.map +1 -1
  21. package/dist/module/SuperToken.d.ts.map +1 -1
  22. package/dist/module/SuperToken.js +1 -3
  23. package/dist/module/SuperToken.js.map +1 -1
  24. package/dist/module/abi/ERC20WithTokenInfo.json +3 -3
  25. package/dist/module/typechain/ERC20WithTokenInfo.d.ts +10 -10
  26. package/dist/module/typechain/ERC20WithTokenInfo.d.ts.map +1 -1
  27. package/dist/module/typechain/TestToken.d.ts +18 -18
  28. package/dist/module/typechain/TestToken.d.ts.map +1 -1
  29. package/dist/module/typechain/factories/ERC20WithTokenInfo__factory.js +3 -3
  30. package/dist/module/typechain/factories/ERC20WithTokenInfo__factory.js.map +1 -1
  31. package/dist/module/typechain/factories/TestToken__factory.js +17 -17
  32. package/dist/module/typechain/factories/TestToken__factory.js.map +1 -1
  33. package/package.json +7 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <h1 align="center">sdk-core</h1>
2
2
  <div align="center">
3
- <img width="300" padding="0 0 10px" alt="Superfluid logo" src="/sf-logo.png" />
3
+ <img width="300" padding="0 0 10px" alt="Superfluid logo" src="./sf-logo.png" />
4
4
  <p>
5
5
  <a href="https://www.npmjs.com/package/@superfluid-finance/sdk-core" target="_blank">
6
6
  <img alt="Version" src="https://img.shields.io/npm/v/@superfluid-finance/sdk-core.svg">
@@ -718,18 +718,18 @@ await usdcx.totalSupply({
718
718
 
719
719
  // Write operations
720
720
  usdcx.approve({
721
- recipient: string,
721
+ receiver: string,
722
722
  amount: string
723
723
  });
724
724
 
725
725
  usdcx.transfer({
726
- recipient: string,
726
+ receiver: string,
727
727
  amount: string
728
728
  });
729
729
 
730
730
  usdcx.transferFrom({
731
731
  sender: string,
732
- recipient: string,
732
+ receiver: string,
733
733
  amount: string
734
734
  });
735
735