Skip to content

Commit

Permalink
adding XNSE0000001 IFSC
Browse files Browse the repository at this point in the history
  • Loading branch information
PriyankaMarbill committed Aug 20, 2024
1 parent 13c637d commit ad53019
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Name for STCB changed from "State Bank of Mauritius" to "SBM Bank"
- Temporary code added for "Sri Rama Co-operative Bank": `SXXX`
- Support for ICLL (Indian Clearing Corporation) added. `ICLL0000001` is the branch.
- Support for XNSE (NSE Clearing Limited) added. `XNSE0000001` is the branch.

## [1.5.9][1.5.9]
### Added
Expand Down
1 change: 1 addition & 0 deletions src/banknames.json
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@
"ICHX": "Ichalkaranji Merchants Co-operative Bank",
"ICIC": "ICICI Bank",
"ICLL": "Indian Clearing Corporation",
"XNSE": "NSE Clearing Limited",
"ICMX": "Indore Cloth Market Co-operative Bank",
"IDFB": "IDFC FIRST Bank",
"IDIB": "Indian Bank",
Expand Down
1 change: 1 addition & 0 deletions src/node/bank.js
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,7 @@ module.exports = Object.freeze({
ICHX: 'ICHX',
ICIC: 'ICIC',
ICLL: 'ICLL',
XNSE: 'XNSE',
ICMX: 'ICMX',
IDFB: 'IDFB',
IDIB: 'IDIB',
Expand Down
26 changes: 26 additions & 0 deletions src/patches/ifsc/xnse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
# RTGS is open to non-banking institutions as wel
# but they do not show up on the list of enabled bank branches
# that RBI provides
# Links:
# - https://www.rbi.org.in/Scripts/Bs_viewRTGS.aspx
# - https://rbidocs.rbi.org.in/rdocs/RTGS/PDFs/RTGEB101014.PDF
# - https://rbidocs.rbi.org.in/rdocs/rtgs/pdfs/lps15022012.pdf
action: add_multiple
ifsc:
XNSE0000001:
ADDRESS: EXCHANGE PLAZA,PLOT NO C/1, G BLOCK,BANDRA-KURLA COMPLEX,BANDRA (E), MUMBAI 400051
BRANCH: Mumbai
BANK: NSE Clearing Limited
CENTRE: Mumbai
CITY: MUMBAI
CONTACT: null
DISTRICT: Mumbai
IMPS: false
MICR: null
NEFT: false
RTGS: true
STATE: MAHARASHTRA
ISO3166: IN-MH
SWIFT: null
UPI: false
1 change: 1 addition & 0 deletions src/php/Bank.php
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,7 @@ class Bank
const ICHX = 'ICHX';
const ICIC = 'ICIC';
const ICLL = 'ICLL';
const XNSE = 'XNSE';
const ICMX = 'ICMX';
const IDFB = 'IDFB';
const IDIB = 'IDIB';
Expand Down
1 change: 1 addition & 0 deletions src/ruby/bank.rb
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@ module Bank
ICHX = :ICHX
ICIC = :ICIC
ICLL = :ICLL
XNSE = :XNSE
ICMX = :ICMX
IDFB = :IDFB
IDIB = :IDIB
Expand Down

0 comments on commit ad53019

Please sign in to comment.