Skip to content

Commit

Permalink
Merge pull request #403 from criadoperez/fix/criadoperez
Browse files Browse the repository at this point in the history
fix: messages
  • Loading branch information
nitinmittal23 committed Jul 13, 2023
2 parents ed0f1de + ce17597 commit b77cd6d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -46,7 +46,7 @@ Write your code inside file `test/debug.js` and run below code
npm run debug
```

Above command will build the source code & install the builded version into test folder, which will be used by `debug.js`.
Above command will build the source code & install the built version into test folder, which will be used by `debug.js`.

**Lint**

Expand Down
1 change: 1 addition & 0 deletions examples/README.md
Expand Up @@ -13,6 +13,7 @@ You need to configure your environment variables now. Copy `.env.example` and re

There are some prefilled data in `config.js` but feel free to change anything as per your needs.


**Note:** - Be careful with your private key, Use a key you are comfortable with for development purposes. And try not to make it public by doing actions such as committing to repo or referencing on any online site.

### 2. Install package
Expand Down
2 changes: 1 addition & 1 deletion src/pos/erc1155.ts
Expand Up @@ -333,7 +333,7 @@ export class ERC1155 extends POSToken {
}

/**
* transfer the required amount of a token to anothe user
* transfer the required amount of a token to another user
*
* @param {POSERC1155TransferParam} param
* @param {ITransactionOption} [option]
Expand Down
2 changes: 1 addition & 1 deletion src/pos/erc721.ts
Expand Up @@ -328,7 +328,7 @@ export class ERC721 extends POSToken {
}

/**
* tranfer to another user
* transfer to another user
*
* @param {string} tokenId
* @param {string} from
Expand Down
2 changes: 1 addition & 1 deletion webpack/webpack.base.config.js
Expand Up @@ -9,7 +9,7 @@ let mode = process.env.NODE_ENV
const isProd = mode === 'production'
exports.isProd = isProd;

console.log('build runing for mode', mode);
console.log('build running for mode', mode);
exports.default = {
mode,
devtool: 'source-map',
Expand Down

0 comments on commit b77cd6d

Please sign in to comment.