-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
# Conflicts: # dist/near-api-js.js # dist/near-api-js.min.js # lib/browser-index.js # lib/index.js # lib/providers/json-rpc-provider.js # lib/providers/provider.js # lib/utils/index.js # lib/utils/rpc_errors.js # lib/utils/serialize.js
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: 'bug' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. MacOS] | ||
- Version [e.g. 22] | ||
|
||
|
||
**Additional context** | ||
Add any other context about the problem here. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: 'enchancement' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,2 @@ | ||
'use strict'; | ||
|
||
import * as providers from './providers'; | ||
import * as utils from './utils'; | ||
import * as keyStores from './key_stores/browser-index'; | ||
import * as transactions from './transaction'; | ||
|
||
import { Account } from './account'; | ||
import * as accountCreator from './account_creator'; | ||
import { Connection } from './connection'; | ||
import { Signer, InMemorySigner } from './signer'; | ||
import { Contract } from './contract'; | ||
import { KeyPair } from './utils/key_pair'; | ||
import { connect } from './near'; | ||
|
||
// TODO: Deprecate and remove WalletAccount | ||
import { WalletAccount, WalletConnection } from './wallet-account'; | ||
|
||
export { | ||
accountCreator, | ||
keyStores, | ||
providers, | ||
utils, | ||
transactions, | ||
|
||
Account, | ||
Connection, | ||
Contract, | ||
InMemorySigner, | ||
Signer, | ||
KeyPair, | ||
|
||
connect, | ||
|
||
WalletAccount, | ||
WalletConnection | ||
}; | ||
export * as keyStores from './key_stores/browser-index'; | ||
export * from './common-index'; |