Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@onflow/sdk-account

Package Overview
Dependencies
Maintainers
8
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@onflow/sdk-account - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

4

CHANGELOG.md

@@ -5,2 +5,6 @@ ### Unreleased

### 0.0.3 -- 2020-11-17
- 2020-11-17 -- VSN @onflow/sdk-send 0.0.2 -> 0.0.5
### 0.0.2 -- 2020-10-28

@@ -7,0 +11,0 @@

2

dist/sdk-account.js

@@ -1,2 +0,2 @@

var e=require("@onflow/sdk-build-get-account"),o=require("@onflow/sdk-decode"),n=require("@onflow/sdk-send");exports.account=function(d){return n.send([e.getAccount(d)]).then(o.decode)};
var e=require("@onflow/sdk-build-get-account"),o=require("@onflow/sdk-decode"),n=require("@onflow/sdk-send");exports.account=function(d,r){return n.send([e.getAccount(d)],r).then(o.decode)};
//# sourceMappingURL=sdk-account.js.map

@@ -1,2 +0,2 @@

import{getAccount as o}from"@onflow/sdk-build-get-account";import{decode as n}from"@onflow/sdk-decode";import{send as r}from"@onflow/sdk-send";function t(t){return r([o(t)]).then(n)}export{t as account};
import{getAccount as o}from"@onflow/sdk-build-get-account";import{decode as n}from"@onflow/sdk-decode";import{send as r}from"@onflow/sdk-send";function t(t,d){return r([o(t)],d).then(n)}export{t as account};
//# sourceMappingURL=sdk-account.modern.js.map

@@ -1,2 +0,2 @@

import{getAccount as o}from"@onflow/sdk-build-get-account";import{decode as n}from"@onflow/sdk-decode";import{send as r}from"@onflow/sdk-send";function t(t){return r([o(t)]).then(n)}export{t as account};
import{getAccount as o}from"@onflow/sdk-build-get-account";import{decode as n}from"@onflow/sdk-decode";import{send as r}from"@onflow/sdk-send";function t(t,d){return r([o(t)],d).then(n)}export{t as account};
//# sourceMappingURL=sdk-account.module.js.map

@@ -1,2 +0,2 @@

!function(e,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports,require("@onflow/sdk-build-get-account"),require("@onflow/sdk-decode"),require("@onflow/sdk-send")):"function"==typeof define&&define.amd?define(["exports","@onflow/sdk-build-get-account","@onflow/sdk-decode","@onflow/sdk-send"],o):o((e=e||self).sdkAccount={},e.sdkBuildGetAccount,e.sdkDecode,e.sdkSend)}(this,function(e,o,d,n){e.account=function(e){return n.send([o.getAccount(e)]).then(d.decode)}});
!function(e,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports,require("@onflow/sdk-build-get-account"),require("@onflow/sdk-decode"),require("@onflow/sdk-send")):"function"==typeof define&&define.amd?define(["exports","@onflow/sdk-build-get-account","@onflow/sdk-decode","@onflow/sdk-send"],o):o((e=e||self).sdkAccount={},e.sdkBuildGetAccount,e.sdkDecode,e.sdkSend)}(this,function(e,o,d,n){e.account=function(e,t){return n.send([o.getAccount(e)],t).then(d.decode)}});
//# sourceMappingURL=sdk-account.umd.js.map
{
"name": "@onflow/sdk-account",
"version": "0.0.2",
"version": "0.0.3",
"description": "Flow JS SDK -- Fetch Account details from Configured Access Node",

@@ -30,3 +30,3 @@ "license": "Apache-2.0",

"scripts": {
"prepublishOnly": "npm test && npm run build",
"prepublishOnly": "npm install && npm test && npm run build",
"test": "jest",

@@ -40,4 +40,4 @@ "build": "microbundle",

"@onflow/sdk-decode": "0.0.1",
"@onflow/sdk-send": "0.0.2"
"@onflow/sdk-send": "0.0.5"
}
}

@@ -5,4 +5,4 @@ import {getAccount} from "@onflow/sdk-build-get-account"

export function account (address) {
return send([getAccount(address)]).then(decode)
export function account(address, opts) {
return send([getAccount(address)], opts).then(decode)
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc