@sign-global/tokentable-core 1.7.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/constants/chain-config.ts +1 -1
- package/src/constants/network.ts +2 -2
package/package.json
CHANGED
|
@@ -82,7 +82,7 @@ export const ChainConfig = {
|
|
|
82
82
|
rpcUrl: mevmDevNet.rpcUrls.default.http[0]
|
|
83
83
|
},
|
|
84
84
|
[signBrBTestnet.id]: {
|
|
85
|
-
contractAddress: '
|
|
85
|
+
contractAddress: '0xeD09c23677D02f4f486E55f0f081cfc114EEa53b', // add default fee
|
|
86
86
|
rpcUrl: signBrBTestnet.rpcUrls.default.http[0]
|
|
87
87
|
},
|
|
88
88
|
[CHAIN.TESTNET]: {
|
package/src/constants/network.ts
CHANGED
|
@@ -131,7 +131,7 @@ export const solanaMainNet = {
|
|
|
131
131
|
};
|
|
132
132
|
|
|
133
133
|
export const signBrBTestnet = /*#__PURE__*/ defineChain({
|
|
134
|
-
id:
|
|
134
|
+
id: 74460002,
|
|
135
135
|
name: 'Sign Brb Testnet',
|
|
136
136
|
network: 'Sign Brb Testnet',
|
|
137
137
|
nativeCurrency: {
|
|
@@ -146,7 +146,7 @@ export const signBrBTestnet = /*#__PURE__*/ defineChain({
|
|
|
146
146
|
blockExplorers: {
|
|
147
147
|
default: {
|
|
148
148
|
name: 'Sign Brb Testnet Explorer',
|
|
149
|
-
url: '
|
|
149
|
+
url: 'https://explorer-testnet.bk.sign.global/'
|
|
150
150
|
}
|
|
151
151
|
},
|
|
152
152
|
testnet: true
|