1.0.23 • Published 5 years ago

niftygateway v1.0.23

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

NiftyGateway is our Javascript package that allows you to integrate the Nifty Gateway wallet into your NFT project or game.

Check out our documentation for a full guide on how to use NiftyGatewayJS.

Get started with:

npm i niftygateway

Then, initialize a Nifty Gateway object with a dev key you get from Nifty Gateway

You must also specify the network, rinkeby or main:

var nftg = new NiftyGatewayJS('rinkeby','yourDevKeyHere');

From there, you can use the Nifty Gateway object to call functions, such as getUserWalletAndEmailAddress(), which will ask a user if they are ok sharing their information with you, and then tell you their wallet and email address if they are:

nftg.getWalletAndEmailAddress().then(res => {
    //this function returns a promise which will resolve to a data object
    if (res.didSucceed == true) {
        console.log(res); //now a you can access the wallet of a user
     }
 });

Examples

Check out sample guides on our Medium Page

The 'niftygateway_examples' directory has implemetation of the functions from NiftyGatewayJS in React.

1.0.23

5 years ago

1.0.22

5 years ago

1.0.21

5 years ago

1.0.20

5 years ago

1.0.19

5 years ago

1.0.18

5 years ago

1.0.17

5 years ago

1.0.16

5 years ago

1.0.15

5 years ago

1.0.14

5 years ago

1.0.13

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago